【发布时间】:2013-07-02 22:32:50
【问题描述】:
我想用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'
是什么原因?
【问题讨论】:
标签: android c++ opencv android-ndk feature-detection