我一直在尝试从在线资源中进行SIFT / SURF,并想自己进行测试。

我首先尝试使用以下代码在没有非自由库的情况下:

int _tmain(int argc, _TCHAR* argv[])
{
Mat img = imread("c:\\car.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);处中断

然后,我尝试使用非自由库并尝试了以下代码:
int main(int argc, char** argv)
{
    const Mat input = cv::imread("/tmp/image.jpg", 0); //Load as grayscale

    SiftFeatureDetector detector;
    vector<KeyPoint> keypoints;
    detector.detect(input, keypoints);

    // Add results to image and save.
    Mat output;
    drawKeypoints(input, keypoints, output);
    imwrite("/tmp/SIFT_RESULT.jpg", output);

    return 0;

 }

再次编译没有错误,但运行时在此步骤中断:detector.detect(input, keypoints);
我找不到原因。有人可以帮我一下吗。

谢谢

编辑:这是我得到的错误,当它打破:





最佳答案

使用彩色图像而不是灰度图像,它对我有用。
如果彩色图像也不起作用,也可以尝试跳过“const”。

const Mat input = cv::imread("/tmp/image.jpg");

09-19 05:58