-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
316 lines (231 loc) · 10 KB
/
main.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
from functools import reduce
from os import walk
import cv2
import matplotlib.pyplot as plt
import numpy as np
IMG_SRC_DIR = 'samples'
DEBUG = False
def main(img_src):
"""
Processa a imagem informada.
Sumário:
* b = valor de menor intensidade. Representa a base do rim.
* m = valor de maior intensidade. Representa o topo do rim.
* med = valor da mediana entre b e m. Representa o valor mais próximo da borda do rim.
"""
# Valor de maior intensidade
m = 180
try:
src_gray = cv2.cvtColor(cv2.imread(img_src), cv2.COLOR_BGR2GRAY)
if DEBUG:
cv2.imshow("A Original", src_gray)
# Pré-processamento
src_processed = pre_process(src_gray)
# Encontra os dois maiores picos da imagem, que definem os dois rins
b_contours = max_contours(src_processed, m)
draw_contours_and_show(src_gray, b_contours, "F Maximos")
# noinspection PyTypeChecker
center_point_1 = center_point(b_contours[0])
# noinspection PyTypeChecker
center_point_2 = center_point(b_contours[1])
division = (center_point_1[0] + center_point_2[0]) / 2
# Divide a imagem, resultando em uma para cada rim
# A partir desse ponto cada rim é processado separadamente
src_processed_1 = src_processed[:, :int(division)]
src_processed_2 = src_processed[:, int(division):]
src_gray_1 = src_gray[:, :int(division)]
src_gray_2 = src_gray[:, int(division):]
# Busca a mediana entre o ponto de maior intensidade e o ponto de menor intesidade
med1, b1 = med(src_processed_1, m)
med2, b2 = med(src_processed_2, m)
# Busca as bordas do rim pelo valor de b
# Desenha os contornos e junta as imagens
src_color_1 = cv2.cvtColor(src_gray_1, cv2.COLOR_GRAY2RGB)
src_color_2 = cv2.cvtColor(src_gray_2, cv2.COLOR_GRAY2RGB)
cv2.drawContours(src_color_1, [(bigger_contour(src_processed_1, b1))], 0, (0, 0, 255))
cv2.drawContours(src_color_2, [(bigger_contour(src_processed_2, b2))], 0, (0, 0, 255))
full_img = np.concatenate((src_color_1, src_color_2), 1)
if DEBUG:
cv2.imshow("G Thresh B", full_img)
# Busca as bordas do rim pelo valor da mediana
# Desenha os contornos e junta as imagens
src_color_1 = cv2.cvtColor(src_gray_1, cv2.COLOR_GRAY2RGB)
src_color_2 = cv2.cvtColor(src_gray_2, cv2.COLOR_GRAY2RGB)
cv2.drawContours(src_color_1, [(bigger_contour(src_processed_1, med1))], 0, (0, 0, 255))
cv2.drawContours(src_color_2, [(bigger_contour(src_processed_2, med2))], 0, (0, 0, 255))
full_img = np.concatenate((src_color_1, src_color_2), 1)
if DEBUG:
cv2.imshow("H Med", full_img)
# Faz o ajuste da borda através do método Expectation Maximization
kidney_border_1 = border(src_processed_1, med1, m)
classification_1 = em_classification(kidney_border_1)
kidney_border_2 = border(src_processed_2, med2, m)
classification_2 = em_classification(kidney_border_2)
# Desenha os contornos pela classificação e junta as imagens
src_color_1 = cv2.cvtColor(src_gray_1, cv2.COLOR_GRAY2RGB)
src_color_2 = cv2.cvtColor(src_gray_2, cv2.COLOR_GRAY2RGB)
cv2.drawContours(src_color_1, [(bigger_contour(classification_1, 1))], 0, (0, 0, 255))
cv2.drawContours(src_color_2, [(bigger_contour(classification_2, 1))], 0, (0, 0, 255))
full_img = np.concatenate((src_color_1, src_color_2), 1)
if DEBUG:
cv2.imshow("I Otimizado por EM", full_img)
if not DEBUG:
cv2.imshow(img_src, full_img)
if DEBUG:
plt.show()
key = cv2.waitKey(0)
while key != 32:
key = cv2.waitKey(0)
except Exception:
print("Error")
finally:
cv2.destroyAllWindows()
def em_classification(img):
""" Obtém o resultado do método de classificação Expectation Maximization como uma imagem binária """
kidney_border_color = cv2.cvtColor(img, cv2.COLOR_GRAY2RGB)
_, kidney_border_thresh = cv2.threshold(img, 1, 255, cv2.THRESH_BINARY)
# Obtém os pontos da borda para treinar a classificação
training_points = []
for x in range(len(kidney_border_color)):
for y in range(len(kidney_border_color[x])):
if kidney_border_thresh[x, y] == 255:
training_points.append(kidney_border_color[x, y])
if len(training_points) == 0:
raise Exception
# Realiza a classificação
em = cv2.ml.EM_create()
em.setClustersNumber(2)
em.trainEM(np.array(training_points))
# Obtém o resultado da classificação
# Monta uma nova imagem
classification = np.zeros((len(kidney_border_color), len(kidney_border_color[0])), dtype=np.uint8)
# Alimenta a nova imagem com o resultado da classficicação
for x in range(len(kidney_border_color)):
for y in range(len(kidney_border_color[x])):
retval, probs = em.predict2(kidney_border_color[x, y])
classification[x, y] = retval[1]
# Transforma a nova imagem trocando o valor 1 por 255
for x in range(len(kidney_border_color)):
for y in range(len(kidney_border_color[x])):
if classification[x, y] == 1:
classification[x, y] = 255
return classification
def border(img, med, m):
""" Obtém a borda do maior elemento da imagem através do operador mofológico gradiente """
kidney_mask = mask(img, [(bigger_contour(img, med))])
kidney = element_inside_mask(img, kidney_mask)
gradient_kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (15, 15))
kidney_gradient = cv2.morphologyEx(kidney, cv2.MORPH_GRADIENT, gradient_kernel)
kidney_full_mask = mask(img, [(max_contours(kidney_gradient, 1))[0]])
kidney_full = np.zeros_like(img)
kidney_full[kidney_full_mask == 255] = img[kidney_full_mask == 255]
kidney_center_mask = mask(img, [(max_contours(img, m))[1]])
empty_img = np.zeros_like(img)
kidney_full[kidney_center_mask == 255] = empty_img[kidney_center_mask == 255]
kidney_border = kidney_full
return kidney_border
def pre_process(src_gray):
""" Executa as etapas de pre-processamento:
* Dilatação
* Blur
* Fechamento
* Blur
"""
dilated = cv2.dilate(src_gray, cv2.getStructuringElement(cv2.MORPH_RECT, (3, 3)))
if DEBUG:
cv2.imshow("B Dilated", dilated)
blurred = cv2.GaussianBlur(dilated, (7, 7), 0)
if DEBUG:
cv2.imshow("C Blurred", blurred)
closed = cv2.morphologyEx(blurred, cv2.MORPH_CLOSE, cv2.getStructuringElement(cv2.MORPH_RECT, (9, 9)))
if DEBUG:
cv2.imshow("D Closed", closed)
blurred2 = cv2.GaussianBlur(closed, (7, 7), 0)
if DEBUG:
cv2.imshow("E Blurred", blurred2)
return blurred2
def element_inside_mask(img, mask):
""" Obtém a imagem de acordo com a máscara. Os elementos fora da mascara são alterados para preto """
element = np.zeros_like(img)
element[mask == 255] = img[mask == 255]
return element
def mask(img, contour):
""" Obtém uma mascara do área dentro do contorno """
result_mask = np.zeros_like(img)
cv2.drawContours(result_mask, contour, 0, 255, -1)
return result_mask
def draw_contours_and_show(img_gray, contours, text, thickness=-1):
""" Desenha os contornos e exibe a imagem """
img_color = cv2.cvtColor(img_gray, cv2.COLOR_GRAY2RGB)
for i in range(len(contours)):
cv2.drawContours(img_color, contours, i, (0, 0, 255), thickness)
if DEBUG:
cv2.imshow(text, img_color)
def med(img, m):
""" Busca a mediana (med) e o valor de menor intesidade (b) entre m e b """
contours_area = []
contours_b = []
for b_value in range(m, 0, -1):
area = cv2.contourArea(bigger_contour(img, b_value))
contours_area.append(area)
contours_b.append(b_value)
# Plota a curva de crescimento das áreas em função dos níveis de cinza
plt.plot(contours_b, contours_area)
plt.ylabel('Área')
plt.xlabel('Níveis de cinza')
plt.draw()
b_idx = first_peak(contours_area)
b_value = contours_b[b_idx]
if b_value > b_idx:
b_value = 0
mb = contours_b[b_value:b_idx]
return mb[int(len(mb) / 2)], b_value
def first_peak(contours_area):
""" Encontra o indice do primeiro pico de variação da area """
for i in range(len(contours_area)):
if i == 0:
continue
current_variation = contours_area[i] - contours_area[i - 1]
if current_variation > average_variation(contours_area[:i + 1]) * 6:
return i
def bigger_contour(img, thresh):
""" Obtem os maior contorno obtido com o thresh informado """
return max_contours(img, thresh)[0]
def max_contours(img, thresh):
""" Obtem os dois maiores contornos obtidos com o thresh informado """
_, thresh = cv2.threshold(img, thresh, 255, cv2.THRESH_BINARY)
_, contours, _ = cv2.findContours(thresh, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE)
return sorted(contours, key=len, reverse=True)[:2]
def center_point(contour):
""" Calcula o ponto central do contorno """
max_x = 0
max_y = 0
min_x = 999999999999999999
min_y = 999999999999999999
for k in contour:
x = k[0][0]
y = k[0][1]
if x > max_x:
max_x = x
if x < min_x:
min_x = x
if y > max_y:
max_y = y
if y < min_y:
min_y = y
med_x = (max_x + min_x) / 2
med_y = (max_y + min_y) / 2
return [med_x, med_y]
def average_variation(values):
""" Calcula a média de variação dos valores"""
variation = []
for i in range(len(values)):
if i == 0:
continue
variation.append(values[i] - values[i - 1])
return reduce(lambda x, y: x + y, variation, 1) / len(variation)
if __name__ == '__main__':
for (a, b, files) in walk(IMG_SRC_DIR):
for filename in files:
print(IMG_SRC_DIR + '/' + filename)
main(IMG_SRC_DIR + '/' + filename)