gpt4 book ai didi

opencv - SiftFeatureDetector .detect函数损坏?

转载 作者:行者123 更新时间:2023-12-02 16:30:45 26 4
gpt4 key购买 nike

我一直在尝试从在线资源中进行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);
我找不到原因。有人可以帮我一下吗。

谢谢

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

Unhandled exception at 0x007f0900 in SIFT.exe: 0xC0000005: Access violation reading location 0x00000000.





My setup: Microsoft Visual C++ 2010, OpenCV 2.4.2, Windows XP. All libraries added and linked

最佳答案

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

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

关于opencv - SiftFeatureDetector .detect函数损坏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13162074/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com