Opencv findcontours CV_RETR_EXTERNAL 不工作

Opencv findcontours CV_RETR_EXTERNAL not working

我有这张图片:

编辑 抱歉,我不得不删除图片!

我需要提取非黑图的轮廓,所以我用了带CV_RETR_EXTERNAL参数的findcontour,但是我得到的是:

代码如下:

static Mat canny_output, grey,draw;
        vector<vector<Point>> contours;
        cvtColor(final_img, grey, CV_BGR2GRAY);
        Canny(grey, canny_output, 100, 200);
        findContours(canny_output, contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE);

        draw = Mat::zeros(canny_output.size(), CV_8UC3);


        for (size_t i = 0; i < contours.size(); i++)
        {
            drawContours(draw, contours, i, Scalar(255, 0, 0));

        }

我该如何解决?

只需添加具有最小阈值的二值化,并删除 Canny:

cvtColor(final_img, grey, CV_BGR2GRAY);
//Threshold=1: very low value, anyway the rest of the image is pure black
threshold(grey, binary, 1, 255, CV_THRESH_BINARY);
findContours(binary, contours, CV_RETR_EXTERNAL, CV_CHAIN_APPROX_SIMPLE);