-
Notifications
You must be signed in to change notification settings - Fork 0
/
pak_unior_stable_mpl.py
256 lines (221 loc) · 8.42 KB
/
pak_unior_stable_mpl.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
import matplotlib.pyplot as plt
import serial.tools.list_ports
from struct import unpack
import numpy as np
from time import process_time
from collections import deque
from scipy.fft import rfft, rfftfreq
from numpy import array, sign, zeros
from scipy.interpolate import interp1d
import random
import keyboard
std_speed = 57600 # Скорость COM порта
com_port = 'COM6'
paritys = 'N' # Бит четности
stopbitss = 1 # Количество стоп-бит
bite_size = 8 # Биты данных
t_out = 1 # Таймаут в секундах, должен быть больше 1с
flag1 = 0 # Флаг для остановки программы, устанавливается в 1, если найдена сигнатура
reading_bytes = 10 # Количество байт для чтения после открытия порта
keyword = b'\x00\x00\x00' # !Сигнатура для поиска
cmd = 0xff
EEG = 0
NOMBER_OF_VALUES = 200
LABELS = ['EEG', 'EEG_CURV', 'FURIE(EEG)', 'FURIE(EEG_CURV)', 'FURIE(EEG)_CURV', '(FURIE(EEG)_m_FURIE(EEG_CURV))_CURV']
plt.ion()
time_start = process_time()
piSerial = serial.Serial()
print(f'S:- Port:{piSerial.is_open}')
piSerial.close()
print(f'S:- Port:{piSerial.is_open}')
def unior_begin(channel):
"""Setup COM-port and connect to PAK UNIOR"""
piSerial.baudrate = std_speed
piSerial.port = com_port
piSerial.timeout = 1
piSerial.write_timeout = 1
piSerial.open()
print(f'|PORT:{com_port}| OPENED')
piSerial.write(cmd)
print(f'|WRITE| {cmd}')
print('|WHAITING...', end='')
status = 0
while True:
if keyboard.is_pressed('q'): # Enter:
piSerial.close()
break
s = piSerial.readline()
print(end='.')
if s == b'OK\n':
print('CONNECTED')
piSerial.write((str(channel) + '\r\n\0').encode()) # send channels mask
print('|WHAITING DATA...')
status = 1
break
return status
def unior_read(channel):
"""Read data from PAK UNIOR"""
if piSerial.inWaiting() > 0:
piSerial.flushInput()
piSerial.write((str(channel) + '\r\n\0').encode())
beg_time = process_time()
while piSerial.inWaiting() < 4:
if process_time() - beg_time > 1:
return 0
try:
tmp = unpack('<f', piSerial.read(4))[0]
if tmp != tmp:
return 0
else:
return float("%.2f" % tmp)
except ValueError:
return 0
def curve_on(data):
"""Curved on array of smth values"""
s = array(data) # vector of values.
q_u = zeros(s.shape)
q_l = zeros(s.shape)
u_x = [0, ]
u_y = [s[0], ]
l_x = [0, ]
l_y = [s[0], ]
for k in range(1, len(s) - 1):
if (sign(s[k] - s[k - 1]) == 1) and (sign(s[k] - s[k + 1]) == 1):
u_x.append(k)
u_y.append(s[k])
if (sign(s[k] - s[k - 1]) == -1) and ((sign(s[k] - s[k + 1])) == -1):
l_x.append(k)
l_y.append(s[k])
u_x.append(len(s) - 1)
u_y.append(s[-1])
l_x.append(len(s) - 1)
l_y.append(s[-1])
u_p = interp1d(u_x, u_y, kind='cubic', bounds_error=False, fill_value=0.0)
l_p = interp1d(l_x, l_y, kind='cubic', bounds_error=False, fill_value=0.0)
for k in range(0, len(s)):
q_u[k] = u_p(k) # up
q_l[k] = l_p(k) # down
return q_u
class DynamicUpdate:
"""Class for dynamic updating plot"""
# If we know the x range use ->
# min_x = process_time()
# max_x = process_time() + 30
def __init__(self):
self.key = 0
self.status = 0
self.update_value = 0
self.figure, self.ax = plt.subplots(nrows=3, ncols=2, figsize=(20, 20))
self.figure.set_label('EEG')
self.lines = []
self.activate_value = 400
self.activate_diapason = [9, 14]
def set_alfa_line(self, data):
"""Set up line of barier of alfa ritms"""
y = [self.activate_value for _ in data]
diapason_x = [0, 0]
for j, val in enumerate(data):
if (val > self.activate_diapason[0]) and (diapason_x[0] == 0):
diapason_x[0] = j
if (val > self.activate_diapason[1]) and (diapason_x[1] == 0):
diapason_x[1] = j
diapason = range(diapason_x[0], diapason_x[1])
for j in diapason:
y[j] = self.activate_value + 100
return y
def on_launch(self):
"""Set up plot"""
for i, axe in enumerate(self.ax.ravel()):
line, = axe.plot([], [], 'b-', label=LABELS[i])
self.lines.append(line)
if i == 5:
x = rfftfreq(NOMBER_OF_VALUES, 1 / 60)
x_f = [float("%.2f" % float(j)) for j in x]
line, = axe.plot(x_f, self.set_alfa_line(x_f), 'r--', label='ACTIVATE_VALUE')
self.lines.append(line)
axe.grid()
# Autoscale on unknown axis and known lims on the other
# self.ax.set_autoscaley_on(True)
# self.ax.set_xlim(self.min_x, self.max_x)
def on_running(self, xdata, ydata):
# Update data (with the new _and_ the old points)
# EEG####################################################
self.lines[0].set_xdata(xdata)
self.lines[0].set_ydata(ydata)
if self.update_value == 0:
self.ax.ravel()[0].relim()
self.ax.ravel()[0].autoscale_view(True, True, True)
self.ax.ravel()[0].legend()
else:
# EEG_CURVED#############################################
yf = rfft(ydata)
xf = rfftfreq(NOMBER_OF_VALUES, 1 / 60)
xf_f = [float("%.2f" % float(i)) for i in xf]
yf_f = [float("%.2f" % float(i)) for i in yf]
for k in range(0, 3):
yf_f[k] = 0
self.lines[2].set_xdata(xf_f)
self.lines[2].set_ydata(yf_f)
# FURIE(EEG)#############################################
yf_curved = curve_on(yf_f)
self.lines[4].set_xdata(xf_f)
self.lines[4].set_ydata(yf_curved)
# FURIE(EEG_CURVED)######################################
ydata_curved = curve_on(ydata)
self.lines[1].set_xdata(xdata)
self.lines[1].set_ydata(ydata_curved)
# FURIE(EEG)_CURVED######################################
yf2 = rfft(ydata_curved)
yf_f2 = [float("%.2f" % float(i)) for i in yf2]
for k in range(0, 3):
yf_f2[k] = 0
self.lines[3].set_xdata(xf_f)
self.lines[3].set_ydata(yf_f2)
# (FURIE(EEG)_m_FURIE(EEG_CURVED))_CURVED###############
yf_m = []
for y1, y2 in zip(yf_f, yf_f2):
y_ = abs(y1) - abs(y2)
if y_ > 0:
yf_m.append(y_)
else:
yf_m.append(0.0)
yf_m_curved = curve_on(yf_m)
# yf_m_curved = curve_on(yf_m_curved)
self.lines[5].set_xdata(xf_f)
self.lines[5].set_ydata(yf_m_curved)
self.activate_value = np.mean(yf_m_curved) + 50
self.lines[6].set_xdata(xf_f)
self.lines[6].set_ydata(self.set_alfa_line(xf_f))
# Need both of these in order to rescale
for i, axe in enumerate(self.ax.ravel()):
axe.relim()
axe.autoscale_view(True, True, True)
axe.legend()
self.update_value = 0
# We need to draw *and* flush
self.figure.canvas.draw()
self.figure.canvas.flush_events()
def __call__(self):
"""Main"""
self.on_launch()
xdata = deque([0.0 for _ in range(0, NOMBER_OF_VALUES)], maxlen=NOMBER_OF_VALUES)
ydata = deque([0.0 for _ in range(0, NOMBER_OF_VALUES)], maxlen=NOMBER_OF_VALUES)
self.status = unior_begin(EEG)
while self.status:
if keyboard.is_pressed('q'): # Enter:
piSerial.close()
break
data_r = unior_read(0)
if abs(data_r) > 100:
data_r = random.randint(0, 30)
xdata.append(float("%.2f" % process_time()))
ydata.append(data_r)
if self.key == NOMBER_OF_VALUES:
self.update_value = 1
self.on_running(xdata, ydata)
self.key = 0
self.key = self.key + 1
print(f'TIME:{xdata[-1]} VAL:{ydata[-1]}')
return xdata, ydata
d = DynamicUpdate()
d()