OpenCV  3.0.0-dev
Open Source Computer Vision
Public Member Functions | Static Public Member Functions | Friends | List of all members
cv::dnn::DictValue Struct Reference

This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64. More...

#include "dict.hpp"

Public Member Functions

 DictValue (const DictValue &r)
 
 DictValue (int p=0)
 Constructs integer scalar. More...
 
 DictValue (unsigned p)
 Constructs integer scalar. More...
 
 DictValue (double p)
 Constructs floating point scalar. More...
 
 DictValue (const String &p)
 Constructs string scalar. More...
 
 ~DictValue ()
 
template<typename T >
get (int idx=-1) const
 Tries to convert array element with specified index to requested type and returns its. More...
 
bool isInt () const
 
bool isReal () const
 
bool isString () const
 
DictValueoperator= (const DictValue &r)
 
int size () const
 

Static Public Member Functions

template<typename TypeIter >
static DictValue arrayInt (TypeIter begin, int size)
 Constructs integer array. More...
 
template<typename TypeIter >
static DictValue arrayReal (TypeIter begin, int size)
 Constructs floating point array. More...
 
template<typename TypeIter >
static DictValue arrayString (TypeIter begin, int size)
 Constructs array of strings. More...
 

Friends

std::ostream & operator<< (std::ostream &stream, const DictValue &dictv)
 

Detailed Description

This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64.

Todo:
Maybe int64 is useless because double type exactly stores at least 2^52 integers.

Constructor & Destructor Documentation

cv::dnn::DictValue::DictValue ( const DictValue r)
cv::dnn::DictValue::DictValue ( int  p = 0)
inline

Constructs integer scalar.

cv::dnn::DictValue::DictValue ( unsigned  p)
inline

Constructs integer scalar.

cv::dnn::DictValue::DictValue ( double  p)
inline

Constructs floating point scalar.

cv::dnn::DictValue::DictValue ( const String p)
inline

Constructs string scalar.

cv::dnn::DictValue::~DictValue ( )

Member Function Documentation

template<typename TypeIter >
static DictValue cv::dnn::DictValue::arrayInt ( TypeIter  begin,
int  size 
)
static

Constructs integer array.

template<typename TypeIter >
static DictValue cv::dnn::DictValue::arrayReal ( TypeIter  begin,
int  size 
)
static

Constructs floating point array.

template<typename TypeIter >
static DictValue cv::dnn::DictValue::arrayString ( TypeIter  begin,
int  size 
)
static

Constructs array of strings.

template<typename T >
T cv::dnn::DictValue::get ( int  idx = -1) const

Tries to convert array element with specified index to requested type and returns its.

bool cv::dnn::DictValue::isInt ( ) const
bool cv::dnn::DictValue::isReal ( ) const
bool cv::dnn::DictValue::isString ( ) const
DictValue& cv::dnn::DictValue::operator= ( const DictValue r)
int cv::dnn::DictValue::size ( ) const

Friends And Related Function Documentation

std::ostream& operator<< ( std::ostream &  stream,
const DictValue dictv 
)
friend

Member Data Documentation

void* cv::dnn::DictValue::p
AutoBuffer<double, 1>* cv::dnn::DictValue::pd
AutoBuffer<int64, 1>* cv::dnn::DictValue::pi
AutoBuffer<String, 1>* cv::dnn::DictValue::ps

The documentation for this struct was generated from the following file: