-
Notifications
You must be signed in to change notification settings - Fork 367
/
Copy pathmplot_thread.py
495 lines (420 loc) · 18.9 KB
/
mplot_thread.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
"""
* This file is part of PYSLAM
*
* Copyright (C) 2016-present Luigi Freda <luigi dot freda at gmail dot com>
*
* PYSLAM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PYSLAM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PYSLAM. If not, see <http://www.gnu.org/licenses/>.
"""
import sys
import time
import os
import numpy as np
import platform
import matplotlib
#matplotlib.use('Agg') # running non-interactive mode
import matplotlib.pyplot as plt
import logging
#import multiprocessing as mp
import torch.multiprocessing as mp
from utils_sys import Logging, locally_configure_qt_environment
from utils_mp import MultiprocessingManager
kPlotSleep = 0.04
kVerbose = False
kDebugAndPrintToFile = True
kSetDaemon = True # from https://docs.python.org/3/library/threading.html#threading.Thread.daemon
# The entire Python program exits when no alive non-daemon threads are left.
kUseFigCanvasDrawIdle = True
kScriptPath = os.path.realpath(__file__)
kScriptFolder = os.path.dirname(kScriptPath)
kRootFolder = kScriptFolder
kLogsFolder = kRootFolder + '/../logs'
if kVerbose and kDebugAndPrintToFile:
# redirect the prints of local mapping to the file logs/local_mapping.log
# you can watch the output in separate shell by running:
# $ tail -f logs/mplot_thread.log
logging_file=kLogsFolder + '/mplot_thread.log'
local_logger = Logging.setup_file_logger('mplot_thread_logger', logging_file, formatter=Logging.simple_log_formatter)
def print(*args, **kwargs):
message = ' '.join(str(arg) for arg in args) # Convert all arguments to strings and join with spaces
return local_logger.info(message, **kwargs)
kUsePlotPause = not kUseFigCanvasDrawIdle # this should be set True under macOS
if platform.system() == 'Darwin':
kUsePlotPause = True
if kUseFigCanvasDrawIdle and platform.system() != 'Darwin':
plt.ion()
# NOTE: Here we are using processes instead of threads.
# The file name `mplot_thread.py` is still here since the classes are used as parallel drawing threads.
class FigureNum:
figure_num = 0
@staticmethod
def getFigureNum():
FigureNum.figure_num += 1
return FigureNum.figure_num
# empty a queue before exiting from the consumer thread/process for safety
def empty_queue(queue):
while not queue.empty():
try:
queue.get(timeout=0.001)
except:
pass
# global lock for drawing with matplotlib
class SharedSingletonLock:
_instance = None # Placeholder for singleton instance
def __new__(cls):
if cls._instance is None:
cls._instance = super(SharedSingletonLock, cls).__new__(cls)
cls._instance.lock = mp.Lock() # Create the lock only once
return cls._instance
@property
def get_lock(self):
return self.lock
# use mplotlib figure to draw in 2d dynamic data
class Mplot2d:
def __init__(self, xlabel='', ylabel='', title=''):
self.xlabel = xlabel
self.ylabel = ylabel
self.title = title
self.data = None
self.got_data = False
self.handle_map = {}
self.fig = None
self.axis_computed = False
self.xlim = [float("inf"),float("-inf")]
self.ylim = [float("inf"),float("-inf")]
self.xmin = float("inf")
self.xmax = float("-inf")
self.ymin = float("inf")
self.ymax = float("-inf")
self.key = mp.Value('i',0)
self.is_running = mp.Value('i',1)
# NOTE: We use the MultiprocessingManager to manage queues and avoid pickling problems with multiprocessing.
self.mp_manager = MultiprocessingManager()
self.queue = self.mp_manager.Queue()
self.key_queue = self.mp_manager.Queue()
self.figure_num = mp.Value('i', int(FigureNum.getFigureNum()))
print(f'Mplot2d: starting the process on figure: {self.figure_num.value}')
self.lock = SharedSingletonLock().get_lock
self.initialized = False # New flag to track figure initialization
args = (self.figure_num,self.queue,self.lock,self.key,self.is_running,self.key_queue,)
self.process = mp.Process(target=self.run, args=args)
#self.process.daemon = kSetDaemon
self.process.start()
def quit(self):
print(f'Mplot2d {self.title} closing...')
self.is_running.value = 0
self.process.join(timeout=5)
if self.process.is_alive():
print(f'Warning: Mplot2d {self.title} process did not terminate in time, forced kill.')
self.process.terminate()
print(f'Mplot2d {self.title} closed')
def init(self, figure_num, lock):
lock.acquire()
locally_configure_qt_environment()
if kVerbose:
print(mp.current_process().name,"initializing...")
self.fig = plt.figure(figure_num)
if kUseFigCanvasDrawIdle:
self.fig.canvas.draw_idle()
self.fig.canvas.mpl_connect('key_press_event', self.on_key_press)
self.fig.canvas.mpl_connect('key_release_event', self.on_key_release)
self.fig.canvas.mpl_connect('close_event', self.on_close)
#self.ax = self.fig.gca(projection='3d')
#self.ax = self.fig.gca()
self.ax = self.fig.add_subplot(111)
if self.title != '':
self.ax.set_title(self.title)
self.ax.set_xlabel(self.xlabel)
self.ax.set_ylabel(self.ylabel)
self.ax.grid()
#Autoscale on unknown axis and known lims on the other
self.ax.set_autoscaley_on(True)
lock.release()
self.initialized = True # Set the flag to True after initialization
def run(self, figure_num, queue, lock, key, is_running, key_queue):
if kVerbose:
print(f'Mplot2d {self.title}: starting run on figure ', figure_num.value)
self.key_queue_thread = key_queue
#self.init(figure_num.value, lock)
while is_running.value == 1:
if kVerbose:
print('Mplot2d: drawer_refresh step')
self.drawer_refresh(queue, lock)
if kUseFigCanvasDrawIdle:
time.sleep(kPlotSleep)
empty_queue(queue) # empty the queue before exiting
print(mp.current_process().name,f' - Mplot2d {self.title}: closing fig {self.fig}')
plt.close(self.fig)
def drawer_refresh(self, queue, lock):
while not queue.empty():
self.got_data = True
self.data = queue.get()
xy_signal, name, color, marker, linestyle, append = self.data
# Initialize figure upon receiving the first data
if not self.initialized:
self.init(self.figure_num.value, lock)
#print(mp.current_process().name,"refreshing : signal ", name)
if name in self.handle_map:
handle = self.handle_map[name]
if append:
handle.set_xdata(np.append(handle.get_xdata(), xy_signal[0]))
handle.set_ydata(np.append(handle.get_ydata(), xy_signal[1]))
else:
handle.set_xdata(xy_signal[0])
handle.set_ydata(xy_signal[1])
else:
handle, = self.ax.plot(xy_signal[0], xy_signal[1], c=color, marker=marker, linestyle=linestyle, label=name)
self.handle_map[name] = handle
#print(mp.current_process().name,"got data: ", self.got_data)
if self.got_data is True:
self.plot_refresh(lock)
def on_key_press(self, event):
print(mp.current_process().name,f' - Mplot2d {self.title}: key event pressed... {event.key}')
self.key.value = ord(event.key) # conver to int
self.key_queue_thread.put(self.key.value)
def on_key_release(self, event):
print(mp.current_process().name,f' - Mplot2d {self.title}: key event released... {event.key}')
self.key.value = 0 # reset to no key symbol
def on_close(self, event):
self.is_running.value = 0
print(mp.current_process().name,f' - Mplot2d {self.title} closed figure')
def get_key(self):
if not self.key_queue.empty():
return chr(self.key_queue.get())
else:
return ''
def setAxis(self):
self.ax.legend()
self.ax.relim()
self.ax.autoscale_view()
#We need to draw *and* flush
if not kUseFigCanvasDrawIdle:
self.fig.canvas.draw()
self.fig.canvas.flush_events()
def draw(self, xy_signal, name, color='r', marker='.', linestyle='-', append=True):
if self.queue is None:
return
if kVerbose:
print(mp.current_process().name,f'Mplot2d {self.title} draw ')
self.queue.put((xy_signal, name, color, marker, linestyle, append))
def updateMinMax(self, np_signal):
xmax,ymax = np.amax(np_signal,axis=0)
xmin,ymin = np.amin(np_signal,axis=0)
cx = 0.5*(xmax+xmin)
cy = 0.5*(ymax+ymin)
if False:
# update maxs
if xmax > self.xlim[1]:
self.xlim[1] = xmax
if ymax > self.ylim[1]:
self.ylim[1] = ymax
# update minsS
if xmin < self.xlim[0]:
self.xlim[0] = xmin
if ymin < self.ylim[0]:
self.ylim[0] = ymin
# make axis actually squared
if True:
smin = min(xmin,ymin)
smax = max(xmax,ymax)
delta = 0.5*(smax - smin)
self.xlim = [cx-delta,cx+delta]
self.ylim = [cy-delta,cy+delta]
self.axis_computed = True
def plot_refresh(self, lock):
if kVerbose:
print(mp.current_process().name,f'Mplot2d {self.title} refreshing ')
lock.acquire()
if self.is_running.value == 1:
self.setAxis()
#if not kUseFigCanvasDrawIdle:
if kUsePlotPause:
plt.pause(kPlotSleep)
lock.release()
# use mplotlib figure to draw in 3D trajectories
class Mplot3d:
def __init__(self, title=''):
self.title = title
self.data = None
self.got_data = False
self.axis_computed = False
self.xlim = [float("inf"),float("-inf")]
self.ylim = [float("inf"),float("-inf")]
self.zlim = [float("inf"),float("-inf")]
self.xmin = float("inf")
self.xmax = float("-inf")
self.ymin = float("inf")
self.ymax = float("-inf")
self.zmin = float("inf")
self.zmax = float("-inf")
self.handle_map = {}
self.key = mp.Value('i',0)
self.is_running = mp.Value('i',1)
# NOTE: We use the MultiprocessingManager to manage queues and avoid pickling problems with multiprocessing.
self.mp_manager = MultiprocessingManager()
self.queue = self.mp_manager.Queue()
self.key_queue = self.mp_manager.Queue()
self.lock = SharedSingletonLock().get_lock
self.figure_num = mp.Value('i', int(FigureNum.getFigureNum()))
print(f'Mplot3d: starting the process on figure: {self.figure_num.value}')
args=(self.figure_num, self.queue, self.lock, self.key, self.is_running, self.key_queue,)
self.process = mp.Process(target=self.run, args=args)
#self.process.daemon = kSetDaemon
self.process.start()
def quit(self):
print(f'Mplot3d \"{self.title}\" closing...')
self.is_running.value = 0
self.process.join(timeout=5)
if self.process.is_alive():
print("Warning: Mplot3d \"{self.title}\" process did not terminate in time, forced kill.")
self.process.terminate()
def init(self, figure_num, lock):
lock.acquire()
locally_configure_qt_environment()
if kVerbose:
print(mp.current_process().name, "initializing...")
self.fig = plt.figure(figure_num)
if kUseFigCanvasDrawIdle:
self.fig.canvas.draw_idle()
self.fig.canvas.mpl_connect('key_press_event', self.on_key_press)
self.fig.canvas.mpl_connect('key_release_event', self.on_key_release)
self.fig.canvas.mpl_connect('close_event', self.on_close)
self.ax = self.fig.add_subplot(111, projection='3d') # Adjusted line
#self.ax = self.fig.gca(projection='3d')
if self.title != '':
self.ax.set_title(self.title)
self.ax.set_xlabel('X axis')
self.ax.set_ylabel('Y axis')
self.ax.set_zlabel('Z axis')
self.setAxis()
lock.release()
def run(self, figure_num, queue, lock, key, is_running, key_queue):
if kVerbose:
print('Mplot3d: starting run on figure ', figure_num.value)
self.key_queue_thread = key_queue
self.init(figure_num.value, lock)
while is_running.value == 1:
self.drawer_refresh(queue, lock)
if kUseFigCanvasDrawIdle:
time.sleep(kPlotSleep)
empty_queue(queue) # empty the queue before exiting
print(mp.current_process().name,f" - Mplot3d \'{self.title}\': closing fig ", self.fig)
plt.close(self.fig)
def drawer_refresh(self, queue, lock):
while not queue.empty():
self.got_data = True
self.data = queue.get()
traj, name, color, marker = self.data
np_traj = np.asarray(traj)
does_label_exist = False
if name in self.handle_map:
handle = self.handle_map[name]
does_label_exist = True
self.updateMinMax(np_traj[-1,:])
handle = self.ax.scatter3D(np_traj[:, 0], np_traj[:, 1], np_traj[:, 2], c=color, marker=marker)
if not does_label_exist:
handle.set_label(name)
self.handle_map[name] = handle
if self.got_data is True:
self.plot_refresh(lock)
def on_key_press(self, event):
print(mp.current_process().name,f" - Mplot3d \'{self.title}\': key event pressed...", event.key)
self.key.value = ord(event.key) # conver to int
self.key_queue_thread.put(self.key.value)
def on_key_release(self, event):
print(mp.current_process().name,f" - Mplot3d \"{self.title}\": key event released...", event.key)
self.key.value = 0 # reset to no key symbol
def on_close(self, event):
self.is_running.value = 0
print(mp.current_process().name,f" - Mplot3d \"{self.title}\" closed figure")
def get_key(self):
if not self.key_queue.empty():
return chr(self.key_queue.get())
else:
return ''
def setAxis(self):
#self.ax.axis('equal') # this does not work with the new matplotlib 3
if self.axis_computed:
self.ax.set_xlim(self.xlim)
self.ax.set_ylim(self.ylim)
self.ax.set_zlim(self.zlim)
self.ax.legend()
#We need to draw *and* flush
if not kUseFigCanvasDrawIdle:
self.fig.canvas.draw()
self.fig.canvas.flush_events()
def draw(self, traj, name, color='r', marker='.'):
if self.queue is None:
return
self.queue.put((traj, name, color, marker))
def updateMinMax(self, np_traj):
# xmax,ymax,zmax = np.amax(np_traj,axis=0)
# xmin,ymin,zmin = np.amin(np_traj,axis=0)
x,y,z = np_traj[0], np_traj[1], np_traj[2]
if self.xmin == float("inf"):
self.xmin = x
if self.xmax == float("-inf"):
self.xmax = x
if self.ymin == float("inf"):
self.ymin = y
if self.ymax == float("-inf"):
self.ymax = y
if self.zmin == float("inf"):
self.zmin = z
if self.zmax == float("-inf"):
self.zmax = z
self.xmin = min(self.xmin, x)
self.xmax = max(self.xmax, x)
self.ymin = min(self.ymin, y)
self.ymax = max(self.ymax, y)
self.zmin = min(self.zmin, z)
self.zmax = max(self.zmax, z)
cx = 0.5*(self.xmax+self.xmin)
cy = 0.5*(self.ymax+self.ymin)
cz = 0.5*(self.zmax+self.zmin)
if False:
# update maxs
if xmax > self.xlim[1]:
self.xlim[1] = xmax
if ymax > self.ylim[1]:
self.ylim[1] = ymax
if zmax > self.zlim[1]:
self.zlim[1] = zmax
# update mins
if xmin < self.xlim[0]:
self.xlim[0] = xmin
if ymin < self.ylim[0]:
self.ylim[0] = ymin
if zmin < self.zlim[0]:
self.zlim[0] = zmin
# make axis actually squared
if True:
#smin = min(self.xlim[0],self.ylim[0],self.zlim[0])
#smax = max(self.xlim[1],self.ylim[1],self.zlim[1])
smin = min(self.xmin,self.ymin,self.zmin)
smax = max(self.xmax,self.ymax,self.zmax)
delta = 0.5*(smax - smin)
self.xlim = [cx-delta,cx+delta]
self.ylim = [cy-delta,cy+delta]
self.zlim = [cz-delta,cz+delta]
self.axis_computed = True
def plot_refresh(self, lock):
if kVerbose:
print(mp.current_process().name,"refreshing ", self.title)
lock.acquire()
if self.is_running.value == 1:
self.setAxis()
#if not kUseFigCanvasDrawIdle:
if kUsePlotPause:
plt.pause(kPlotSleep)
lock.release()