-
Notifications
You must be signed in to change notification settings - Fork 4
/
detecttable.py
239 lines (210 loc) · 8.04 KB
/
detecttable.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import cv2
import numpy as np
from imutils import contours as cont
from collections import defaultdict
import pytesseract
from PIL import ImageFont, ImageDraw, Image
class Line():
def __init__(self, startx, starty, endx, endy):
self.startx = startx
self.starty = starty
self.endx = endx
self.endy = endy
def __str__(self):
return 'Line:{},{},{},{}'.format(self.startx, self.starty, self.endx, self.endy)
def lenx(self):
return abs(self.startx - self.endx)
def leny(self):
return abs(self.starty - self.endy)
def toArray(self):
return [self.startx, self.starty, self.endx, self.endy]
def reDrawLine(img, aleft, aright, same_len=True):
w, h = img.shape[0], img.shape[1]
for r in range(w-1):
pixel_white = 0
start = 0
end = 0
for c in range(h-1):
if img[r,c] == 255:
pixel_white += 1
if img[r, c] == 0 and img[r,c+1] == 255:
start = c
if img[r, c] == 255 and img[r,c+1] == 0:
end = c
if pixel_white > 20:
if same_len:
img[r,aleft:aright] = 255
else:
img[r,start:end] = 255
return img
def findMinMaxRow(v_img):
aleft, aright = 0, 0
list_col = []
w, h = v_img.shape[0], v_img.shape[1]
for r in range(w-1):
pixel_white = 0
for c in range(h-1):
if v_img[r,c] == 255:
pixel_white += 1
if pixel_white > 20:
list_col.append(r)
aleft, aright = min(list_col), max(list_col)
return aleft, aright
def getLines(img):
lines = []
w, h = img.shape[0], img.shape[1]
for r in range(w-1):
pixel_white = 0
startx, starty, endx, endy = 0,0,0,0
for c in range(h-1):
if img[r,c] == 0 and img[r,c+1] == 255:
startx = c
starty = r
if img[r,c] == 255 and img[r,c+1] == 0:
endx = c
endy = r
if img[r,c] == 255:
pixel_white += 1
if pixel_white > 20:
lines.append(Line(startx,starty,endx,endy))
#print(Line(startx,starty,endx,endy).toArray())
return lines
def findTable(arr):
table = defaultdict(list)
for i,b in enumerate(arr):
if b[2] < b[3]/2:
continue
table[str(b[1])].append(b)
#print(table)
table = [i[1] for i in table.items()]# if len(i[1]) > 1]
#print(([len(x) for x in table]))
num_cols = max([len(x) for x in table])
#print("num_cols:",num_cols)
table = [i for i in table if len(i) == num_cols]
#print("table rows=", len(table))
#print("table cols=",num_cols)
print("table size:{}x{}".format(len(table), num_cols))
return table
def getTable(src_img, y_start=0, min_w=10, min_h=10):
if y_start != 0:
src_img = src_img[y_start:,:]
if len(src_img.shape) == 2:
gray_img = src_img
elif len(src_img.shape) ==3:
gray_img = cv2.cvtColor(src_img, cv2.COLOR_BGR2GRAY)
thresh_img = cv2.adaptiveThreshold(~gray_img, 255, cv2.ADAPTIVE_THRESH_MEAN_C, cv2.THRESH_BINARY, 9, -3)
h_img = thresh_img.copy()
v_img = thresh_img.copy()
scale = 15
h_size = int(h_img.shape[1]/scale)
h_structure = cv2.getStructuringElement(cv2.MORPH_RECT,(h_size,1))
h_erode_img = cv2.erode(h_img,h_structure,1)
h_dilate_img = cv2.dilate(h_erode_img,h_structure,1)
v_size = int(v_img.shape[0] / scale)
v_structure = cv2.getStructuringElement(cv2.MORPH_RECT, (1, v_size))
v_erode_img = cv2.erode(v_img, v_structure, 1)
v_dilate_img = cv2.dilate(v_erode_img, v_structure, 1)
aleft, aright = findMinMaxRow(v_dilate_img.T)
aleft2, aright2 = findMinMaxRow(h_dilate_img)
h_dilate_img = reDrawLine(h_dilate_img, aleft, aright, True)
#v_dilate_img = reDrawLine(v_dilate_img.T, aleft, aright, False).T
#cv2.imshow('h_dilate_img',h_dilate_img)
#cv2.imshow('h_dilate_img',v_dilate_img)
#cv2.waitKey()
#list_hlines = getLines(h_dilate_img)
#list_vlines = getLines(v_dilate_img.T)
#print(len(list_hlines))
#print(len(list_vlines))
#for i,_ in list_hlines:
# for j,_ in list_hlines
#exit()
#v_dilate_img = reDrawLine(v_dilate_img.T, aleft2, aright2, True).T
v_dilate_img.T[aleft,aleft2:aright2] = 255
v_dilate_img.T[aright,aleft2:aright2] = 255
edges = cv2.Canny(h_dilate_img,50,150,apertureSize = 3)
#print(len(edges))
# This returns an array of r and theta values
lines = cv2.HoughLines(edges, 1, np.pi/180, 200)
#print(len(lines))
#cv2.waitKey()
mask_img = h_dilate_img + v_dilate_img
joints_img = cv2.bitwise_and(h_dilate_img, v_dilate_img)
#mask_img = 255 - mask_img
#mask_img = unsharp_mask(mask_img)
convolution_kernel = np.array(
[[0, 1, 0],
[1, 2, 1],
[0, 1, 0]]
)
#mask_img = cv2.filter2D(mask_img, -1, convolution_kernel)
#mask_img = 255- mask_img
#cv2.imshow('mask', mask_img)
#cv2.imshow('joints_img', joints_img)
#cv2.waitKey()
# cv2.imshow('join', joints_img)
# cv2.waitKey()
# fig, ax = plt.subplots(2,2)
# fig.suptitle("table detect")
# ax[0,0].imshow(h_dilate_img)
# ax[0,1].imshow(v_dilate_img)
# ax[1,0].imshow(mask_img)
# ax[1,1].imshow(joints_img)
# plt.show()cv2.RETR_LIST, cv2.CHAIN_APPROX_SIMPLE
contours, _ = cv2.findContours(mask_img, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
(contours, boundingBoxes) = cont.sort_contours(contours, method="left-to-right")
(contours, boundingBoxes) = cont.sort_contours(contours, method="top-to-bottom")
table = findTable([cv2.boundingRect(x) for x in contours])
# for r in table:
# for c in r:
# cv2.rectangle(src_img,(c[0], c[1]),(c[0] + c[2], c[1] + c[3]),(0, 0, 255), 1)
# cv2.putText(src_img, , (c[0] + c[2]//2,c[1] + c[3]//2), cv2.FONT_HERSHEY_SIMPLEX, 0.3, (0,0,0), 2)
# for c in contours:
# x, y, w, h = cv2.boundingRect(c)
# if (w >= min_w and h >= min_h):
# #count += 1
# if count != 0:
# cv2.rectangle(src_img,(x, y),(x + w, y + h),(0, 0, 255), 1)
# list_cells.append([x,y,w,h])
# cv2.putText(src_img, str(count), (x+w//2,y+h//2), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0,0,0), 2)
# count += 1
#cv2.waitKey()
#cv2.imwrite('a.jpg', src_img)
return table#mask_img, joints_img
def getTextOfBox(img):
return pytesseract.image_to_string(img, config='-l vie+en --oem 1 --psm 7').strip()#.lower()
def putTextUTF8(img, text, point, fsize=10):
fontpath = "Roboto-Regular.ttf"
font = ImageFont.truetype(fontpath, fsize)
img_pil = Image.fromarray(img)
draw = ImageDraw.Draw(img_pil)
draw.text(point, text, font = font, fill = ((0,0,0)))
img = np.array(img_pil)
return img
def getTableValue(table, img, img_ocr, fsize):
#img_ocr = img.copy()
#img_ocr = cv2.cvtColor(img_ocr,cv2.COLOR_BGR2GRAY)
data = []
header = []
for i,row in enumerate(table):
data_row = []
for cell in row:
crop = img_ocr[cell[1]+2:cell[1]+cell[3]-2, cell[0]+2:cell[0]+cell[2]-2]
#cv2.imwrite(str(i)+".png",crop)
cell_text = getTextOfBox(crop)
if i == 0:
header.append(cell_text)
cv2.rectangle(img, (cell[0], cell[1]), (cell[0] + cell[2], cell[1] + cell[3]), (0,255,0), -1)
else:
cv2.rectangle(img, (cell[0], cell[1]), (cell[0] + cell[2], cell[1] + cell[3]), (0,255,255), -1)
data_row.append(cell_text)
img = putTextUTF8(img, cell_text, (cell[0],cell[1]), fsize)
if i == 0:
data.append(header)
else:
data.append(data_row)
return data, img
img = cv2.imread("input.jpg")
img2 = img.copy()
table = getTable(img)
data, img = getTableValue(table, img, img2, 10)
cv2.imwrite('recog.jpg', img)