-
Notifications
You must be signed in to change notification settings - Fork 0
/
binarizer.py
584 lines (437 loc) · 21.5 KB
/
binarizer.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
import cv2 as cv
import os
import numpy as np
import math
import scipy
import utils
from scipy import ndimage
from matplotlib import pyplot as plt
from PIL import Image
# Le immagini vengono salvate nel path specificato da save_path e caricate dal path specificato in
# read_path, che si basano entrambi sul nome del documento (bible). Agisci solo su queste variabili
# per modificare i percorsi, il programma pensa al resto.
class Binarizer:
def __init__(self, bible):
self.bible = bible
self.read_path = 'GenesisPages/old/{bible}'.format(bible=self.bible)
self.save_path = 'GenesisPages/old/{bible}_binarized'.format(bible=self.bible)
def set_bible(self, bible):
self.bible = bible
self.read_path = 'GenesisPages/old/{bible}'.format(bible=self.bible)
self.save_path = 'GenesisPages/old/{bible}_binarized'.format(bible=self.bible)
def set_save_path(self, save_path):
self.save_path = save_path
def binarize(self):
# Se le cartelle per salvare le immagini non esistono, vengono create, altrimenti viene riutilizzata
# quella gia' presente.
if not os.path.exists(self.save_path):
os.mkdir('{save_path}/'.format(save_path=self.save_path))
print('Directory created.')
else:
print('Directory found.')
for image in os.listdir('GenesisPages/old/{doc}/'.format(doc=self.bible)):
# Rimuove il formato dalla stringa che identifica il nome dell'immagine (almeno dopo posso cambiare
# da .jpg a .png, molto piu' comodo da usare).
image = image[:-4]
print('{img_name} crawled.'.format(img_name=image))
# imread() legge l'immagine specificata dal path, imsave la salva. Per risolvere il viola/giallo
# ho pensato di ricaricare l'immagine e salvarla con un altro formato tramite PIL (incompatibile
# con plt). Infine, os si occupa di rimuovere l'immagine di troppo (quella gialla/viola).
# So che e' un metodo molto macchinoso, ma va fatto una sola volta, quindi non ho badato molto
# all'ottimizzazione. Se ti viene in mente qualcosa di meglio, ben venga!
img = cv.imread('{read_path}/{img_name}.jpg'.format(read_path=self.read_path, img_name=image))
# threshold() funziona cosi':
# - img indica l'immagine di cui fare il threshold.
# - 115 e' un numero che va da 0 a 255 (<- possibili livelli di colore) e indica la soglia oltre la
# quale il pixel deve essere reso grigio piuttosto che bianco. Abbassare questo parametro significa
# considerare solo pixel via via piu' scuri, viceversa alzandolo si considerano anche pixel sempre
# piu' chiari. Agisci su questo parametro.
# - 255 e' il numero massimo di tonalita' di colore (insomma, 8 bit).
# - cv.THRESH_BINARY_INV permette di binarizzare l'immagine e invertire il risultato. cv.THRESH_BINARY
# fa la stessa cosa, ma inverte la colorazione dei pixel. Ce ne sono altre, divertitici se vuoi.
gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
_, thresh1 = cv.threshold(gray, 120, 255, cv.THRESH_BINARY_INV)
cv.imwrite('{save_path}/{img_name}.png'.format(save_path=self.save_path, img_name=image), thresh1)
print('{img_name} binarized.'.format(img_name=image))
def rotateOriginals(self, image_path, nPage, angles):
print("Rotating {path}...".format(path=image_path))
img = cv.imread(image_path)
# Converte l'immagine in scala di grigi
gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
# Binarizzazione
th, threshed = cv.threshold(gray, 127, 255, cv.THRESH_BINARY_INV)
# Rotazione con minAreaRect on the nozeros
pts = cv.findNonZero(threshed)
ret = cv.minAreaRect(pts)
(cx, cy), (w, h), ang = ret
if w > h:
w, h = h, w
ang += 90
ang = angles[str(nPage)]
M = cv.getRotationMatrix2D((cx, cy), ang, 1.0)
rotated = cv.warpAffine(img, M, (img.shape[1], img.shape[0]))
cv.imwrite('GenesisPages/old/MuenchenRotated/Gut-{nPage}.png'.format(nPage=nPage), rotated)
def linesCropping(self, image_path, nPage, firstColumn, secondColumn, dictionary, angles, wordPositions,
frequentWord, inPagePosition):
#user = input('Inserire utente (scelte possibili: Federico, Francesco): ')
user = ' '
img = cv.imread(image_path)
# Converte l'immagine in scala di grigi
gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
# Binarizzazione
th, threshed = cv.threshold(gray, 127, 255, cv.THRESH_BINARY_INV)
#cv.imwrite('threshed.jpg', threshed)
# Rotazione con minAreaRect on the nozeros
pts = cv.findNonZero(threshed)
ret = cv.minAreaRect(pts)
(cx, cy), (w, h), ang = ret
if w > h:
w, h = h, w
ang += 90
# carica l'angolo giusto, trovato con findRotationAngle e salvato in precedenza in json
ang = angles[str(nPage)]
M = cv.getRotationMatrix2D((cx, cy), ang, 1.0)
rotated = cv.warpAffine(threshed, M, (img.shape[1], img.shape[0]))
# Fa l'istogramma, conta i punti neri per ogni riga. Picchi di neri corrispondono alla stessa
hist = cv.reduce(rotated, 1, cv.REDUCE_AVG).reshape(-1)
histVert = self.histogramV(rotated)
th, rotated = cv.threshold(rotated, 140, 255, cv.THRESH_BINARY)
# Questa e' la soglia che decide fino a che punto tagliare
th = 8
if nPage is 15:
th = 20
if nPage is 16:
th = 13
if nPage is 18:
th = 9
if nPage is 20:
th = 7
if nPage is 21:
th = 14
if nPage is 23:
th = 11
if nPage is 25:
th = 15
if nPage is 26:
th = 11
if nPage is 27:
th = 5
if nPage is 30:
th = 9
if nPage is 31:
th = 14
if nPage is 33:
th = 8
# Coordinate dell'immagine, altezza larghezza
H, W = img.shape[:2]
# decido di tagliare se il valore dell'istogramma rientra nella soglia
uppers = [y for y in range(H - 1) if hist[y] <= th and hist[y + 1] > th]
lowers = [y for y in range(H - 1) if hist[y] > th and hist[y + 1] <= th]
columns = [y for y in range(W - 1) if (histVert[y] == 1250 and
histVert[y] > histVert[y + 1]) or
(histVert[y] == 1250 and
histVert[y] > histVert[y - 1])]
self.lineRepairUnder(uppers, lowers, 45)
# traccia semplicemente la linea, del colore desiderato
rotated = cv.cvtColor(rotated, cv.COLOR_GRAY2BGR)
for y in uppers:
cv.line(rotated, (0, y), (W, y), (255, 0, 0), 1)
for y in lowers:
cv.line(rotated, (0, y), (W, y), (0, 255, 0), 1)
# Pagine dispari con colonne non tagliate bene
if (len(columns) is not 4 and (nPage % 2) is 1):
columns = []
columns.append(120)
columns.append(500)
columns.append(520)
columns.append(880)
# Pagine pari con colonne non tagliate bene
if (len(columns) is not 4 and (nPage % 2) is 0):
columns = []
columns.append(50)
columns.append(440)
columns.append(450)
columns.append(840)
leftColumn = rotated[:, columns[0]:columns[1]]
rightColumn = rotated[:, columns[2]:columns[3]]
if user == 'Federico' and frequentWord is None:
resizedLeft = cv.resize(leftColumn, (int(450*(13/25)), int(1250*(13/25))))
resizedRight = cv.resize(rightColumn, (int(450*(13/25)), int(1250*(13/25))))
cv.imshow(firstColumn, resizedLeft)
cv.moveWindow(firstColumn, 100, 100)
cv.imshow(secondColumn, resizedRight)
cv.moveWindow(secondColumn, 900, 100)
cv.waitKey(0)
elif frequentWord is None:
cv.imshow(firstColumn, leftColumn)
cv.imshow(secondColumn, rightColumn)
xBegin = []
xEnd = []
# Colonna di sinistra
j = 0
for i in range(len(uppers)):
listBegin, listEnd, j = self.wordSegmentation(leftColumn[uppers[i]: lowers[i], :], j,
dictionary, firstColumn, user, wordPositions, frequentWord,
offsetX=columns[0], offsetY=uppers[i],
lineThickness=(lowers[i] - uppers[i]),
inPagePosition=inPagePosition, nPage=nPage)
if listBegin is not None:
xBegin.append(listBegin)
xEnd.append(listEnd)
# Colonna di destra
j = 0
for i in range(len(uppers)):
listBegin, listEnd, j = self.wordSegmentation(rightColumn[uppers[i]: lowers[i], :], j,
dictionary, secondColumn, user, wordPositions, frequentWord,
offsetX=columns[2],offsetY=uppers[i],
lineThickness=(lowers[i] - uppers[i]),
inPagePosition=inPagePosition, nPage=nPage)
if listBegin is not None:
xBegin.append(listBegin)
xEnd.append(listEnd)
# Sapendo che le righe si trovano quasi sempre alla stessa distanza, se mi accorgo che la distanza tra due trovate
# e` troppo grande, ne traccio una a mano.
def lineRepairUnder(self, uppers, lowers, th):
# Ripara l'under
for i in range(len(uppers) - 1):
if (uppers[i + 1] - uppers[i] > th):
uppers.insert(i + 1, uppers[i] + 25)
if (lowers[i + 1] - lowers[i] > th):
lowers.insert(i + 1, lowers[i] + 25)
def lineRepairOver(self, uppers, lowers):
# Ripara linee troppo vicine
th = 6
for i in range(len(uppers) - 1):
try:
if (uppers[i + 1] - uppers[i] < th):
uppers.remove(uppers[i + 1])
if (lowers[i + 1] - lowers[i] < th):
lowers.remove(lowers[i + 1])
except IndexError:
break
def wordSegmentation(self, line, i, dictionary, nColumn, user, wordPositions, frequentWord, offsetX, offsetY,
lineThickness, inPagePosition, nPage):
# A questo punto dobbiamo fare un'istogramma proiettando verticalmente. Pero' va fatto PER OGNI riga trovata
# in precedenza... Si puo' utilizzare anche la funzione reduce come in precedenza, ma non mi tornava e quindi
# mi sono scritto un istogramma a mano
# Proiezione verticale
H, W = line.shape[:2]
# Per evitare problemi di oversegmentation, se trovo una linea troppo fine, la salto
if (H < 5):
return None, None, i
line = self.calimero(line)
if frequentWord is None:
cv.imshow('Line', line)
if user == 'Federico':
cv.moveWindow('Line', 490, 300)
lineHistRow = self.histogram(line)
# Valore di soglia
thW = 2
listBegin = [x for x in range(W - 1) if lineHistRow[x] <= thW and lineHistRow[x + 1] > thW]
listEnd = [x for x in range(W - 1) if lineHistRow[x] > thW and lineHistRow[x + 1] <= thW]
listBegin.sort()
listEnd.sort()
try:
wordsInLine = dictionary[nColumn][i]
except IndexError:
wordsInLine = 6
listBegin, listEnd = self.kBestCuts(line, listBegin, listEnd, wordsInLine)
if frequentWord is not None:
if frequentWord not in inPagePosition[nPage].keys():
inPagePosition[nPage][frequentWord] = []
for j in range(len(listBegin)):
try:
word = line[:, listBegin[j]: listEnd[j]]
except IndexError:
break
h, w = word.shape[:2]
if (h > 0 and w > 0):
if frequentWord is None:
cv.imshow('Word', word)
if user == 'Federico':
cv.moveWindow('Word', 500, 500)
cv.waitKey(0)
elif str((nColumn, i, j)) in wordPositions.keys():
cv.imwrite('frequentWords/{frequentWord}/{nColumn}_{i}_{j}.png'.format(frequentWord=frequentWord,
nColumn=nColumn, i=i, j=j),
word)
# Si appende una quadrupla del tipo xTopLeft, yTopLeft, Width, Height
inPagePosition[nPage][frequentWord].append((offsetX + listBegin[j], offsetY,
listEnd[j] - listBegin[j], lineThickness))
i += 1
return listBegin, listEnd, i
# Funzione che genera un istogramma contando i pixel non neri. Picchi di bianchi corrispondono a molto testo scritto
# in quella determinata colonna.
def histogram(self, image):
H, W = image.shape[:2]
histogram = []
for i in range(W):
histogram.append(0)
for j in range(H):
if image[j, i] == 0:
continue
else:
histogram[i] += 1
return histogram
def histogramV(self, image):
H, W = image.shape[:2]
th, threshed = cv.threshold(image, 127, 255, cv.THRESH_BINARY_INV | cv.THRESH_OTSU)
histogram = []
for i in range(W):
histogram.append(0)
for j in range(H):
if threshed[j, i] <= 29:
continue
else:
histogram[i] += 1
return histogram
# Funzione che prende un immagine, la binarizza e cerca le componenti connesse. Decide di elimare le componenti
# connesse piccole (calimero), cioe` con area inferiore ad una certa soglia, colorandole semplicemente come lo
# sfondo.
def calimero(self, image):
height, width = image.shape[0], image.shape[1]
start_row, start_col = int(height * 0), int(0)
# Taglia l'immagine a meta`, per eliminare un certo numero di variabili che, computazionalmente, pesano.
end_row, end_col = int(height), int(width)
croppedImage = image[start_row:end_row, start_col:end_col]
gray = cv.cvtColor(croppedImage, cv.COLOR_BGR2GRAY)
_, threshed = cv.threshold(gray, 50, 255, cv.THRESH_BINARY)
nb_components, output, stats, centroids = cv.connectedComponentsWithStats(threshed,
connectivity=8)
sizes = stats[1:, -1];
nb_components = nb_components - 1
# Lui cancella quelle con area minore di 21 (le mette a nero)
min_size = 21
img2 = np.zeros((output.shape))
for i in range(0, nb_components):
if sizes[i] >= min_size:
img2[output == i + 1] = 255
return img2
# Funzione che decide quali tagli togliere seguendo un'euristica: ordina i tagli in base alla differenza tra il
# precedente e il successivo. Quelli con distanza minore sono i canditati ad essere tolti; prende in ingresso il
# numero di parole della riga, note attraverso il groundTruth. Andra' usato combinatamente con CALIMERO.
def kBestCuts(self, line, listBegin, listEnd, nWords):
# Caso in cui non posso tagliare con le parole
if(len(listEnd) > len(listBegin)):
listEnd.pop(0)
if nWords is len(listBegin) or nWords > len(listBegin):
return listBegin, listEnd
listDiff = []
for i in range(1, len(listBegin)):
listDiff.append(listBegin[i] - listEnd[i - 1])
orderedList = sorted(listDiff)
nCuts = len(listBegin) - nWords
for k in range(nCuts):
i = listDiff.index(orderedList[0])
try:
listEnd[i] = listEnd[i + 1]
listBegin[i + 1] = None
listEnd[i + 1] = None
listDiff[i] = None
except IndexError:
continue
listBegin.remove(None)
listEnd.remove(None)
listDiff = []
for i in range(1, len(listBegin)):
listDiff.append(listBegin[i] - listEnd[i - 1])
orderedList = sorted(listDiff)
return listBegin, listEnd
def getRotationMatrix(self, center, angle, scale):
M = []
M.append([])
M.append([])
alpha = -(scale * math.cos(angle))
beta = scale * math.sin(angle)
M[0].append(alpha)
M[0].append(beta)
M[0].append(((1 - alpha) * center[0] - beta * center[1]))
M[1].append(-beta)
M[1].append(alpha)
M[1].append((beta * center[0] + (1 - alpha) * center[1]))
M = np.asarray(M)
return M
def findRotationAngle(self, image_path):
# Idea: trova il primo punto bianco della prima riga a sx e il primo punto bianco dell'ultima riga a sx,
# calcola le distanze, l'ipotenusa e determina sin, cos dell'angolo. Usa arcsin e arccos per
# trovare l'angolo e restituiscilo
print("Finding rotation angle of {path}...".format(path=image_path))
image = cv.imread(image_path, 0)
img_path = image_path[image_path.find('Gut'):]
_, thresh1 = cv.threshold(image, 70, 255, cv.THRESH_BINARY_INV)
img_path = img_path[:img_path.find('.jpg')]
plt.imsave('tmp/{img_name}.jpg'.format(img_name=img_path), thresh1)
imgx = Image.open('tmp/{img_name}.jpg'.format(img_name=img_path)).convert('LA')
imgx.save('tmp/{img_name}.png'.format(img_name=img_path))
os.remove('tmp/{img_name}.jpg'.format(img_name=img_path))
threshed = cv.imread('tmp/{img_name}.png'.format(img_name=img_path))
H, W = threshed.shape[:2]
# Modo complesso: usando le distanze dai due angoli
distances = []
topLeftCornerX = 0
topLeftCornerY = 0
firstWhite = False
for x in range(W):
whitePixels = 0
for y in range(H):
if threshed[y][x][0] >= 200:
whitePixels += 1
if whitePixels >= 10:
for y in range(W):
if threshed[y][x][0] >= 200 and not firstWhite:
distances.append((math.sqrt(math.pow(x - topLeftCornerX, 2) + math.pow(y - topLeftCornerY, 2)), x, y))
firstWhite = True
firstWhite = False
dist = np.zeros(len(distances))
for x in range(len(distances)):
dist[x] = (distances[x][0])
minDist = np.argmin(dist)
topLeftX = distances[int(minDist)][1]
topLeftY = distances[int(minDist)][2]
distances = []
bottomLeftCornerRow = 1250
bottomLeftCornerCol = 0
firstWhite = False
for row in range(H - 1, 0, -1):
whitePixels = 0
for col in range(W):
if threshed[row][col][0] >= 200:
whitePixels += 1
if whitePixels >= 50:
for col2 in range(W):
if threshed[row][col2][0] >= 200 and not firstWhite:
distances.append((math.sqrt(math.pow(bottomLeftCornerRow - row, 2) + math.pow(bottomLeftCornerCol - col2, 2)), row, col2))
firstWhite = True
firstWhite = False
dist = np.zeros(len(distances))
for x in range(len(distances)):
dist[x] = (distances[x][0])
minDist = np.argmin(dist)
bottomLeftX = distances[int(minDist)][2]
bottomLeftY = distances[int(minDist)][1]
cv.line(threshed, (topLeftCornerX, topLeftCornerY), (topLeftX, topLeftY) , color=(0, 255, 0), thickness=1)
cv.line(threshed, (bottomLeftCornerCol, bottomLeftCornerRow), (bottomLeftX, bottomLeftY) , color=(0, 255, 0), thickness=1)
cv.rectangle(threshed, (topLeftX, topLeftY), (topLeftX+2, topLeftY+2), color=(0, 0, 255), thickness=4)
cv.rectangle(threshed, (bottomLeftX, bottomLeftY), (bottomLeftX+2, bottomLeftY+2), color=(0, 0, 255), thickness=4)
pt1 = (topLeftX, topLeftY)
pt2 = (bottomLeftX, bottomLeftY)
pt3 = (bottomLeftX, topLeftY)
cv.line(threshed, pt1, pt2, color=(0, 255, 0), thickness=2)
cv.line(threshed, pt2, pt3, color=(0, 255, 0), thickness=2)
cv.line(threshed, pt3, pt1, color=(0, 255, 0), thickness=2)
# resized = cv.resize(threshed, (int(900*(13/25)), int(1250*(13/25))))
# cv.imshow('page', resized)
# cv.waitKey(0)
# calcolo le lunghezze dei cateti
d_pt2pt3 = math.fabs(topLeftY - bottomLeftY)
d_pt1pt3 = math.fabs(topLeftX - bottomLeftX)
# teorema di pitagora per trovare l'ipotenusa
d_pt1pt2 = math.sqrt(math.pow(d_pt2pt3, 2) + math.pow(d_pt1pt3, 2))
# definizione di coseno
angleCos = d_pt2pt3 / d_pt1pt2
# converto da radianti il risultato dell'arccos ottenuto prima
rotationAngle = math.degrees(math.acos(angleCos))
if bottomLeftX > topLeftX:
rotationAngle = - rotationAngle
os.remove('tmp/{img_name}.png'.format(img_name=img_path))
return rotationAngle