霍夫莱恩不工作

HoughLine Not working

本文关键字:工作      更新时间:2023-10-16

我正在尝试使用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 时间的废话,另外 1/2 它只是停止工作。

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

[解决方案]

见下文,谢谢三木

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

请确保在调试模式下使用opencv_<module><version>d(带有尾随 d)库,并在不带尾随 d 的发布模式下使用。

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