gpt4 book ai didi

python - 在opencv中使用霍夫变换检测垂直线

转载 作者:太空宇宙 更新时间:2023-11-03 12:20:23 30 4
gpt4 key购买 nike

我正在尝试使用 opencv (Python) 中的 Hough 变换移除方框(垂直线和水平线)。问题是没有检测到垂直线。我试过查看轮廓和层次结构,但这张图片中的轮廓太多,我不知道如何使用它们。

在浏览了相关帖子后,我尝试了 threshold 和 rho 参数,但没有帮助。我附上了代码以获取更多详细信息。为什么霍夫变换找不到图像中的垂直线?。欢迎提出解决此任务的任何建议。谢谢。

输入图像: enter image description here

霍夫变换图像:enter image description here

绘制轮廓: enter image description here

import cv2
import numpy as np
import pdb


img = cv2.imread('/home/user/Downloads/cropped/robust_blaze_cpp-300-0000046A-02-HW.jpg')

gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(gray, 140, 255, 0)
im2, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0,0,255), 2)

edges = cv2.Canny(gray,50,150,apertureSize = 3)
minLineLength = 5
maxLineGap = 100
lines = cv2.HoughLinesP(edges,rho=1,theta=np.pi/180,threshold=100,minLineLength=minLineLength,maxLineGap=maxLineGap)
for x1,y1,x2,y2 in lines[0]:
cv2.line(img,(x1,y1),(x2,y2),(0,255,0),2)

cv2.imwrite('probHough.jpg',img)

最佳答案

老实说,与其寻找线条,不如寻找白框。

  1. 准备

    import cv2
    import numpy as np
  2. 载入图片

    img = cv2.imread("digitbox.jpg", 0)
  3. 将其二值化,使方框和数字均为黑色,其余为白色

    _, thresh = cv2.threshold(img, 200, 255, cv2.THRESH_BINARY)
    cv2.imwrite('digitbox_step1.png', thresh)

    Step 1 -- thresholded input

  4. 寻找等高线。在此示例图像中,只查找外部轮廓就可以了。

    _, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
  5. 处理轮廓,过滤掉任何面积太小的轮廓。找到每个轮廓的凸包,创建轮廓外所有区域的掩码。存储每个找到的轮廓的边界框,按 x 坐标排序。

    mask = np.ones_like(img) * 255

    boxes = []

    for contour in contours:
    if cv2.contourArea(contour) > 100:
    hull = cv2.convexHull(contour)
    cv2.drawContours(mask, [hull], -1, 0, -1)
    x,y,w,h = cv2.boundingRect(contour)
    boxes.append((x,y,w,h))

    boxes = sorted(boxes, key=lambda box: box[0])

    cv2.imwrite('digitbox_step2.png', mask)

    Step 2 -- the mask

  6. 扩大蒙版(缩小黑色部分),剪掉任何残留的灰色框。

    mask = cv2.dilate(mask, np.ones((5,5),np.uint8))

    cv2.imwrite('digitbox_step3.png', mask)

    Step 3 -- dilated mask

  7. 用白色填充所有被屏蔽的像素,以删除边框。

    img[mask != 0] = 255

    cv2.imwrite('digitbox_step4.png', img)

    Step 4 - cleaned up input

  8. 按照您的意愿处理数字——我将只绘制边界框。

    result = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)

    for n,box in enumerate(boxes):
    x,y,w,h = box
    cv2.rectangle(result,(x,y),(x+w,y+h),(255,0,0),2)
    cv2.putText(result, str(n),(x+5,y+17), cv2.FONT_HERSHEY_SIMPLEX, 0.6,(255,0,0),2,cv2.LINE_AA)

    cv2.imwrite('digitbox_step5.png', result)

    Enumerated bounding boxes


一个完整的脚本:

import cv2
import numpy as np

img = cv2.imread("digitbox.jpg", 0)

_, thresh = cv2.threshold(img, 200, 255, cv2.THRESH_BINARY)
_, contours, hierarchy = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

mask = np.ones_like(img) * 255
boxes = []

for contour in contours:
if cv2.contourArea(contour) > 100:
hull = cv2.convexHull(contour)
cv2.drawContours(mask, [hull], -1, 0, -1)
x,y,w,h = cv2.boundingRect(contour)
boxes.append((x,y,w,h))

boxes = sorted(boxes, key=lambda box: box[0])

mask = cv2.dilate(mask, np.ones((5,5),np.uint8))

img[mask != 0] = 255

result = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)

for n,box in enumerate(boxes):
x,y,w,h = box
cv2.rectangle(result,(x,y),(x+w,y+h),(255,0,0),2)
cv2.putText(result, str(n),(x+5,y+17), cv2.FONT_HERSHEY_SIMPLEX, 0.6,(255,0,0),2,cv2.LINE_AA)

cv2.imwrite('digitbox_result.png', result)

关于python - 在opencv中使用霍夫变换检测垂直线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45310331/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com