stereo.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  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) 2000-2008, Intel Corporation, all rights reserved.
  14. // Copyright (C) 2009, Willow Garage Inc., all rights reserved.
  15. // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
  16. // Third party copyrights are property of their respective owners.
  17. //
  18. // Redistribution and use in source and binary forms, with or without modification,
  19. // are permitted provided that the following conditions are met:
  20. //
  21. // * Redistribution's of source code must retain the above copyright notice,
  22. // this list of conditions and the following disclaimer.
  23. //
  24. // * Redistribution's in binary form must reproduce the above copyright notice,
  25. // this list of conditions and the following disclaimer in the documentation
  26. // and/or other materials provided with the distribution.
  27. //
  28. // * The name of the copyright holders may not be used to endorse or promote products
  29. // derived from this software without specific prior written permission.
  30. //
  31. // This software is provided by the copyright holders and contributors "as is" and
  32. // any express or implied warranties, including, but not limited to, the implied
  33. // warranties of merchantability and fitness for a particular purpose are disclaimed.
  34. // In no event shall the Intel Corporation or contributors be liable for any direct,
  35. // indirect, incidental, special, exemplary, or consequential damages
  36. // (including, but not limited to, procurement of substitute goods or services;
  37. // loss of use, data, or profits; or business interruption) however caused
  38. // and on any theory of liability, whether in contract, strict liability,
  39. // or tort (including negligence or otherwise) arising in any way out of
  40. // the use of this software, even if advised of the possibility of such damage.
  41. //
  42. //M*/
  43. #ifndef __OPENCV_STEREO_HPP__
  44. #define __OPENCV_STEREO_HPP__
  45. #include "opencv2/core.hpp"
  46. #include "opencv2/features2d.hpp"
  47. #include "opencv2/core/affine.hpp"
  48. #include "opencv2/stereo/descriptor.hpp"
  49. #include "opencv2/stereo/matching.hpp"
  50. /**
  51. @defgroup stereo Stereo Correspondance Algorithms
  52. */
  53. namespace cv
  54. {
  55. namespace stereo
  56. {
  57. //! @addtogroup stereo
  58. //! @{
  59. // void correctMatches( InputArray F, InputArray points1, InputArray points2,
  60. // OutputArray newPoints1, OutputArray newPoints2 );
  61. /** @brief Filters off small noise blobs (speckles) in the disparity map
  62. @param img The input 16-bit signed disparity image
  63. @param newVal The disparity value used to paint-off the speckles
  64. @param maxSpeckleSize The maximum speckle size to consider it a speckle. Larger blobs are not
  65. affected by the algorithm
  66. @param maxDiff Maximum difference between neighbor disparity pixels to put them into the same
  67. blob. Note that since StereoBM, StereoSGBM and may be other algorithms return a fixed-point
  68. disparity map, where disparity values are multiplied by 16, this scale factor should be taken into
  69. account when specifying this parameter value.
  70. @param buf The optional temporary buffer to avoid memory allocation within the function.
  71. */
  72. /** @brief The base class for stereo correspondence algorithms.
  73. */
  74. class StereoMatcher : public Algorithm
  75. {
  76. public:
  77. enum { DISP_SHIFT = 4,
  78. DISP_SCALE = (1 << DISP_SHIFT)
  79. };
  80. /** @brief Computes disparity map for the specified stereo pair
  81. @param left Left 8-bit single-channel image.
  82. @param right Right image of the same size and the same type as the left one.
  83. @param disparity Output disparity map. It has the same size as the input images. Some algorithms,
  84. like StereoBM or StereoSGBM compute 16-bit fixed-point disparity map (where each disparity value
  85. has 4 fractional bits), whereas other algorithms output 32-bit floating-point disparity map.
  86. */
  87. virtual void compute( InputArray left, InputArray right,
  88. OutputArray disparity ) = 0;
  89. virtual int getMinDisparity() const = 0;
  90. virtual void setMinDisparity(int minDisparity) = 0;
  91. virtual int getNumDisparities() const = 0;
  92. virtual void setNumDisparities(int numDisparities) = 0;
  93. virtual int getBlockSize() const = 0;
  94. virtual void setBlockSize(int blockSize) = 0;
  95. virtual int getSpeckleWindowSize() const = 0;
  96. virtual void setSpeckleWindowSize(int speckleWindowSize) = 0;
  97. virtual int getSpeckleRange() const = 0;
  98. virtual void setSpeckleRange(int speckleRange) = 0;
  99. virtual int getDisp12MaxDiff() const = 0;
  100. virtual void setDisp12MaxDiff(int disp12MaxDiff) = 0;
  101. };
  102. //!speckle removal algorithms. These algorithms have the purpose of removing small regions
  103. enum {
  104. CV_SPECKLE_REMOVAL_ALGORITHM, CV_SPECKLE_REMOVAL_AVG_ALGORITHM
  105. };
  106. //!subpixel interpolationm methods for disparities.
  107. enum{
  108. CV_QUADRATIC_INTERPOLATION, CV_SIMETRICV_INTERPOLATION
  109. };
  110. /** @brief Class for computing stereo correspondence using the block matching algorithm, introduced and
  111. contributed to OpenCV by K. Konolige.
  112. */
  113. class StereoBinaryBM : public StereoMatcher
  114. {
  115. public:
  116. enum { PREFILTER_NORMALIZED_RESPONSE = 0,
  117. PREFILTER_XSOBEL = 1
  118. };
  119. virtual int getPreFilterType() const = 0;
  120. virtual void setPreFilterType(int preFilterType) = 0;
  121. virtual int getPreFilterSize() const = 0;
  122. virtual void setPreFilterSize(int preFilterSize) = 0;
  123. virtual int getPreFilterCap() const = 0;
  124. virtual void setPreFilterCap(int preFilterCap) = 0;
  125. virtual int getTextureThreshold() const = 0;
  126. virtual void setTextureThreshold(int textureThreshold) = 0;
  127. virtual int getUniquenessRatio() const = 0;
  128. virtual void setUniquenessRatio(int uniquenessRatio) = 0;
  129. virtual int getSmallerBlockSize() const = 0;
  130. virtual void setSmallerBlockSize(int blockSize) = 0;
  131. virtual int getScalleFactor() const = 0 ;
  132. virtual void setScalleFactor(int factor) = 0;
  133. virtual int getSpekleRemovalTechnique() const = 0 ;
  134. virtual void setSpekleRemovalTechnique(int factor) = 0;
  135. virtual bool getUsePrefilter() const = 0 ;
  136. virtual void setUsePrefilter(bool factor) = 0;
  137. virtual int getBinaryKernelType() const = 0;
  138. virtual void setBinaryKernelType(int value) = 0;
  139. virtual int getAgregationWindowSize() const = 0;
  140. virtual void setAgregationWindowSize(int value) = 0;
  141. /** @brief Creates StereoBM object
  142. @param numDisparities the disparity search range. For each pixel algorithm will find the best
  143. disparity from 0 (default minimum disparity) to numDisparities. The search range can then be
  144. shifted by changing the minimum disparity.
  145. @param blockSize the linear size of the blocks compared by the algorithm. The size should be odd
  146. (as the block is centered at the current pixel). Larger block size implies smoother, though less
  147. accurate disparity map. Smaller block size gives more detailed disparity map, but there is higher
  148. chance for algorithm to find a wrong correspondence.
  149. The function create StereoBM object. You can then call StereoBM::compute() to compute disparity for
  150. a specific stereo pair.
  151. */
  152. CV_EXPORTS static Ptr< cv::stereo::StereoBinaryBM > create(int numDisparities = 0, int blockSize = 9);
  153. };
  154. /** @brief The class implements the modified H. Hirschmuller algorithm @cite HH08 that differs from the original
  155. one as follows:
  156. - By default, the algorithm is single-pass, which means that you consider only 5 directions
  157. instead of 8. Set mode=StereoSGBM::MODE_HH in createStereoSGBM to run the full variant of the
  158. algorithm but beware that it may consume a lot of memory.
  159. - The algorithm matches blocks, not individual pixels. Though, setting blockSize=1 reduces the
  160. blocks to single pixels.
  161. - Mutual information cost function is not implemented. Instead, a simpler Birchfield-Tomasi
  162. sub-pixel metric from @cite BT98 is used. Though, the color images are supported as well.
  163. - Some pre- and post- processing steps from K. Konolige algorithm StereoBM are included, for
  164. example: pre-filtering (StereoBM::PREFILTER_XSOBEL type) and post-filtering (uniqueness
  165. check, quadratic interpolation and speckle filtering).
  166. @note
  167. - (Python) An example illustrating the use of the StereoSGBM matching algorithm can be found
  168. at opencv_source_code/samples/python2/stereo_match.py
  169. */
  170. class StereoBinarySGBM : public StereoMatcher
  171. {
  172. public:
  173. enum
  174. {
  175. MODE_SGBM = 0,
  176. MODE_HH = 1
  177. };
  178. virtual int getPreFilterCap() const = 0;
  179. virtual void setPreFilterCap(int preFilterCap) = 0;
  180. virtual int getUniquenessRatio() const = 0;
  181. virtual void setUniquenessRatio(int uniquenessRatio) = 0;
  182. virtual int getP1() const = 0;
  183. virtual void setP1(int P1) = 0;
  184. virtual int getP2() const = 0;
  185. virtual void setP2(int P2) = 0;
  186. virtual int getMode() const = 0;
  187. virtual void setMode(int mode) = 0;
  188. virtual int getSpekleRemovalTechnique() const = 0 ;
  189. virtual void setSpekleRemovalTechnique(int factor) = 0;
  190. virtual int getBinaryKernelType() const = 0;
  191. virtual void setBinaryKernelType(int value) = 0;
  192. virtual int getSubPixelInterpolationMethod() const = 0;
  193. virtual void setSubPixelInterpolationMethod(int value) = 0;
  194. /** @brief Creates StereoSGBM object
  195. @param minDisparity Minimum possible disparity value. Normally, it is zero but sometimes
  196. rectification algorithms can shift images, so this parameter needs to be adjusted accordingly.
  197. @param numDisparities Maximum disparity minus minimum disparity. The value is always greater than
  198. zero. In the current implementation, this parameter must be divisible by 16.
  199. @param blockSize Matched block size. It must be an odd number \>=1 . Normally, it should be
  200. somewhere in the 3..11 range.
  201. @param P1 The first parameter controlling the disparity smoothness.This parameter is used for the case of slanted surfaces (not fronto parallel).
  202. @param P2 The second parameter controlling the disparity smoothness.This parameter is used for "solving" the depth discontinuities problem.
  203. The larger the values are, the smoother the disparity is. P1 is the penalty on the disparity change by plus or minus 1
  204. between neighbor pixels. P2 is the penalty on the disparity change by more than 1 between neighbor
  205. pixels. The algorithm requires P2 \> P1 . See stereo_match.cpp sample where some reasonably good
  206. P1 and P2 values are shown (like 8\*number_of_image_channels\*SADWindowSize\*SADWindowSize and
  207. 32\*number_of_image_channels\*SADWindowSize\*SADWindowSize , respectively).
  208. @param disp12MaxDiff Maximum allowed difference (in integer pixel units) in the left-right
  209. disparity check. Set it to a non-positive value to disable the check.
  210. @param preFilterCap Truncation value for the prefiltered image pixels. The algorithm first
  211. computes x-derivative at each pixel and clips its value by [-preFilterCap, preFilterCap] interval.
  212. The result values are passed to the Birchfield-Tomasi pixel cost function.
  213. @param uniquenessRatio Margin in percentage by which the best (minimum) computed cost function
  214. value should "win" the second best value to consider the found match correct. Normally, a value
  215. within the 5-15 range is good enough.
  216. @param speckleWindowSize Maximum size of smooth disparity regions to consider their noise speckles
  217. and invalidate. Set it to 0 to disable speckle filtering. Otherwise, set it somewhere in the
  218. 50-200 range.
  219. @param speckleRange Maximum disparity variation within each connected component. If you do speckle
  220. filtering, set the parameter to a positive value, it will be implicitly multiplied by 16.
  221. Normally, 1 or 2 is good enough.
  222. @param mode Set it to StereoSGBM::MODE_HH to run the full-scale two-pass dynamic programming
  223. algorithm. It will consume O(W\*H\*numDisparities) bytes, which is large for 640x480 stereo and
  224. huge for HD-size pictures. By default, it is set to false .
  225. The first constructor initializes StereoSGBM with all the default parameters. So, you only have to
  226. set StereoSGBM::numDisparities at minimum. The second constructor enables you to set each parameter
  227. to a custom value.
  228. */
  229. CV_EXPORTS static Ptr<cv::stereo::StereoBinarySGBM> create(int minDisparity, int numDisparities, int blockSize,
  230. int P1 = 100, int P2 = 1000, int disp12MaxDiff = 1,
  231. int preFilterCap = 0, int uniquenessRatio = 5,
  232. int speckleWindowSize = 400, int speckleRange = 200,
  233. int mode = StereoBinarySGBM::MODE_SGBM);
  234. };
  235. //! @}
  236. }//stereo
  237. } // cv
  238. #endif