trying to fix strange compiler bug

This commit is contained in:
Vadim Pisarevsky 2014-10-16 23:10:00 +04:00
parent 61cddd8b63
commit 48a860a335

View File

@ -23,7 +23,7 @@ public:
extractor_ = cv::ORB::create();
// 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();