graycodepattern.hpp 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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) 2015, 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_GRAY_CODE_PATTERN_HPP__
  42. #define __OPENCV_GRAY_CODE_PATTERN_HPP__
  43. #include "opencv2/core.hpp"
  44. namespace cv {
  45. namespace structured_light {
  46. //! @addtogroup structured_light
  47. //! @{
  48. /** @brief Class implementing the Gray-code pattern, based on @cite UNDERWORLD.
  49. *
  50. * The generation of the pattern images is performed with Gray encoding using the traditional white and black colors.
  51. *
  52. * The information about the two image axes x, y is encoded separately into two different pattern sequences.
  53. * A projector P with resolution (P_res_x, P_res_y) will result in Ncols = log 2 (P_res_x) encoded pattern images representing the columns, and
  54. * in Nrows = log 2 (P_res_y) encoded pattern images representing the rows.
  55. * For example a projector with resolution 1024x768 will result in Ncols = 10 and Nrows = 10.
  56. * However, the generated pattern sequence consists of both regular color and color-inverted images: inverted pattern images are images
  57. * with the same structure as the original but with inverted colors.
  58. * This provides an effective method for easily determining the intensity value of each pixel when it is lit (highest value) and
  59. * when it is not lit (lowest value). So for a a projector with resolution 1024x768, the number of pattern images will be Ncols * 2 + Nrows * 2 = 40.
  60. *
  61. */
  62. class CV_EXPORTS_W GrayCodePattern : public StructuredLightPattern
  63. {
  64. public:
  65. /** @brief Parameters of StructuredLightPattern constructor.
  66. * @param width Projector's width. Default value is 1024.
  67. * @param height Projector's height. Default value is 768.
  68. */
  69. struct CV_EXPORTS_W_SIMPLE Params
  70. {
  71. CV_WRAP
  72. Params();
  73. CV_PROP_RW
  74. int width;
  75. CV_PROP_RW
  76. int height;
  77. };
  78. /** @brief Constructor
  79. @param parameters GrayCodePattern parameters GrayCodePattern::Params: the width and the height of the projector.
  80. */
  81. CV_WRAP
  82. static Ptr<GrayCodePattern> create( const GrayCodePattern::Params &parameters = GrayCodePattern::Params() );
  83. /** @brief Get the number of pattern images needed for the graycode pattern.
  84. *
  85. * @return The number of pattern images needed for the graycode pattern.
  86. *
  87. */
  88. CV_WRAP
  89. virtual size_t getNumberOfPatternImages() const = 0;
  90. /** @brief Sets the value for white threshold, needed for decoding.
  91. *
  92. * White threshold is a number between 0-255 that represents the minimum brightness difference required for valid pixels, between the graycode pattern and its inverse images; used in getProjPixel method.
  93. *
  94. * @param value The desired white threshold value.
  95. *
  96. */
  97. CV_WRAP
  98. virtual void setWhiteThreshold( size_t value ) = 0;
  99. /** @brief Sets the value for black threshold, needed for decoding (shadowsmasks computation).
  100. *
  101. * Black threshold is a number between 0-255 that represents the minimum brightness difference required for valid pixels, between the fully illuminated (white) and the not illuminated images (black); used in computeShadowMasks method.
  102. *
  103. * @param value The desired black threshold value.
  104. *
  105. */
  106. CV_WRAP
  107. virtual void setBlackThreshold( size_t value ) = 0;
  108. /** @brief Generates the all-black and all-white images needed for shadowMasks computation.
  109. *
  110. * To identify shadow regions, the regions of two images where the pixels are not lit by projector's light and thus where there is not coded information,
  111. * the 3DUNDERWORLD algorithm computes a shadow mask for the two cameras views, starting from a white and a black images captured by each camera.
  112. * This method generates these two additional images to project.
  113. *
  114. * @param blackImage The generated all-black CV_8U image, at projector's resolution.
  115. * @param whiteImage The generated all-white CV_8U image, at projector's resolution.
  116. */
  117. CV_WRAP
  118. virtual void getImagesForShadowMasks( InputOutputArray blackImage, InputOutputArray whiteImage ) const = 0;
  119. /** @brief For a (x,y) pixel of a camera returns the corresponding projector pixel.
  120. *
  121. * The function decodes each pixel in the pattern images acquired by a camera into their corresponding decimal numbers representing the projector's column and row,
  122. * providing a mapping between camera's and projector's pixel.
  123. *
  124. * @param patternImages The pattern images acquired by the camera, stored in a grayscale vector < Mat >.
  125. * @param x x coordinate of the image pixel.
  126. * @param y y coordinate of the image pixel.
  127. * @param projPix Projector's pixel corresponding to the camera's pixel: projPix.x and projPix.y are the image coordinates of the projector’s pixel corresponding to the pixel being decoded in a camera.
  128. */
  129. CV_WRAP
  130. virtual bool getProjPixel( InputArrayOfArrays patternImages, int x, int y, Point &projPix ) const = 0;
  131. };
  132. //! @}
  133. }
  134. }
  135. #endif