You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
author = {Spangenberg, Robert and Langner, Tobias and Rojas, Ra{\'u}l},
3
+
title = {Weighted Semi-Global Matching and Center-Symmetric Census Transform for Robust Driver Assistance},
4
+
booktitle = {Computer Analysis of Images and Patterns},
5
+
year = {2013},
6
+
pages = {34--41},
7
+
publisher = {Springer Berlin Heidelberg},
8
+
abstract = {Automotive applications based on stereo vision require robust and fast matching algorithms, which makes semi-global matching (SGM) a popular method in this field. Typically the Census transform is used as a cost function, since it is advantageous for outdoor scenes. We propose an extension based on center-symmetric local binary patterns, which allows better efficiency and higher matching quality. Our second contribution exploits knowledge about the three-dimensional structure of the scene to selectively enforce the smoothness constraints of SGM. It is shown that information about surface normals can be easily integrated by weighing the paths according to the gradient of the disparity. The different approaches are evaluated on the KITTI benchmark, which provides real imagery with LIDAR ground truth. The results indicate improved performance compared to state-of-the-art SGM based algorithms.},
@param minDisparity Minimum possible disparity value. Normally, it is zero but sometimes rectification algorithms can shift images, so this parameter needs to be adjusted accordingly.
280
+
@param numDisparities Maximum disparity minus minimum disparity. The value must be 64, 128 or 256.
281
+
@param P1 The first parameter controlling the disparity smoothness.This parameter is used for the case of slanted surfaces (not fronto parallel).
282
+
@param P2 The second parameter controlling the disparity smoothness.This parameter is used for "solving" the depth discontinuities problem.
283
+
@param uniquenessRatio Margin in percentage by which the best (minimum) computed cost function
284
+
value should "win" the second best value to consider the found match correct. Normally, a value
285
+
within the 5-15 range is good enough.
286
+
@param mode Set it to StereoSGM::MODE_HH to run the full-scale two-pass dynamic programming algorithm.
287
+
It will consume O(W\*H\*numDisparities) bytes. By default, it is set to StereoSGM::MODE_HH4.
288
+
*/
289
+
CV_EXPORTS_W Ptr<cuda::StereoSGM> createStereoSGM(int minDisparity = 0, int numDisparities = 128, int P1 = 10, int P2 = 120, int uniquenessRatio = 5, int mode = cv::cuda::StereoSGM::MODE_HH4);
0 commit comments