1 | initial version |
First you must use last doc : your link becomes https://docs.opencv.org/master/d3/d14/tutorial_ximgproc_disparity_filtering.html. Why ? because in last documentation C++ and python function are given when you click on a link wls_filter = createDisparityWLSFilter(left_matcher);
If your opencv version is not 3.4 you should update it.
2 | No.2 Revision |
First you must use last doc : your link becomes https://docs.opencv.org/master/d3/d14/tutorial_ximgproc_disparity_filtering.html. Why ? because in last documentation C++ and python function are given when you click on a link
wls_filter = createDisparityWLSFilter(left_matcher);If your opencv version is not 3.4 you should update it.
3 | No.3 Revision |
First you must use last doc : your link becomes https://docs.opencv.org/master/d3/d14/tutorial_ximgproc_disparity_filtering.html. Why ? because in last documentation C++ and python function are given when you click on a link :
wls_filter = createDisparityWLSFilter(left_matcher);
you will get :
createDisparityWLSFilter() Ptr<disparitywlsfilter> cv::ximgproc::createDisparityWLSFilter ( Ptr< StereoMatcher > matcher_left )
Python: retval = cv.ximgproc.createDisparityWLSFilter( matcher_left )
If your opencv version is not 3.4 you should update it.
4 | No.4 Revision |
First you must use last doc : your link becomes https://docs.opencv.org/master/d3/d14/tutorial_ximgproc_disparity_filtering.html. Why ? because in last documentation C++ and python function are given when you click on a link :
wls_filter = createDisparityWLSFilter(left_matcher);
you will get :
createDisparityWLSFilter()
Ptr<disparitywlsfilter>
cv::ximgproc::createDisparityWLSFilter
( Ptr< StereoMatcher >
matcher_left )
Python:
retval = cv.ximgproc.createDisparityWLSFilter( matcher_left )
If your opencv version is not 3.4 you should update it.