下面的代码只是为了查看 SIFT 中的特征检测。问题是当我运行它时它会中断。
#include <features2d.hpp>
#include <stdafx.h>
#include <stdlib.h>
#include <cv.hpp>
#include <cxcore.hpp>
#include <highgui.h>
#include <iostream>
using namespace cv;
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
Mat img = imread("c:\\chappal.jpg", 0);
Ptr<FeatureDetector> feature_detector = FeatureDetector::create("SIFT");
vector<KeyPoint> keypoints;
feature_detector->detect(img, keypoints);
Mat output;
drawKeypoints(img, keypoints, output, Scalar(255, 0, 0));
namedWindow("meh", CV_WINDOW_AUTOSIZE);
imshow("meh", output);
waitKey(0);
return 0;
}
当逐步调试时,程序在这一行中断:feature_detector->detect(img, keypoints);
我一遍又一遍地检查它,不知道问题可能是由什么引起的。
PS我第一次尝试SiftFeatureDetector
代替但出现错误,因为它在库文件中FeatureDetector::create("SIFT");
找不到。SiftFeatureDetector
我从这个论坛上的帖子中了解了这两个代码示例。
谢谢