从图像检索轮廓时,每个 Blob 应获得2个轮廓-一个内部轮廓和一个外部轮廓。考虑下面的圆-由于圆是像素宽度大于1的线,因此您应该能够在图像中找到两个轮廓-一个从圆的内部开始,一个从外部开始。

使用OpenCV,我想检索INNER轮廓。但是,当我使用findContours()时,似乎只在获取外部轮廓。如何使用OpenCV检索 Blob 的内部轮廓?

我使用的是C++ API,而不是C,因此仅建议使用C++ API的函数。 (即findContours()而不是cvFindContours())

谢谢。

最佳答案

我在您的图像上运行了此代码,它返回了内部和外部轮廓。

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

int main(int argc, const char * argv[]) {

    cv::Mat image= cv::imread("../../so8449378.jpg");
    if (!image.data) {
        std::cout << "Image file not found\n";
        return 1;
    }

    //Prepare the image for findContours
    cv::cvtColor(image, image, CV_BGR2GRAY);
    cv::threshold(image, image, 128, 255, CV_THRESH_BINARY);

    //Find the contours. Use the contourOutput Mat so the original image doesn't get overwritten
    std::vector<std::vector<cv::Point> > contours;
    cv::Mat contourOutput = image.clone();
    cv::findContours( contourOutput, contours, CV_RETR_LIST, CV_CHAIN_APPROX_NONE );

    //Draw the contours
    cv::Mat contourImage(image.size(), CV_8UC3, cv::Scalar(0,0,0));
    cv::Scalar colors[3];
    colors[0] = cv::Scalar(255, 0, 0);
    colors[1] = cv::Scalar(0, 255, 0);
    colors[2] = cv::Scalar(0, 0, 255);
    for (size_t idx = 0; idx < contours.size(); idx++) {
        cv::drawContours(contourImage, contours, idx, colors[idx % 3]);
    }

    cv::imshow("Input Image", image);
    cvMoveWindow("Input Image", 0, 0);
    cv::imshow("Contours", contourImage);
    cvMoveWindow("Contours", 200, 0);
    cv::waitKey(0);

    return 0;
}

它是找到的轮廓:

关于c++ - 在OpenCV中寻找轮廓?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8449378/

10-13 09:52