我在OpenCV中编写了一个简单的程序,用于检测给定图像中的SURF特征,并将检测到的特征显示在namedWindow中。
#include <iostream>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\features2d\features2d.hpp>
using namespace cv;
int main(int argc,char** argv)
{
if(argc!=3)//Check cmd number of argumets
{
std::cout<<"Usage: "<<argv[0]<<" <image-file> <method>"<<std::endl;
return -1;
}
//LOAD THE SOURCE IMAGE
Mat Img = imread(argv[1],CV_LOAD_IMAGE_GRAYSCALE);
if(!Img.data)//Check correct image load
{
std::cout<<"Cannot read image file. Check file path!"<<std::endl;
return -1;
}
//COMPUTE FEATURES
SurfFeatureDetector detector;
std::vector<KeyPoint> features;
detector.detect(Img,features);
//SHOW RESULT
Mat ImgF;
drawKeypoints(Img,features,ImgF);
namedWindow("Features", CV_GUI_NORMAL);
imshow("Features",ImgF);
waitKey();
return 0;
}
一切都很好,程序会做它必须做的事情。问题是当按一个键终止程序时发生崩溃错误。
答案 0 :(得分:0)
它并没有让我崩溃......但为了让我编译你的代码,我不得不补充一下
#include <opencv2/nonfree/features2d.hpp>
因为SURF在某个时刻被移动到了nonfree模块。
所以,我不得不建议尝试最新版本(截至今天的2.4.6)。