-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
113 lines (96 loc) · 3.04 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
import numpy as np
from skimage import io, filters
import cv2
def extraccion(image):
##PRE PROCESAMIENTO
aux = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY) #Convertir a escala de grises
##FILTRACION
aux = cv2.GaussianBlur(aux, (3, 3), 0) #Aplicar filtro gaussiano
aux = filters.sobel(aux) #Aplicar filtro Sobel o Laplaciano
##EXTRACCION DE RASGOS
hu = cv2.HuMoments(cv2.moments(aux)).flatten()
##ANALISIS DE LAS CARACTERISTICAS -> PARA MOMENTOS DE HU
return aux, [hu[0], hu[1], hu[3]]
#Analisis de la base de datos (Train)
grapeWhite = io.ImageCollection('./Imagenes/Train/grapeWhite/*.png:./Imagenes/Train/grapeWhite/*.jpg')
grapeBlue = io.ImageCollection('./Imagenes/Train/grapeBlue/*.png:./Imagenes/Train/grapeBlue/*.jpg')
grapePink = io.ImageCollection('./Imagenes/Train/grapePink/*.png:./Imagenes/Train/grapePink/*.jpg')
#Elemento para cada tipo de uva
class Elemento:
def __init__(self):
self.pieza = None
self.image = None
self.caracteristica = []
self.distancia = 0
#Analisis de datos
datos = []
i = 0
# Analisis de grapeWhite
iter = 0
for objeto in grapeWhite:
datos.append(Elemento())
datos[i].pieza = 'grapeWhite'
datos[i].image, datos[i].caracteristica = extraccion(objeto)
i += 1
iter += 1
print("grapeWhite OK")
# Analisis de grapeBlues
iter = 0
for objeto in grapeBlue:
datos.append(Elemento())
datos[i].pieza = 'grapeBlue'
datos[i].image, datos[i].caracteristica = extraccion(objeto)
i += 1
iter += 1
print("grapeBlues OK")
# Analisis de grapePink
iter = 0
for objeto in grapePink:
datos.append(Elemento())
datos[i].pieza = 'grapePink'
datos[i].image, datos[i].caracteristica = extraccion(objeto)
i += 1
iter += 1
print("grapePink OK")
print("Analisis completo de la base de datos de Train")
print("Cantidad de imagenes analizadas: ")
print(len(datos))
# Elemento a evaluar
test = Elemento()
numero = input("Introduce numero de la foto: ")
nombre = './Imagenes/Test/photo'+str(numero)+'.jpg'
image = io.imread(nombre)
test.image, test.caracteristica = extraccion(image)
test.pieza = 'grapeBlue' # label inicial
#KNN
print("\nInicializacion KNN")
i = 0
sum = 0
for ft in datos[0].caracteristica:
sum = sum + np.power(np.abs(test.caracteristica[i] - ft), 2)
i += 1
d = np.sqrt(sum)
for element in datos:
sum = 0
i = 0
for ft in (element.caracteristica):
sum = sum + np.power(np.abs((test.caracteristica[i]) - ft), 2)
i += 1
element.distancia = np.sqrt(sum)
if (sum < d):
d = sum
test.pieza = element.pieza
# Algoritmo de ordenamiento de burbuja-> lo elegi porque es bastante estable
swap = True
while (swap):
swap = False
for i in range(1, len(datos)-1) :
if (datos[i-1].distancia > datos[i].distancia):
aux = datos[i]
datos[i] = datos[i-1]
datos[i-1] = aux
swap = True
print("\nPredicciones para KNN con K=2: ")
k = 2
for i in range(k):
print(datos[i].pieza)