python - 如何从图像中删除方括号?

标签 python numpy opencv image-processing computer-vision

我有这个图像:raw

我想从此图像中删除方括号。我已经走了这么远:

# Import packages 
import cv2
import numpy as np

#Create MSER object
mser = cv2.MSER_create()

#Your image path i-e receipt path
img = cv2.imread('uky.JPG')

#Convert to gray scale
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

vis = img.copy()

#detect regions in gray scale image
regions, _ = mser.detectRegions(gray)

hulls = [cv2.convexHull(p.reshape(-1, 1, 2)) for p in regions]

cv2.polylines(vis, hulls, 1, (0, 255, 0))

cv2_imshow(vis)

mask = np.zeros((img.shape[0], img.shape[1], 1), dtype=np.uint8)

for contour in hulls:

    cv2.drawContours(mask, [contour], -1, (255, 255, 255), -1)

#this is used to find only text regions, remaining are ignored
text_only = cv2.bitwise_and(img, img, mask=mask)

cv2_imshow(text_only)

此代码的结果:detected

预期输出:expected

但我不知道如何删除方括号。我确信这是一个非常简单的问题,但由于我不熟悉 OpenCV,我花了几个小时都无法解决这个问题。

如果有人可以向我解释这一点,我会很高兴。预先非常感谢您。

最佳答案

这是 Python/OpenCV 中的一种方法。获取轮廓并根据纵横比和面积进行过滤。将剩余轮廓绘制为白色背景上的黑色。

输入:

enter image description here

import cv2
import numpy as np

#Read input image
img = cv2.imread('brackets.jpg')

# threshold on black
lower =(0,0,0) 
upper = (50,50,50) 
thresh = cv2.inRange(img, lower, upper)

# find contours and get one with area about 180*35
contours = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
contours = contours[0] if len(contours) == 2 else contours[1]

# filter contours on aspect ratio and area
max_aspect = 3.7
min_aspect = 0.7
min_area = 15
result = np.full_like(img, (255,255,255))
for cntr in contours:
    area = cv2.contourArea(cntr)
    x,y,w,h = cv2.boundingRect(cntr)
    aspect = h/w
    if aspect > min_aspect and aspect < max_aspect and area > min_area:
            cv2.drawContours(result, [cntr], -1, (0, 0, 0), 2)

# save result
cv2.imwrite("brackets_thresh.jpg", thresh)
cv2.imwrite("brackets_removed.jpg", result)

# show images
cv2.imshow("THRESH", thresh)
cv2.imshow("RESULT", result)
cv2.waitKey(0)

阈值图像:

enter image description here

结果:

enter image description here

关于python - 如何从图像中删除方括号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64524285/

相关文章:

java - 如何在Javacv中获取人脸相等范围

Python readline - 如何链接主目录中内置的 ncurses?

python - 自动创建相关模型

python - 模块 'sys' 没有 '_MEIPASS' 成员

image-processing - 梯度压缩直方图 (CHoG)

opencv - 如何分离两个图像不常见的颜色像素?

python - 无法重置轴

python - Numpy 添加两个不同大小的向量

python - 检查索引处 numpy 数组的值

python - 数组的按列归一化(缩放)