如何删除.jpg图像文件中的所有行?

时间:2019-07-10 21:32:53

标签: image opencv image-processing computer-vision imagemagick

我需要删除图像(最终是表格)中的行。我找到了一种删除水平和垂直线的方法:

convert 1.jpg -type Grayscale -negate -define morphology:compose=darken -morphology Thinning 'Rectangle:1x80+0+0<' -negate out.jpg

下图:

enter image description here

已转换为以下内容:

enter image description here

可以看到对角线仍然存在。我尝试将图像旋转45度,然后尝试将其删除,但还是失败了。怎么做?任何建议表示赞赏。我选择了imagemagick,但欢迎其他选择

2 个答案:

答案 0 :(得分:5)

您可以尝试使用cv2.HoughLinesP()检测对角线,然后使用遮罩填充轮廓

import cv2
import numpy as np

image = cv2.imread('1.jpg')
mask = np.zeros(image.shape, np.uint8)
gray = cv2.cvtColor(image,cv2.COLOR_BGR2GRAY)
canny = cv2.Canny(gray,100,200)
kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (5,5))
close = cv2.morphologyEx(canny, cv2.MORPH_CLOSE, kernel)
minLineLength = 10
maxLineGap = 350
lines = cv2.HoughLinesP(close,1,np.pi/180,100,minLineLength,maxLineGap)
for line in lines:
    for x1,y1,x2,y2 in line:
        cv2.line(mask,(x1,y1),(x2,y2),(255,255,255),3)

mask = cv2.cvtColor(mask,cv2.COLOR_BGR2GRAY)
cnts = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]

for c in cnts:
    cv2.drawContours(image, [c], -1, (255,255,255), -1)

cv2.imshow('mask', mask)
cv2.imshow('image', image)
cv2.imwrite('image.png', image)
cv2.waitKey()

答案 1 :(得分:4)

这是另一种方法。我使用Imagemagick,因为我不精通OpenCV。基本上,我将图像二值化。然后进行连接的组件处理,以隔离最大的连续黑色区域,这就是您要排除的黑线。然后将其用作遮罩,以在线条上填充白色。这是Imagemagick的Unix语法。

请注意,如果某些文本字符接触黑线,则会丢失它们。

输入:

enter image description here

获取最大的黑色区域的ID号:

id=`convert Arkey.jpg -threshold 50% -type bilevel \
-define connected-components:verbose=true \
-define connected-components:mean-color=true \
-connected-components 4 null: |\
grep "gray(0)" | head -n 1 | sed -n 's/^ *\(.*\):.*$/\1/p'`


隔离黑线并扩大它们

convert Arkey.jpg -threshold 50% -type bilevel \
-define connected-components:mean-color=true \
-define connected-components:keep=$id \
-connected-components 4 \
-alpha extract \
-morphology dilate octagon:2 \
mask.png


enter image description here

使用蒙版进行控制,将图像中的线条填充为白色:

convert Arkey.jpg \( -clone 0 -fill white -colorize 100 \) mask.png -compose over -composite result.png


enter image description here

有关工作原理的详细信息,请参见https://imagemagick.org/script/connected-components.php上的-connected-components。