Searched defs:DictValue (Results 1 – 2 of 2) sorted by relevance
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/ |
| H A D | dict.hpp | 60 struct CV_EXPORTS_W DictValue struct 63 …DictValue(bool i) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = i ? 1 : 0… in DictValue() argument 64 …DictValue(int64 i = 0) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = i; } … in DictValue() argument 65 …CV_WRAP DictValue(int i) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = i; } … in DictValue() argument 66 …DictValue(unsigned p) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = p; } … in DictValue() function 67 …CV_WRAP DictValue(double p) : type(Param::REAL), pd(new AutoBuffer<double,1>) { (*pd)[0] =… in DictValue() function 68 …CV_WRAP DictValue(const String &s) : type(Param::STRING), ps(new AutoBuffer<String,1>) { (*ps)[0]… in DictValue() function 69 …DictValue(const char *s) : type(Param::STRING), ps(new AutoBuffer<String,1>) { (*ps)[0]… in DictValue() argument 99 int type; 102 { [all …]
|
| H A D | dnn.inl.hpp | 239 inline DictValue::DictValue(const DictValue &r) in DictValue() function in cv::dnn::DictValue
|