opencvでAndroidアプリを開発したいです。私はこのC++コードを持っています
FastFeatureDetector detector(50);
detector.detect(mGr, v);
このコードは正しく機能しました。
今、別の検出器を使用したい:
OrbFeatureDetector detector;
detector.detect(mGr, v);
しかし、次のエラーが表示されます。
The type 'cv::ORB' must implement the inherited pure virtual method 'cv::FeatureDetector::detectImpl'
原因は何ですか?