-
Notifications
You must be signed in to change notification settings - Fork 0
/
dados_analise_pos_manual.py
169 lines (154 loc) · 6.29 KB
/
dados_analise_pos_manual.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
import logging
from kivy.properties import ObjectProperty
from kivymd.uix.label import MDLabel
from kivymd.uix.screen import MDScreen
from kivy_garden.graph import Graph, LinePlot
logger = logging.getLogger(__file__)
logger.setLevel(logging.DEBUG)
handler = logging.StreamHandler()
handler.setLevel(logging.DEBUG)
logger.addHandler(handler)
class TelaDadosAnalise(MDScreen):
main_app = ObjectProperty()
right_eye_graph_widget = ObjectProperty()
left_eye_graph_widget = ObjectProperty()
def __init__(self, **kwargs):
super(TelaDadosAnalise, self).__init__(**kwargs)
# Linha "Data da Análise"
self.add_widget(
MDLabel(
text="Data da análise",
pos_hint={"x": 0.1, "center_y": 0.8},
)
)
self.label_data_analise = MDLabel(
text="DD/MM/YYYY HH:MI",
pos_hint={"x": 0.6, "center_y": 0.8},
)
self.add_widget(self.label_data_analise)
# Linha "Duração"
self.add_widget(
MDLabel(
text="Duração",
pos_hint={"x": 0.1, "center_y": 0.75},
)
)
self.label_duracao = MDLabel(
text="MI:SS",
pos_hint={"x": 0.6, "center_y": 0.75},
)
self.add_widget(self.label_duracao)
# Linha "Qt de Piscadas"
self.add_widget(
MDLabel(
text="Quantidade de Piscadas",
pos_hint={"x": 0.1, "center_y": 0.7},
)
)
self.label_qt_piscadas = MDLabel(
text="NN",
pos_hint={"x": 0.6, "center_y": 0.7},
)
self.add_widget(self.label_qt_piscadas)
# Linha "Frequência"
self.add_widget(
MDLabel(
text="Frequência das Piscadas",
pos_hint={"x": 0.1, "center_y": 0.65},
)
)
self.label_frequencia = MDLabel(
text="NN/min",
pos_hint={"x": 0.6, "center_y": 0.65},
)
self.add_widget(self.label_frequencia)
# Linha FPS
self.add_widget(
MDLabel(
text="FPS",
pos_hint={"x": 0.1, "center_y": 0.60},
)
)
self.label_fps = MDLabel(
text="fps",
pos_hint={"x": 0.6, "center_y": 0.60},
)
self.add_widget(self.label_fps)
# Labels dos gráficos
self.add_widget(
MDLabel(
text="D",
pos_hint={"x": 0.05, "center_y": 0.45},
size_hint=(None, 0.2),
font_style="H2",
)
)
self.add_widget(
MDLabel(
text="E",
pos_hint={"x": 0.05, "center_y": 0.15},
size_hint=(None, 0.2),
font_style="H2",
)
)
# Atualiza a tela com os dados da análise selecionada no histórico...
def on_pre_enter(self):
# logger.info("on_enter...")
self.label_data_analise.text = "{}".format(
self.main_app.dados_analise_selecionado.data_hora_analise.strftime("%d/%m/%Y %H:%M")
)
duracao = self.main_app.dados_analise_selecionado.get_duracao()
qt_piscadas_olho_direito, qt_piscadas_olho_esquerdo = self.main_app.dados_analise_selecionado.get_qt_piscadas()
frequencia_piscadas_olho_direito = qt_piscadas_olho_direito / duracao * 60 # Piscadas / min
frequencia_piscadas_olho_esquerdo = qt_piscadas_olho_esquerdo / duracao * 60 # Piscadas / min
self.label_duracao.text = "{:.2f}seg".format(duracao)
self.label_qt_piscadas.text = "D: {} - E: {}".format(qt_piscadas_olho_direito, qt_piscadas_olho_esquerdo)
self.label_frequencia.text = "D: {:.2f}/min - E: {:.2f}/min".format(frequencia_piscadas_olho_direito,
frequencia_piscadas_olho_esquerdo)
fps = len(self.main_app.dados_analise_selecionado.dados_frames) / duracao
self.label_fps.text = "{:.2f}fps".format(fps)
# Monta a lista de pontos a partir dos dados da análise
lista_pontos_olho_direito = []
lista_pontos_olho_esquerdo = []
x = 0
for dado_frame in self.main_app.dados_analise_selecionado.dados_frames:
lista_pontos_olho_direito.append((x, dado_frame.olho_direito_aberto))
lista_pontos_olho_esquerdo.append((x, dado_frame.olho_esquerdo_aberto))
x += 1
logger.info("lista_pontos olho direito: {}".format(lista_pontos_olho_direito))
logger.info("lista_pontos olho esquerdo: {}".format(lista_pontos_olho_esquerdo))
# Primeiro remove o gráfico atual, se ele estiver lá...
if self.right_eye_graph_widget is not None:
self.remove_widget(self.right_eye_graph_widget)
self.remove_widget(self.left_eye_graph_widget)
# Monta o gráfico - Olho direito
self.right_eye_graph_widget = Graph(
xlabel='X', ylabel='Y', x_ticks_minor=5,
x_ticks_major=25, y_ticks_major=1,
y_grid_label=True, x_grid_label=True, padding=5,
x_grid=True, y_grid=True, xmin=-0,
xmax=len(lista_pontos_olho_direito),
ymin=0, ymax=1,
pos_hint={"x": 0.1, "center_y": 0.4},
size_hint=(0.9, 0.3),
)
plot = LinePlot(color=[0, 1, 0, 1], line_width=4)
plot.points = lista_pontos_olho_direito
self.right_eye_graph_widget.add_plot(plot)
# Monta o gráfico - olho esquerdo
self.left_eye_graph_widget = Graph(
xlabel='X', ylabel='Y', x_ticks_minor=5,
x_ticks_major=25, y_ticks_major=1,
y_grid_label=True, x_grid_label=True, padding=5,
x_grid=True, y_grid=True, xmin=-0,
xmax=len(lista_pontos_olho_esquerdo),
ymin=0, ymax=1,
pos_hint={"x": 0.1, "center_y": 0.1},
size_hint=(0.9, 0.3),
)
plot = LinePlot(color=[0, 0, 1, 1], line_width=4)
plot.points = lista_pontos_olho_esquerdo
self.left_eye_graph_widget.add_plot(plot)
self.add_widget(self.right_eye_graph_widget)
self.add_widget(self.left_eye_graph_widget)
logger.info("duracao análise: {}".format(self.main_app.dados_analise_selecionado.get_duracao()))