blob.hpp 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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_BLOB_HPP__
  42. #define __OPENCV_DNN_DNN_BLOB_HPP__
  43. #include <opencv2/core.hpp>
  44. #include <vector>
  45. #include <ostream>
  46. namespace cv
  47. {
  48. namespace dnn
  49. {
  50. //! @addtogroup dnn
  51. //! @{
  52. /** @brief Lightweight class for storing and processing a shape of blob (or anything else). */
  53. struct BlobShape
  54. {
  55. explicit BlobShape(int ndims = 4, int fill = 1); //!< Creates n-dim shape and fill its by @p fill
  56. BlobShape(int num, int cn, int rows, int cols); //!< Creates 4-dim shape [@p num, @p cn, @p rows, @p cols]
  57. BlobShape(int ndims, const int *sizes); //!< Creates n-dim shape from the @p sizes array
  58. BlobShape(const std::vector<int> &sizes); //!< Creates n-dim shape from the @p sizes vector
  59. template<int n>
  60. BlobShape(const Vec<int, n> &shape); //!< Creates n-dim shape from @ref cv::Vec
  61. /** @brief Returns number of dimensions. */
  62. int dims() const;
  63. /** @brief Returns reference to the size of the specified @p axis.
  64. *
  65. * Negative @p axis is supported, in this case a counting starts from the last axis,
  66. * i. e. -1 corresponds to last axis.
  67. * If non-existing axis was passed then an error will be generated.
  68. */
  69. int &size(int axis);
  70. /** @brief Returns the size of the specified @p axis.
  71. * @see size()
  72. */
  73. int size(int axis) const;
  74. int operator[](int axis) const; //!< Does the same thing as size(axis).
  75. int &operator[](int axis); //!< Does the same thing as size(int) const.
  76. /** @brief Returns the size of the specified @p axis.
  77. *
  78. * Does the same thing as size(int) const, but if non-existing axis will be passed then 1 will be returned,
  79. * therefore this function always finishes successfully.
  80. */
  81. int xsize(int axis) const;
  82. /** @brief Returns the product of all sizes of axes. */
  83. ptrdiff_t total();
  84. /** @brief Returns pointer to the first element of continuous size array. */
  85. const int *ptr() const;
  86. /** @brief Checks equality of two shapes. */
  87. bool equal(const BlobShape &other) const;
  88. bool operator== (const BlobShape &r) const;
  89. private:
  90. cv::AutoBuffer<int,4> sz;
  91. };
  92. /** @brief This class provides methods for continuous n-dimensional CPU and GPU array processing.
  93. *
  94. * The class is realized as a wrapper over @ref cv::Mat and @ref cv::UMat.
  95. * It will support methods for switching and logical synchronization between CPU and GPU.
  96. */
  97. class CV_EXPORTS Blob
  98. {
  99. public:
  100. explicit Blob();
  101. /** @brief Constructs blob with specified @p shape and @p type. */
  102. explicit Blob(const BlobShape &shape, int type = CV_32F);
  103. /** @brief Constucts 4-dimensional blob (so-called batch) from image or array of images.
  104. * @param image 2-dimensional multi-channel or 3-dimensional single-channel image (or array of images)
  105. * @param dstCn specify size of second axis of ouptut blob
  106. */
  107. explicit Blob(InputArray image, int dstCn = -1);
  108. /** @brief Creates blob with specified @p shape and @p type. */
  109. void create(const BlobShape &shape, int type = CV_32F);
  110. /** @brief Creates blob from cv::Mat or cv::UMat without copying the data */
  111. void fill(InputArray in);
  112. /** @brief Creates blob from user data.
  113. * @details If @p deepCopy is false then CPU data will not be allocated.
  114. */
  115. void fill(const BlobShape &shape, int type, void *data, bool deepCopy = true);
  116. Mat& matRef(); //!< Returns reference to cv::Mat, containing blob data.
  117. const Mat& matRefConst() const; //!< Returns reference to cv::Mat, containing blob data, for read-only purposes.
  118. UMat &umatRef(); //!< Returns reference to cv::UMat, containing blob data (not implemented yet).
  119. const UMat &umatRefConst() const; //!< Returns reference to cv::UMat, containing blob data, for read-only purposes (not implemented yet).
  120. /** @brief Returns number of blob dimensions. */
  121. int dims() const;
  122. /** @brief Returns the size of the specified @p axis.
  123. *
  124. * Negative @p axis is supported, in this case a counting starts from the last axis,
  125. * i. e. -1 corresponds to last axis.
  126. * If non-existing axis was passed then an error will be generated.
  127. */
  128. int size(int axis) const;
  129. /** @brief Returns the size of the specified @p axis.
  130. *
  131. * Does the same thing as size(int) const, but if non-existing axis will be passed then 1 will be returned,
  132. * therefore this function always finishes successfully.
  133. */
  134. int xsize(int axis) const;
  135. /** @brief Computes the product of sizes of axes among the specified axes range [@p startAxis; @p endAxis).
  136. * @param startAxis the first axis to include in the range.
  137. * @param endAxis the first axis to exclude from the range.
  138. * @details Negative axis indexing can be used.
  139. */
  140. size_t total(int startAxis = 0, int endAxis = INT_MAX) const;
  141. /** @brief Converts @p axis index to canonical format (where 0 <= axis < dims()). */
  142. int canonicalAxis(int axis) const;
  143. /** @brief Returns shape of the blob. */
  144. BlobShape shape() const;
  145. /** @brief Checks equality of two blobs shapes. */
  146. bool equalShape(const Blob &other) const;
  147. /** @brief Returns slice of first two dimensions.
  148. * @details The behaviour is similar to the following numpy code: blob[n, cn, ...]
  149. */
  150. Mat getPlane(int n, int cn);
  151. /* Shape getters of 4-dimensional blobs. */
  152. int cols() const; //!< Returns size of the fourth axis blob.
  153. int rows() const; //!< Returns size of the thrid axis blob.
  154. int channels() const; //!< Returns size of the second axis blob.
  155. int num() const; //!< Returns size of the first axis blob.
  156. Size size2() const; //!< Returns cv::Size(cols(), rows())
  157. Vec4i shape4() const; //!< Returns shape of first four blob axes.
  158. /** @brief Returns linear index of the element with specified coordinates in the blob.
  159. *
  160. * If @p n < dims() then unspecified coordinates will be filled by zeros.
  161. * If @p n > dims() then extra coordinates will be ignored.
  162. */
  163. template<int n>
  164. size_t offset(const Vec<int, n> &pos) const;
  165. /** @overload */
  166. size_t offset(int n = 0, int cn = 0, int row = 0, int col = 0) const;
  167. /* CPU pointer getters */
  168. /** @brief Returns pointer to the blob element with the specified position, stored in CPU memory.
  169. *
  170. * @p n correspond to the first axis, @p cn - to the second, etc.
  171. * If dims() > 4 then unspecified coordinates will be filled by zeros.
  172. * If dims() < 4 then extra coordinates will be ignored.
  173. */
  174. uchar *ptr(int n = 0, int cn = 0, int row = 0, int col = 0);
  175. /** @overload */
  176. template<typename TFloat>
  177. TFloat *ptr(int n = 0, int cn = 0, int row = 0, int col = 0);
  178. /** @overload ptr<float>() */
  179. float *ptrf(int n = 0, int cn = 0, int row = 0, int col = 0);
  180. //TODO: add const ptr methods
  181. /** @brief Shares data from other @p blob.
  182. * @returns *this
  183. */
  184. Blob &shareFrom(const Blob &blob);
  185. /** @brief Changes shape of the blob without copying the data.
  186. * @returns *this
  187. */
  188. Blob &reshape(const BlobShape &shape);
  189. /** @brief Returns type of the blob. */
  190. int type() const;
  191. private:
  192. const int *sizes() const;
  193. Mat m;
  194. };
  195. //! @}
  196. }
  197. }
  198. #include "blob.inl.hpp"
  199. #endif