Searched refs:DictValue (Results 1 – 3 of 3) sorted by relevance
| /OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/ |
| H A D | dnn.inl.hpp | 52 DictValue DictValue::arrayInt(TypeIter begin, int size) in arrayInt() 54 DictValue res(Param::INT, new AutoBuffer<int64, 1>(size)); in arrayInt() 61 DictValue DictValue::arrayReal(TypeIter begin, int size) in arrayReal() 63 DictValue res(Param::REAL, new AutoBuffer<double, 1>(size)); in arrayReal() 70 DictValue DictValue::arrayString(TypeIter begin, int size) in arrayString() 72 DictValue res(Param::STRING, new AutoBuffer<String, 1>(size)); in arrayString() 79 inline DictValue DictValue::get<DictValue>(int idx) const in get() 86 inline int64 DictValue::get<int64>(int idx) const in get() 117 inline int DictValue::get<int>(int idx) const in get() 122 inline int DictValue::getIntValue(int idx) const in getIntValue() [all …]
|
| H A D | dict.hpp | 60 struct CV_EXPORTS_W DictValue struct 62 DictValue(const DictValue &r); 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() function 65 …CV_WRAP DictValue(int i) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = i; } … in DictValue() function 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() argument 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 72 static DictValue arrayInt(TypeIter begin, int size); //!< Constructs integer array [all …]
|
| H A D | dnn.hpp | 408 typedef DictValue LayerId;
|