【问题标题】:opencv: how to merge near contours to get the one big outest contour?opencv:如何合并附近的轮廓以获得最大的外轮廓?
【发布时间】:2022-01-10 07:12:04
【问题描述】:

我正在尝试将孩子的绘画数字化为 SVG 或透明 png 文件格式,以便它们可以在 Scratch 中使用。应将白纸替换为透明背景,并保留所有绘图部分。

我的计划是获取图纸的外轮廓并生成蒙版,然后使用蒙版获取没有纸张背景的图纸部分。

问题是绘图可能不连续,这意味着可能有一些小孔导致整个绘图轮廓断裂成许多小轮廓。

现在我想连接最近的外轮廓以形成一个大的外轮廓用于遮罩。

附上原图及处理结果。

代码:

from __future__ import print_function
import cv2 as cv
import numpy as np
import argparse
import random as rng
rng.seed(12345)
def thresh_callback(val):
    threshold = val
    # Detect edges using Canny
    canny_output = cv.Canny(src_gray, threshold, threshold * 2)
    # Find contours
    contours, hierarchy = cv.findContours(canny_output, cv.RETR_EXTERNAL, cv.CHAIN_APPROX_SIMPLE)
    # Draw contours
    drawing = np.zeros((canny_output.shape[0], canny_output.shape[1], 3), dtype=np.uint8)
    for i in range(len(contours)):
        color = (rng.randint(0,256), rng.randint(0,256), rng.randint(0,256))
        cv.drawContours(drawing, contours, i, color, 2, cv.LINE_8, hierarchy, 0)
    # Show in a window
    cv.imshow('Contours', drawing)
# Load source image
parser = argparse.ArgumentParser(description='Code for Finding contours in your image tutorial.')
parser.add_argument('--input', help='Path to input image.', default='IMG_4446.jpg')
args = parser.parse_args()
src = cv.imread(cv.samples.findFile(args.input))
if src is None:
    print('Could not open or find the image:', args.input)
    exit(0)
# Convert image to gray and blur it
src_gray = cv.cvtColor(src, cv.COLOR_BGR2GRAY)
src_gray = cv.blur(src_gray, (3,3))
# Create Window
source_window = 'Source'
cv.namedWindow(source_window)
cv.imshow(source_window, src)
max_thresh = 255
thresh = 100 # initial threshold
cv.createTrackbar('Canny Thresh:', source_window, thresh, max_thresh, thresh_callback)
thresh_callback(thresh)
cv.waitKey()

【问题讨论】:

    标签: python opencv image-processing


    【解决方案1】:
    import cv2, numpy as np
    
    # Read Image
    img = cv2.imread('/home/stephen/Desktop/test_img.png')
    img  =cv2.resize(img, (750,1000))
    

    # Find the gray image
    gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) # Gray
    gray = cv2.blur(gray, (2,2))
    cv2.imwrite('/home/stephen/Desktop/gray.png',gray)
    

    # Find the canny image
    canny = cv2.Canny(gray, 30, 150) # Canny
    
    # Find contours
    contours, _ = cv2.findContours(canny,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
    
    # Draw contours on canny (this connects the contours)
    cv2.drawContours(canny, contours, -1, 255, 6)
    cv2.imwrite('/home/stephen/Desktop/contours.png',canny)
    

    # Get mask for floodfill
    h, w = canny.shape[:2]
    mask = np.zeros((h+2, w+2), np.uint8)
    

    # Floodfill from point (0, 0)
    cv2.floodFill(canny, mask, (0,0), 123)
    cv2.imwrite('/home/stephen/Desktop/floodfill.png',canny)
    

    # Exclude everying but the floodfill region
    canny = cv2.inRange(canny, 122, 124)
    cv2.imwrite('/home/stephen/Desktop/inrange.png',canny)
    

    【讨论】:

    • 非常好的解决方案!
    • 酷,聪明的解决方案!
    • 我想知道 (h+2, w+2) 中 +2 的目的是什么? @斯蒂芬-梅施克
    • @BinChen 如果原图上的一条线延伸到图片边缘,会阻塞floodfill操作。
    猜你喜欢
    • 1970-01-01
    • 2011-11-27
    • 1970-01-01
    • 2020-06-14
    • 1970-01-01
    • 1970-01-01
    • 2021-09-07
    • 1970-01-01
    • 2020-09-14
    相关资源
    最近更新 更多