123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #ifndef __OPENCV_DNN_DNN_DICT_HPP__
- #define __OPENCV_DNN_DNN_DICT_HPP__
- #include <opencv2/core.hpp>
- #include <map>
- #include <ostream>
- namespace cv
- {
- namespace dnn
- {
- struct DictValue
- {
- DictValue(const DictValue &r);
- DictValue(int p = 0) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = p; }
- DictValue(unsigned p) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = p; }
- DictValue(double p) : type(Param::REAL), pd(new AutoBuffer<double,1>) { (*pd)[0] = p; }
- DictValue(const String &p) : type(Param::STRING), ps(new AutoBuffer<String,1>) { (*ps)[0] = p; }
- template<typename TypeIter>
- static DictValue arrayInt(TypeIter begin, int size);
- template<typename TypeIter>
- static DictValue arrayReal(TypeIter begin, int size);
- template<typename TypeIter>
- static DictValue arrayString(TypeIter begin, int size);
- template<typename T>
- T get(int idx = -1) const;
- int size() const;
- bool isInt() const;
- bool isString() const;
- bool isReal() const;
- DictValue &operator=(const DictValue &r);
- friend std::ostream &operator<<(std::ostream &stream, const DictValue &dictv);
- ~DictValue();
- private:
- int type;
- union
- {
- AutoBuffer<int64, 1> *pi;
- AutoBuffer<double, 1> *pd;
- AutoBuffer<String, 1> *ps;
- void *p;
- };
- DictValue(int _type, void *_p) : type(_type), p(_p) {}
- void release();
- };
- class CV_EXPORTS Dict
- {
- typedef std::map<String, DictValue> _Dict;
- _Dict dict;
- public:
-
- bool has(const String &key);
-
- DictValue *ptr(const String &key);
-
- const DictValue &get(const String &key) const;
-
- template <typename T>
- T get(const String &key) const;
-
- template <typename T>
- T get(const String &key, const T &defaultValue) const;
-
- template<typename T>
- const T &set(const String &key, const T &value);
- friend std::ostream &operator<<(std::ostream &stream, const Dict &dict);
- };
- }
- }
- #endif
|