简体   繁体   English

使用 openCV 从轮廓构建嵌套掩码

[英]Building nested mask from contours with openCV

I'd like to build a nested mask (mask with holes) from contours that I've drawn.我想从我绘制的轮廓构建一个嵌套的蒙版(带孔的蒙版)。

The input contour image is attached to this message - called contours.png -, and here is the code I used to build my nested mask.输入轮廓图像附加到此消息 - 称为轮廓.png -,这是我用来构建嵌套掩码的代码。

import cv2
import numpy as np
import matplotlib.pyplot as plt

test_im = cv2.imread("contours.png")
im_gray = cv2.cvtColor(test_im, cv2.COLOR_RGB2GRAY)

# find contours and hierarchy with OpenCV 
cnts, hierachy = cv2.findContours(im_gray, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
cnts = np.array(cnts)

mask = np.zeros_like(test_im)

# draw nested mask from contours using cv2.fillPoly
for i, cnt in enumerate(cnts):

    # look for external contours
    if hierachy[0][i][3] == -1:
        cnt = cnt.reshape((cnt.shape[0], 2))
        # fill the external contour entirely
        cv2.fillPoly(mask, [cnt], 255)

        # look for grandchild contours to fill them with zeros (and have a nested mask as output)
        child_ix = hierachy[0][i][2]
        same_level_ix = hierachy[0][child_ix][0]

        # for an akward reason, the extrenal contour has two child contours
        # (should get only one in my understanding)
        if same_level_ix == -1:
            grandchild_ix = hierachy[0][child_ix][2]
        else:
            child_ix = hierachy[0][child_ix][2]
            grandchild_ix = hierachy[0][same_level_ix][2]

        if grandchild_ix != -1:
            cnt = cnts[grandchild_ix]
            cnt = cnt.reshape((cnt.shape[0], 2))
            cv2.fillPoly(mask, [cnt], 0)
            same_level_ix = hierachy[0][grandchild_ix][0]

            while same_level_ix != -1:
                cnt = cnts[same_level_ix]
                cnt = cnt.reshape((cnt.shape[0], 2))
                cv2.fillPoly(mask, [cnt], 0)
                same_level_ix = hierachy[0][same_level_ix][0]

Even if it works on this example, my code doesn't seem really robust.即使它适用于这个例子,我的代码看起来也不是很健壮。 Additionaly, I found that the external contour has two child contours which is weird to me: should get only one in my understanding.另外,我发现外部轮廓有两个子轮廓,这对我来说很奇怪:在我的理解中应该只有一个。

Do you have any better solution ?你有更好的解决方案吗?

Thanks for your help, have a nice day !感谢您的帮助,祝您有美好的一天!

contours.png轮廓.png

desired_output期望输出

Based on the hierarchy settings, you can get the result by making 2 mask, and subtracting them.根据层级设置,您可以通过制作 2 个蒙版并减去它们来获得结果。 First mask is done by filling the outermost contour, and the second mask is done by filling the innermost contours:第一个掩码是通过填充最外面的轮廓来完成的,第二个掩码是通过填充最里面的轮廓来完成的:

在此处输入图片说明

Here is the necessary setting for extracting contours and filling them (the code in c++ but the settings are equivalent with python):这是提取轮廓并填充它们的必要设置(c++中的代码,但设置与python等效):

Mat img__1, img__2,img__ = imread("E:/img.jpg", 0);

threshold(img__, img__1, 0, 255, THRESH_BINARY);

vector<vector<Point>> contours;
vector< Vec4i > hierarchy;

findContours(img__1, contours, hierarchy, RETR_TREE, CHAIN_APPROX_NONE);

Mat tmp = Mat::zeros(img__1.size(), CV_8U);
Mat tmp2 = Mat::zeros(img__1.size(), CV_8U);

for (size_t i = 0; i < contours.size(); i++)
    if (hierarchy[i][3]<0)
        drawContours(tmp, contours, i, Scalar(255, 255, 255), -1); # first mask

for (size_t i = 0; i < contours.size(); i++)
    if (hierarchy[i][2]<0 && hierarchy[i][3]>-1)
        drawContours(tmp2, contours, i, Scalar(255, 255, 255), -1); # second mask

imshow("img", img__1);
imshow("first_mask", tmp);
imshow("second_mask", tmp2);

tmp = tmp - tmp2;  # subtracting the two masks to remove the holes

imshow("final image", tmp);
waitKey(0);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM