1 | initial version |
StereoMatcher is the (abstract) base class to StereoBM or StereoSGBM. please use one of the latter, not the former
2 | No.2 Revision |
StereoMatcher is the (abstract) base class to StereoBM or StereoSGBM. please use one of the latter, not the former
(also, please never call anything map
using c++, since there's already a container class with the same name in namespace std)
3 | No.3 Revision |
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 map
using c++, since there's already a container class with the same name in namespace std)