0

下面的代码只是为了查看 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我从这个论坛上的帖子中了解了这两个代码示例。

谢谢

4

1 回答 1

1

我不知道你有没有试过,但由于它现在在 nonfree.h 库中,你需要使用 initModule_nonfree()。这为我解决了问题。

于 2013-05-21T18:46:45.357 回答