gpt4 book ai didi

c++ - HoughLine 不工作

转载 作者:行者123 更新时间:2023-11-28 05:47:57 27 4
gpt4 key购买 nike

我正在尝试使用 houghLines 和 Canny 边缘检测器检测图像中的线条,但每次我获取 exe 时都停止工作,这真的很烦人。我正在使用最新的预编译 exe 和 visual studio 作为 ide。精明的工作完美,但从我尝试解决问题的那一刻起。

使用 OpenCV 3.1.0 和 vs 2015。

代码:

void detectLines(Mat image) {
Mat dest = image.clone();
Mat graydest = image.clone();

if (image.channels() == 3) {
cvtColor(image, image, CV_BGR2GRAY);
}

double threshold = 5;

Canny(image, dest, 0.4*threshold, threshold);
cvtColor(dest, graydest, COLOR_GRAY2BGR);

imshow("Display Window", dest);
waitKey(0);

vector<Vec2f> lines;

HoughLines(dest, lines,1,CV_PI / 180, 0,0);

cout << "Number of lines " << lines.size() << endl;

if (!lines.empty()) {

for (size_t i = 0; i < lines.size(); i++)
{
float rho = lines[i][0];
float theta = lines[i][1];
double a = cos(theta), b = sin(theta);
double x0 = a*rho, y0 = b*rho;

cout << rho << " " << theta << " " << a << " " << x0 << " " << endl;

Point pt1(cvRound(x0 + 1000 * (-b)),
cvRound(y0 + 1000 * (a)));
Point pt2(cvRound(x0 - 1000 * (-b)),
cvRound(y0 - 1000 * (a)));

line(graydest, pt1, pt2, Scalar(0, 0, 255), 3, 8);
}
}

imshow("source", image);
imshow("Display Window", graydest);
waitKey(0);

}

输出有 1/2 的时间实际上返回一个 vector ,另外 1/2 的时间它只是停止工作。

进一步调试会导致读取访问冲突,我认为这些行的 vector 大小太大了。

[解决方案]

见下文,thx miki

最佳答案

这种错误通常是由混合调试/发布库引起的。

一定要在Debug模式下使用opencv_<module><version>d (带有尾随 d)库,在 Release模式下没有尾随 d

从评论中可以看出,您在 Debug模式下链接到 opencv_world310.libopencv_world310d.lib .您应该删除第一个,因为在 Debug模式下您应该只有调试库(尾随 d)。

关于c++ - HoughLine 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35847424/

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