如何在OpenCV中查找和绘制图像的外线?

时间:2019-05-14 09:42:33

标签: android image opencv counter

enter image description here

当我处理图像(之前)时,如图像中所给,然后我需要它的外边界并在openCV android中绘制红色线条(如图像后),

如果有人知道,请告诉我 先进的坦克。

1 个答案:

答案 0 :(得分:0)

这是cv::findContours的经典应用。

documentation中提供了一个工作示例。

对于您的特定情况,您可以这样做:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>

int main(int argc, char** argv)
{
    using namespace cv;
    using namespace std;

    Mat3b image;
    image = imread(argv[1], 1);  
    imshow ("Before", image);

    Mat1b gray;
    cvtColor(image, gray, CV_BGR2GRAY);
    threshold(gray, gray, 250, 255, THRESH_BINARY);
    medianBlur(gray,gray, 3);
    gray = 255-gray;

    vector<vector<Point> > contours;
    vector<Vec4i> hierarchy;
    findContours(gray, contours, hierarchy, RETR_EXTERNAL , CHAIN_APPROX_NONE);

    Scalar color = Scalar( 0, 0, 255 );
    for (size_t i = 0; i < contours.size(); i++) {
        drawContours(image, contours, i, color, 2, 8, hierarchy, 0, Point());
    }     
    imshow("After", image);
    return 0;
}

将为您提供以下输出: Example output