trying to fix strange compiler bug

This commit is contained in:
Vadim Pisarevsky 2014-10-16 23:10:00 +04:00
parent 9c9ecc22e2
commit d36b546df8

View File

@ -23,7 +23,7 @@ public:
extractor_ = cv::ORB::create(); extractor_ = cv::ORB::create();
// BruteFroce matcher with Norm Hamming is the default matcher // BruteFroce matcher with Norm Hamming is the default matcher
matcher_ = cv::makePtr<cv::BFMatcher>(cv::NORM_HAMMING, false); matcher_ = cv::makePtr<cv::BFMatcher>((int)cv::NORM_HAMMING, false);
} }
virtual ~RobustMatcher(); virtual ~RobustMatcher();