dict.hpp 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*M///////////////////////////////////////////////////////////////////////////////////////
  2. //
  3. // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
  4. //
  5. // By downloading, copying, installing or using the software you agree to this license.
  6. // If you do not agree to this license, do not download, install,
  7. // copy or use the software.
  8. //
  9. //
  10. // License Agreement
  11. // For Open Source Computer Vision Library
  12. //
  13. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  14. // Third party copyrights are property of their respective owners.
  15. //
  16. // Redistribution and use in source and binary forms, with or without modification,
  17. // are permitted provided that the following conditions are met:
  18. //
  19. // * Redistribution's of source code must retain the above copyright notice,
  20. // this list of conditions and the following disclaimer.
  21. //
  22. // * Redistribution's in binary form must reproduce the above copyright notice,
  23. // this list of conditions and the following disclaimer in the documentation
  24. // and/or other materials provided with the distribution.
  25. //
  26. // * The name of the copyright holders may not be used to endorse or promote products
  27. // derived from this software without specific prior written permission.
  28. //
  29. // This software is provided by the copyright holders and contributors "as is" and
  30. // any express or implied warranties, including, but not limited to, the implied
  31. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  32. // In no event shall the Intel Corporation or contributors be liable for any direct,
  33. // indirect, incidental, special, exemplary, or consequential damages
  34. // (including, but not limited to, procurement of substitute goods or services;
  35. // loss of use, data, or profits; or business interruption) however caused
  36. // and on any theory of liability, whether in contract, strict liability,
  37. // or tort (including negligence or otherwise) arising in any way out of
  38. // the use of this software, even if advised of the possibility of such damage.
  39. //
  40. //M*/
  41. #ifndef __OPENCV_DNN_DNN_DICT_HPP__
  42. #define __OPENCV_DNN_DNN_DICT_HPP__
  43. #include <opencv2/core.hpp>
  44. #include <map>
  45. #include <ostream>
  46. namespace cv
  47. {
  48. namespace dnn
  49. {
  50. //! @addtogroup dnn
  51. //! @{
  52. /** @brief This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64.
  53. * @todo Maybe int64 is useless because double type exactly stores at least 2^52 integers.
  54. */
  55. struct DictValue
  56. {
  57. DictValue(const DictValue &r);
  58. DictValue(int p = 0) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = p; } //!< Constructs integer scalar
  59. DictValue(unsigned p) : type(Param::INT), pi(new AutoBuffer<int64,1>) { (*pi)[0] = p; } //!< Constructs integer scalar
  60. DictValue(double p) : type(Param::REAL), pd(new AutoBuffer<double,1>) { (*pd)[0] = p; } //!< Constructs floating point scalar
  61. DictValue(const String &p) : type(Param::STRING), ps(new AutoBuffer<String,1>) { (*ps)[0] = p; } //!< Constructs string scalar
  62. template<typename TypeIter>
  63. static DictValue arrayInt(TypeIter begin, int size); //!< Constructs integer array
  64. template<typename TypeIter>
  65. static DictValue arrayReal(TypeIter begin, int size); //!< Constructs floating point array
  66. template<typename TypeIter>
  67. static DictValue arrayString(TypeIter begin, int size); //!< Constructs array of strings
  68. template<typename T>
  69. T get(int idx = -1) const; //!< Tries to convert array element with specified index to requested type and returns its.
  70. int size() const;
  71. bool isInt() const;
  72. bool isString() const;
  73. bool isReal() const;
  74. DictValue &operator=(const DictValue &r);
  75. friend std::ostream &operator<<(std::ostream &stream, const DictValue &dictv);
  76. ~DictValue();
  77. private:
  78. int type;
  79. union
  80. {
  81. AutoBuffer<int64, 1> *pi;
  82. AutoBuffer<double, 1> *pd;
  83. AutoBuffer<String, 1> *ps;
  84. void *p;
  85. };
  86. DictValue(int _type, void *_p) : type(_type), p(_p) {}
  87. void release();
  88. };
  89. /** @brief This class implements name-value dictionary, values are instances of DictValue. */
  90. class CV_EXPORTS Dict
  91. {
  92. typedef std::map<String, DictValue> _Dict;
  93. _Dict dict;
  94. public:
  95. //! Checks a presence of the @p key in the dictionary.
  96. bool has(const String &key);
  97. //! If the @p key in the dictionary then returns pointer to its value, else returns NULL.
  98. DictValue *ptr(const String &key);
  99. //! If the @p key in the dictionary then returns its value, else an error will be generated.
  100. const DictValue &get(const String &key) const;
  101. /** @overload */
  102. template <typename T>
  103. T get(const String &key) const;
  104. //! If the @p key in the dictionary then returns its value, else returns @p defaultValue.
  105. template <typename T>
  106. T get(const String &key, const T &defaultValue) const;
  107. //! Sets new @p value for the @p key, or adds new key-value pair into the dictionary.
  108. template<typename T>
  109. const T &set(const String &key, const T &value);
  110. friend std::ostream &operator<<(std::ostream &stream, const Dict &dict);
  111. };
  112. //! @}
  113. }
  114. }
  115. #endif