【问题标题】:Python opencv find pentagon contour on imagePython opencv在图像上找到五边形轮廓
【发布时间】:2020-06-08 15:22:03
【问题描述】:

我正在尝试从简单的附加图像中读取数字。

为此,我试图找到包含数字的五边形。但是,当我尝试使用 opencv findcontour 函数查找五边形时,它没有给出正确的值。我用那个函数尝试了各种排列。这些都不起作用。

到目前为止,我已经尝试过以下操作:

import cv2 as cv
import numpy as np

im = cv.imread(r'out.jpg')
imgray = cv.cvtColor(im, cv.COLOR_BGR2GRAY)
ret, thresh = cv.threshold(imgray, 200, 255, 0)

contours, hierarchy = cv.findContours(thresh, cv.RETR_LIST  , cv.CHAIN_APPROX_SIMPLE)

for c in contours:
    print(len(c))

输出: 1 1 1 1 1 1 1 1 38 36 1 1 85 87 128 133 55 47 4 4 7 4 4 4

这些都不是5,所以上面的点不能是五边形。

如果我犯了任何错误,你能帮我吗?

【问题讨论】:

    标签: python image opencv image-processing opencv-contour


    【解决方案1】:

    你在正确的轨道上。找到轮廓后,您需要使用cv2.approxPolyDP + cv2.arcLength 执行轮廓逼近。您可以检查来自cv2.approxPolyDP 的返回值,这将为您提供多边形曲线形状近似值。如果这个值是五,那么你可以假设它是一个五边形。这是一个简单的方法:

    1. 获取二值图像。加载图像,灰度,bilateral filterOtsu's threshold

    2. 查找轮廓并执行轮廓逼近。 使用cv2.findContours 查找轮廓,然后执行轮廓逼近。如果轮廓通过此过滤器,我们将使用cv2.boundingRect 提取边界矩形坐标,并使用 Numpy 切片提取/保存 ROI。


    检测到的 ROI 是蓝绿色的

    提取/保存的 ROI

    注意:有两个 ROI 保存为单独的图像,但它们是相同的。

    代码

    import cv2
    import numpy as np
    
    # Load image, grayscale, bilaterial filter, Otsu's threshold
    image = cv2.imread('1.jpg')
    original = image.copy()
    gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
    blur = cv2.bilateralFilter(gray,9,75,75)
    thresh = cv2.threshold(blur, 0, 255, cv2.THRESH_BINARY_INV + cv2.THRESH_OTSU)[1]
    
    # Find contours, perform contour approximation, and extract ROI
    ROI_num = 0
    cnts = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
    cnts = cnts[0] if len(cnts) == 2 else cnts[1]
    for c in cnts:
        peri = cv2.arcLength(c, True)
        approx = cv2.approxPolyDP(c, 0.04 * peri, True)
        # If has 5 then its a pentagon
        if len(approx) == 5:
            x,y,w,h = cv2.boundingRect(approx)
            cv2.rectangle(image, (x, y), (x + w, y + h), (200,255,12), 2)
            ROI = original[y:y+h, x:x+w]
            cv2.imwrite('ROI_{}.png'.format(ROI_num), ROI)
            ROI_num += 1
    
    cv2.imshow('thresh', thresh)
    cv2.imshow('ROI', ROI)
    cv2.imshow('image', image)
    cv2.waitKey()
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2023-03-09
      • 2015-03-02
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-09-01
      • 2016-04-30
      • 2011-06-13
      相关资源
      最近更新 更多