Repository for OpenCV's extra modules
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jan Beich
4e10bc5dae
stereo: unbreak with clang 7
modules/stereo/src/descriptor.cpp:229:34: error: ordered comparison between pointer and zero ('const int *' and 'int')
CV_Assert(image.size > 0);
~~~~~~~~~~ ^ ~
modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
#define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
^~~~~~~~~~~
modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
#define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
^~~~
modules/stereo/src/descriptor.cpp:230:33: error: ordered comparison between pointer and zero ('const int *' and 'int')
CV_Assert(cost.size > 0);
~~~~~~~~~ ^ ~
modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
#define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
^~~~~~~~~~~
modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
#define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
^~~~
|
7 years ago |
.. |
include/opencv2
|
stereo: apply CV_OVERRIDE/CV_FINAL
|
7 years ago |
perf
|
tests: refactor test files
|
7 years ago |
samples
|
modify sample by adding the checks in the parse function
|
10 years ago |
src
|
stereo: unbreak with clang 7
|
7 years ago |
test
|
tests: refactor test files
|
7 years ago |
testdata
|
added the SGBM and asserts in bm
|
10 years ago |
CMakeLists.txt
|
Reduced modules dependencies:
|
8 years ago |
README.md
|
Update README.md
|
9 years ago |
Stereo Correspondence with different descriptors
Stereo matching done with different descriptors: Census / CS-Census / MCT / BRIEF / MV.