Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

StereoMatcher is the (abstract) base class to StereoBM or StereoSGBM. please use one of the latter, not the former

StereoMatcher is the (abstract) base class to StereoBM or StereoSGBM. please use one of the latter, not the former

(also, please never call anything mapusing c++, since there's already a container class with the same name in namespace std)

StereoMatcher is the (abstract) base class to StereoBM or StereoSGBM. please use one of the latter, not the former

(also, also, you have to use cv::Ptr<>not a 'raw' pointer, like :

 Ptr< StereoBM > match = StereoBM::create();
 match->compute(...);

(then, please never call anything mapusing c++, since there's already a container class with the same name in namespace std)