-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterface.py
514 lines (448 loc) · 20.7 KB
/
Interface.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
import wx
import cv2
import cv2.cv as cv
import wx.lib.platebtn as platebtn
from wx.lib.buttons import GenBitmapButton
import threading
from string import split
import time
import sys
import glob, os
from string import split
from time import sleep
from PIL import Image
from os.path import basename
import pyfaces
from pyfaces import pyfaces
from openpyxl import Workbook
import xlsxwriter
from openpyxl.chart.label import DataLabelList
import wx.grid as gridlib
from openpyxl.chart import (
PieChart,
ProjectedPieChart,
Reference
)
from imutils.video import VideoStream
from os import getcwd, listdir
from os.path import abspath
class MainWindow(wx.Panel):#clase de la interfaz principal
def __init__(self, parent, capture):
wx.Panel.__init__(self, parent)
self.panelResultados = PanelResultados(self)
mainSizer = wx.BoxSizer(wx.VERTICAL)
self.result = None
self.inicioSesion = None
#parent.EVT_CLOSE(self, self.OnCloseWindow)
font = wx.Font(18, wx.MODERN, wx.NORMAL, wx.BOLD)
mainSizer.AddSpacer(20)
#Label
self.label1 = wx.StaticText(self,label="Emotion Experience")
self.label1.SetFont(font)
labelBoxSizer1 = wx.BoxSizer(wx.HORIZONTAL)
labelBoxSizer1.Add(self.label1, 0, wx.LEFT, 200)
mainSizer.Add(labelBoxSizer1,0)
mainSizer.AddSpacer(10)
# video
self.videoWarper = wx.StaticBox(self, label="Video",size=(640,480))
videoBoxSizer = wx.StaticBoxSizer(self.videoWarper, wx.VERTICAL)
videoFrame = wx.Panel(self, -1,size=(640,440))
self.cap = ShowCapture(videoFrame, capture)
self.cap.estado = "Listo para comenzar!"
videoBoxSizer.Add(videoFrame,0)
mainSizer.Add(videoBoxSizer,0)
self.panelPorcentajes()
#mainSizer.Add(estadoBoxSizer,0)
mainSizer.AddSpacer(20)
#Label
label = wx.StaticText(self,label="Establecer tiempo")
labelwc = wx.StaticText(self,label="Dispositivo de captura")
labelBoxSizer = wx.BoxSizer(wx.HORIZONTAL)
labelBoxSizer.Add(label, 0, wx.LEFT,100)
labelBoxSizer.Add(labelwc, 0, wx.LEFT,100)
mainSizer.Add(labelBoxSizer,0)
mainSizer.AddSpacer(5)
#Textbox
textBoxSizer = wx.BoxSizer(wx.HORIZONTAL)
self.inputBox = wx.TextCtrl(self)
label2 = wx.StaticText(self,label="Seg")
combobox = wx.ComboBox(self, -1, choices=webcams, value='Webcam 0', style=wx.CB_DROPDOWN, size=[150,50])
combobox.Bind(wx.EVT_COMBOBOX, self.webcamSelect)
textBoxSizer.Add(self.inputBox, 0, wx.LEFT , 30)
textBoxSizer.Add(label2, 0, wx.LEFT, 10)
textBoxSizer.Add(combobox, 0, wx.LEFT , 90)
textBoxSizer.SetDimension(0,0,640,1200)
mainSizer.Add(textBoxSizer,0)
#mainSizer.AddSpacer(2)
# button sesion
buttonBoxSizer = wx.BoxSizer(wx.HORIZONTAL)
b_sesion = wx.Button(self, wx.ID_CLOSE, "Comenzar")
b_sesion.Bind(wx.EVT_BUTTON, self.sesion)
buttonBoxSizer.Add(b_sesion,0, wx.LEFT , 30)
#button para iniciar reconocimiento
b_procesar = wx.Button(self, wx.ID_CLOSE, "Procesar")
b_procesar.Bind(wx.EVT_BUTTON, self.reconocerEmociones)
buttonBoxSizer.Add(b_procesar,0, wx.LEFT, 30)
# button resultados
b_resultados = wx.Button(self, wx.ID_CLOSE, "Generar Informe")
b_resultados.Bind(wx.EVT_BUTTON, self.generarInforme)
buttonBoxSizer.Add(b_resultados,0, wx.LEFT, 30)
# button escoger video de la emocion a evaluar
b_videoSelected = wx.Button(self, wx.ID_CLOSE, "Escoger video")
b_videoSelected.Bind(wx.EVT_BUTTON, self.seleccionarVideo)
buttonBoxSizer.Add(b_videoSelected,0, wx.LEFT , 30)
# button para cerrar aplicacion
m_close1 = wx.Button(self, wx.ID_CLOSE, "Cerrar")
m_close1.Bind(wx.EVT_BUTTON, self.OnClose)
buttonBoxSizer.Add(m_close1,0, wx.LEFT, 30)
mainSizer.Add(buttonBoxSizer,0)
mainSizer.AddSpacer(10)
parent.Centre()
self.Show()
self.SetSizerAndFit(mainSizer)
self.porcentajeFeliz = 0
self.porcentajeNeutro = 0
self.porcentajeMolesto = 0
self.felicidad = 0
self.neutralidad = 0
self.molestia = 0
def OnClose(self, event): #Funcion que controla el boton de cerrar
dlg = wx.MessageDialog(self,
"Realmente desea salir de la aplicacion?",
"Confirm Exit", wx.OK|wx.CANCEL|wx.ICON_QUESTION)
self.result = dlg.ShowModal()
if self.result == wx.ID_OK & cv2.waitKey(1):
#dlg.Destroy()
self.Close()
frame.Close()
self.Destroy()
#if cv2.waitKey(1):
sys.exit()
def webcamSelect(self, event):
indexWebcam = event.GetSelection()
self.cap.capture = cv2.VideoCapture(int(indexWebcam))
def panelPorcentajes(self):
""""""
self.framer = wx.Frame(None,-1,'Porcentaje de emociones',size=(420, 320))
self.panelsito = PanelResultados(self.framer)
def seleccionarVideo(self, event):
#self.dlgSelectedVideo = wx.DirDialog(self, "Selecciona un video para evaluar las emociones (Alegria - Disgusto - Neutro)",
# style=wx.DD_DEFAULT_STYLE
# )
self.cap.estadoInterfaz.SetLabel("Esta funcionalidad aun no esta implementada")
def sesion(self, event): #Funcion que se llama para iniciar una sesion de captura de emociones
self.cap.emociones = []
self.cap.tiempos = []
self.cap.distancias = []
self.inicioSesion = False
tiempo = None
direccion = None
tiempo = self.inputBox.GetValue()
if(tiempo != None and tiempo.isdigit()): # valida si el valor indicado es numero
# start the app
self.dlg2 = wx.DirDialog(self, "Escoge la carpeta donde se almacenaran las caras:",
style=wx.DD_DEFAULT_STYLE
)
if self.dlg2.ShowModal() == wx.ID_OK:
direccion = self.dlg2.GetPath()
self.dlg2.Destroy()
if direccion != None:
self.cap.direccion = direccion
self.threads = []
self.cap.tiempoLimite = int(tiempo)
self.cap.inSesion = True
t = threading.Timer(float(tiempo), self.cap.timersito)#Setea iniciar el timer segun el tiempo puesto por el usuario
t.start()
self.cap.conTime = 0
self.cap.numberImage = 0
self.x = threading.Thread(target=self.cap.rec)
self.threads.append(self.x)
self.x.start()
self.inicioSesion = True
else:
print("no digito un numero");
def reconocerEmociones(self, event):
self.dlg3 = wx.DirDialog(self, "Selecciona la carpeta de rostros a evaluar:",
style=wx.DD_DEFAULT_STYLE
)
if self.dlg3.ShowModal() == wx.ID_OK:
direccion = self.dlg3.GetPath()
self.dlg3.Destroy()
self.ruta = direccion
self.list = listdir(self.ruta)
self.arrayDireccionImage = []
for value in self.list:
self.arrayDireccionImage.append(direccion+"/"+value)
self.cap.estadoInterfaz.SetLabel("Reconociendo... puede demorar")
directorioAlegria = os.path.abspath('./bd/Alegria')
directorioDisgusto = os.path.abspath('./bd/Disgusto')
directorioNeutro = os.path.abspath('./bd/Neutro')
self.pyf=pyfaces.PyFaces(self.arrayDireccionImage,directorioAlegria,directorioNeutro,directorioDisgusto,int(4),float(0.3))
self.emociones = self.pyf.arregloEmociones#se agrega a la lista de emociones la emocion que acaba de ser detectada
self.distancias = self.pyf.arregloDistancias#se agrega a la lista de distancias la distancia que corresponde a la emocion detectada
print(self.emociones)
print(self.distancias)
self.cambioEstadoVideo = False
self.felicidad = self.emociones.count("Alegria")#cuenta cuantas veces se encuentra feliz en la lista
self.neutralidad = self.emociones.count("Neutro")#cuenta cuantas veces se encuentra neutro en la lista
self.molestia = self.emociones.count("Disgusto")#cuenta cuantas veces se encuentra molesto en la lista
#se imprimen los resultados de conteo
print "Resultados"
print "Alegria se presento "+str(self.felicidad)+" veces"
print "Neutralidad se presento "+str(self.neutralidad)+" veces"
print "Disgusto se presento "+str(self.molestia)+" veces"
#se sacan los porcentajes de cada emocion segun el numero de caras extraidas durante el proceso
self.total = self.felicidad + self.neutralidad + self.molestia
if self.total != 0:
self.porcentajeFeliz = self.felicidad*100/self.total
self.porcentajeNeutro = self.neutralidad*100/self.total
self.porcentajeMolesto = self.molestia*100/self.total
else:
self.porcentajeFeliz = 0
self.porcentajeNeutro = 0
self.porcentajeMolesto = 0
#se imprimen los porcentajes
print "Porcentajes emociones"
print "Felicidad "+str(self.porcentajeFeliz)+"%"
print "Neutralidad "+str(self.porcentajeNeutro)+"%"
print "Molestia "+str(self.porcentajeMolesto)+"%"
print "Porcentaje de error"
self.distanciaPromedio = sum(self.distancias)/len(self.distancias)
self.porcentajeError = self.distanciaPromedio
print self.porcentajeError,"%"
self.cap.estadoInterfaz.SetLabel("Reconocimiento exitoso, ya puede generar el informe")
def generarInforme(self, event):
self.book = Workbook()
self.panelsito.grid.SetCellValue(1,1,str(self.porcentajeFeliz)+'%')
self.panelsito.grid.SetCellValue(2,1,str(self.porcentajeMolesto)+'%')
self.panelsito.grid.SetCellValue(3,1,str(self.porcentajeNeutro)+'%')
self.framer.Show()
self.sheet = self.book.active
self.sheet.title = 'Emociones-Tiempo'
self.sheet2 = self.book.create_sheet()
self.sheet2.title = 'Porcentaje'
self.sheet3 = self.book.create_sheet()
self.sheet3.title = 'Informacion General'
rows = []
rowsT = []
rowsE = []
varA = 'A'
varB = 'B'
# Hoja de excel Emociones/Tiempo
self.sheet['A1'] = 'Tiempo (SEG)'
self.sheet['B1'] = 'Nombre Emociones'
for i in range(len(self.cap.tiempos)):
varA = varA + str(i + 2)
rowsT = int(self.cap.tiempos[i])
self.sheet[varA] = rowsT
varA = 'A'
for e in range(len(self.cap.emociones)):
varB = varB + str(e + 2)
rowsE = self.cap.emociones[e]
self.sheet[varB] = rowsE
varB = 'B'
# Hoja de excel Porcentaje
rowsR = []
rowsR = [
('Emociones', 'Repeticiones', 'Porcentaje'),
('Alegria', int(self.felicidad), int(self.porcentajeFeliz)),
('Disgusto', int(self.molestia), int(self.porcentajeMolesto)),
('Neutro', int(self.neutralidad), int(self.porcentajeNeutro)),
]
for row in rowsR:
self.sheet2.append(row)
rowI = []
rowI = [
('Tasa de error', 'N. Imagenes', 'Distancia Promedio', 'Duracion de la sesion'),
(self.porcentajeError, self.total, self.distanciaPromedio, str(self.inputBox.GetValue()) + ' s'),
]
for row in rowI:
self.sheet3.append(row)
data = Reference(self.sheet2, min_col=2, min_row=1, max_row=5, max_col=4)
cats = Reference(self.sheet2, min_col=1, min_row=2, max_row=5)
chart = PieChart()
chart.add_data(data, titles_from_data=True)
chart.set_categories(cats)
chart.dataLabels = DataLabelList()
chart.dataLabels.showPercent = True
chart.title = "Porcentaje de emociones reconocidas"
self.sheet2.add_chart(chart, "D7")
self.book.save("./Informes/InformeEmotionExperience"+"_"+time.strftime("%d-%m-%Y")+"_"+time.strftime("%H-%M-%S")+".xlsx")
self.cap.estadoInterfaz.SetLabel("El informe ha sido generado!, esperando nuevas instrucciones")
class PanelResultados(wx.Panel):
def __init__(self, parent):
"""Constructor"""
wx.Panel.__init__(self, parent=parent)
self.pfeliz = '0'
self.pdisgusto = '0'
self.pneutro = '0'
self.grid = gridlib.Grid(self)
self.grid.CreateGrid(125,122)
self.grid.SetDefaultColSize(160)
self.grid.SetDefaultRowSize(50)
self.grid.SetDefaultCellAlignment(wx.ALIGN_CENTRE, wx.ALIGN_CENTRE)
self.grid.SetCellValue(0,0,'Emocion')
self.grid.SetCellValue(0,1,'Porcentaje')
self.grid.SetCellValue(1,0,'Alegria')
self.grid.SetCellValue(2,0,'Disgusto')
self.grid.SetCellValue(3,0,'Neutro')
self.grid.SetCellValue(1,1,self.pfeliz+'%')
self.grid.SetCellValue(2,1,self.pdisgusto+'%')
self.grid.SetCellValue(3,1,self.pneutro+'%')
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.grid, 0, wx.EXPAND)
self.SetSizer(sizer)
class ShowCapture(wx.Panel):#clase en donde se setea parametros de video y la captura de caras
def __init__(self, parent, capture, fps=24):
self.testVar = "FUNCIONOENSTOY EN SHOWWWW"
self.direccionImagenes = [] #almacena las direcciones de las caras extraidas y preprocesadas
wx.Panel.__init__(self, parent, wx.ID_ANY, (0,0), (640,480))
self.emocion = None
self.faces = None
self.direccion = None
self.imgFace = None
self.time = 0
self.conTime = 0
self.numberImage = 0
self.cambioEstado = False
self.cx = None
self.cy = None
self.cw = None
self.ch = None
self.wf = None # final width
self.x = None
self.y = None
self.w = None
self.h = None
self.emociones = [] #emociones que son detectadas por cada imagen extraida
self.distancias = [] #las distancias registradas por cada comparacion, para sacar porcentaje de error
self.tiempos = []#los tiempos en que se produce cada imagen
self.direccionCascade = "./haarcascade_frontalface_default.xml"
self.out = None
self.cambioEstadoVideo = False
self.videonumber = 0
self.capture = capture
ret, frame = self.capture.read()
height, width = frame.shape[:2]
parent.SetSize((width, height))
self.frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
self.bmp = wx.BitmapFromBuffer(width, height, self.frame)
self.timer = wx.Timer(self)
self.timer.Start(1000./fps)
self.Bind(wx.EVT_PAINT, self.OnPaint)
self.Bind(wx.EVT_TIMER, self.NextFrame)
#Estado
font1 = wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL)
self.estadoInterfaz = wx.StaticText(self, wx.ID_ANY, label="Listo para iniciar, seleccione una opcion", style=wx.ALIGN_CENTER)
self.estadoInterfaz.SetFont(font1)
estadoBoxSizer = wx.BoxSizer(wx.HORIZONTAL)
estadoBoxSizer.Add(self.estadoInterfaz,0,wx.LEFT,10)
print self.cambioEstadoVideo
self.out = cv2.VideoWriter('./video/output'+str(self.videonumber)+time.strftime("%d-%m-%Y")+'.avi', -1, 8, (640,480))
def OnPaint(self, evt):
dc = wx.BufferedPaintDC(self)
dc.DrawBitmap(self.bmp, 0, 0)
def NextFrame(self, event):
ret, frame = self.capture.read()
if self.cambioEstadoVideo == True:
if self.out != None:
if ret==True:
# write the flipped frame
self.out.write(frame)
#cv2.imshow('frame',frame)
# Release everything if job is finished
#self.capture.release()
#self.out.release()
#cv2.destroyAllWindows()
if ret:
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)
faceCascade = cv2.CascadeClassifier(self.direccionCascade)
self.gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
self.faces = faceCascade.detectMultiScale(
frame,
scaleFactor=1.1,
minNeighbors=5,
minSize=(30, 30),
flags=cv2.cv.CV_HAAR_SCALE_IMAGE
)
# Draw a rectangle around the faces
for (x, y, w, h) in self.faces:
cv2.rectangle(frame, (x, y), (x+w, y+h), (0, 0, 0), 1)
cv2.putText(frame,self.emocion, (x,y), cv2.FONT_HERSHEY_SIMPLEX, 0.4, 255)
self.cx = x
self.cy = y
self.cw = w
self.ch = h
self.bmp.CopyFromBuffer(frame)
self.Refresh()
def rec(self): #extrae cara en segundo plano
start = time.time()
self.cambioEstado = True
self.estadoInterfaz.SetLabel("Grabando....")
self.cambioEstadoVideo = True
self.videonumber += 1
#print self.out
while self.inSesion:#mientras la sesion se encuentre verdadera el programa estara capturando y extrayendo caras
if self.cx != None:#si el valor de x del rectangulo que se dibuja en la cara existe o es diferente a nulo significa que el sistema ha detectado un rostro
self.cropPhoto()#funcion que se encarga de extraer la cara, preprocesarla y almacenarla en disco
self.direccionImagenes.append(self.nameFile)#se agrega la direccion de la imagen de la cara a la lista de caras extraidas
self.tiempos.append(round(time.time()-start))
self.numberImage = self.numberImage + 1 #numberImage se encarga de que cada imagen de rostro tenga un nombre distinto al anterior
else:#si no existe ningun rostro detectado, no se realiza nada, se espera a que aparezca uno en camara
self.cx = None
#se limpian los valores que corresponden al rectangulo, con el fin de evitar errores
self.cx = None
self.cy = None
self.cw = None
self.ch = None
self.conTime = self.conTime+1
print self.tiempos
print self.conTime
sleep(1)#sleep se encarga de parar este loop por cuantos segundos se requiera, esto define cuantos rostros se extraen segun el tiempo que se asigne
if self.inSesion == False:#empieza la comparacion de las caras extraidas con la base de datos
print("se acabo la captura, empieza el proceso eigenfaces")
self.estadoInterfaz.SetLabel("Grabacion finalizada....")
self.cambioEstadoVideo = False
if self.cambioEstadoVideo == False:
#self.capture.release()
self.out.release()
cv2.destroyAllWindows()
print "Termino el procesamiento"
self.out = cv2.VideoWriter('./video/output'+str(self.videonumber)+'.avi', -1, 8, (640,480))
self.cambioEstadoVideo = True
def cropPhoto(self): #recorta cara y almacena
#se extrae la seccion de la imagen que corresponde a la cara detectada
self.imgFace = self.gray[self.cy:self.cy+self.ch, self.cx:self.cx+self.cw]
#se setea el size deseado
size = 125, 125
#se realiza el reescalado de la imagen
resize = cv2.resize(self.imgFace, size, interpolation = cv2.INTER_AREA);
#se setea la direccion y nombre de la imagen que contiene la cara preprocesada
self.nameFile = self.direccion + "/emotional" + str(self.numberImage) + ".png"
#se almacena en disco la imagen de la cara resultante
imgf = cv2.imwrite(self.nameFile, resize)
#metodo que es llamado segun el tiempo suministrado por el usuario en la interfaz
def timersito(self):
self.inSesion = False#cuando la sesion es falsa el programa deja de capturar y guardar las caras y empieza el proceso de comparacion con la bd
index = 0
capture = cv2.VideoCapture(index)
webcams = []
while True:
ret, frame = capture.read(0)
if ret:
webcams.append('Webcam '+str(index))
index = index+1
capture = cv2.VideoCapture(index)
else:
capture = cv2.VideoCapture(0)
capture.set(cv.CV_CAP_PROP_FRAME_WIDTH, 640)
capture.set(cv.CV_CAP_PROP_FRAME_HEIGHT, 480)
break
print(webcams)
capture.set(cv.CV_CAP_PROP_FRAME_WIDTH, 640)
capture.set(cv.CV_CAP_PROP_FRAME_HEIGHT, 480)
app = wx.App(False)
frame = wx.Frame(None,-1,'Emotion Experience',size=(660, 730))
panel = MainWindow(frame,capture)
frame.Show()
app.MainLoop()