我正在尝试使用houghLines和Canny边缘检测器检测图像中的线条,但每次我得到的exe都停止工作,这真的很烦人。我正在使用最新的预编译exe和visual studio作为ide。 canny工作得很完美,但从我试图赶走的那一刻起来......问题。
使用OpenCV 3.1.0和vs。
代码:
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的废话,另外1/2它只是停止工作。
进一步调试会产生读访问冲突,我认为这些行的矢量大小太大了。
[解决方案]
见下文,thx miki
答案 0 :(得分:1)
这种错误通常是由混合调试/发布库引起的。
请务必使用调试模式opencv_<module><version>d
(带尾随 d )库,并在发布模式下使用不带尾随 d 。
从评论中可以看出,您在调试模式下链接到opencv_world310.lib
和opencv_world310d.lib
。你应该删除第一个,因为在调试模式下你应该只有调试库(尾随 d )。