Commit 0d1fd8de authored by MMp131316's avatar MMp131316 Committed by Muresan Mircea Paul

Update README.md

made some extra changes to the modules so I receive no warnings

moved the opencv2/core/private.hpp from stereo_binary_sgbm.cpp to precomp.hpp
parent 3ac150bc
Stereo Correspondence with different descriptors Stereo Correspondence with different descriptors
================================================ ================================================
\ No newline at end of file
...@@ -121,3 +121,4 @@ void cvValidateDisparity( CvArr* _disp, const CvArr* _cost, int minDisparity, ...@@ -121,3 +121,4 @@ void cvValidateDisparity( CvArr* _disp, const CvArr* _cost, int minDisparity,
cv::Mat disp = cv::cvarrToMat(_disp), cost = cv::cvarrToMat(_cost); cv::Mat disp = cv::cvarrToMat(_disp), cost = cv::cvarrToMat(_cost);
cv::validateDisparity( disp, cost, minDisparity, numberOfDisparities, disp12MaxDiff ); cv::validateDisparity( disp, cost, minDisparity, numberOfDisparities, disp12MaxDiff );
} }
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
#include "opencv2/imgproc.hpp" #include "opencv2/imgproc.hpp"
#include "opencv2/features2d.hpp" #include "opencv2/features2d.hpp"
#include "opencv2/core/utility.hpp" #include "opencv2/core/utility.hpp"
#include "opencv2/core/private.hpp"
#include "opencv2/core.hpp" #include "opencv2/core.hpp"
#include "opencv2/highgui.hpp" #include "opencv2/highgui.hpp"
...@@ -53,3 +54,4 @@ ...@@ -53,3 +54,4 @@
#include <cmath> #include <cmath>
#endif #endif
...@@ -734,3 +734,4 @@ namespace cv ...@@ -734,3 +734,4 @@ namespace cv
} }
/* End of file. */ /* End of file. */
...@@ -51,7 +51,6 @@ ...@@ -51,7 +51,6 @@
*/ */
#include "precomp.hpp" #include "precomp.hpp"
#include "opencv2\core\private.hpp"
#include <limits.h> #include <limits.h>
namespace cv namespace cv
...@@ -1201,3 +1200,4 @@ void cv::validateDisparity( InputOutputArray _disp, InputArray _cost, int minDis ...@@ -1201,3 +1200,4 @@ void cv::validateDisparity( InputOutputArray _disp, InputArray _cost, int minDis
} }
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment