5
下面顯示的Brisk檢測器不給我任何關鍵點。有人可以提出一個問題。 我會盡力用一些代碼解釋我在做什麼。BRISK特徵檢測器檢測零關鍵點
#include "opencv2/features2d/features2d.hpp"
using namespace cv;
using namespace std;
Ptr<FeatureDetector> detector;
detector = FeatureDetector::create("BRISK");
// the filename is given some path
Mat img = imread(filename, 0);
CV_Assert(!img.empty());
vector<KeyPoint> kp;
detector->detect(img, kp);
所以,當我調試這一點,並檢查關鍵點(KP)它說:< 0項>
與類似的代碼的其他探測器一樣ORB,過篩或SURF工作如預期!
有人可以請建議一個解決方案。
我使用的OpenCV 2.4.9與Qt Creator的2.5.2
感謝