task_navigator.py
32.8 KB
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
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
#--------------------------------------------------------------------------
# Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
# Copyright: (C) 2001 Centro de Pesquisas Renato Archer
# Homepage: http://www.softwarepublico.gov.br
# Contact: invesalius@cti.gov.br
# License: GNU - GPL 2 (LICENSE.txt/LICENCA.txt)
#--------------------------------------------------------------------------
# Este programa e software livre; voce pode redistribui-lo e/ou
# modifica-lo sob os termos da Licenca Publica Geral GNU, conforme
# publicada pela Free Software Foundation; de acordo com a versao 2
# da Licenca.
#
# Este programa eh distribuido na expectativa de ser util, mas SEM
# QUALQUER GARANTIA; sem mesmo a garantia implicita de
# COMERCIALIZACAO ou de ADEQUACAO A QUALQUER PROPOSITO EM
# PARTICULAR. Consulte a Licenca Publica Geral GNU para obter mais
# detalhes.
#--------------------------------------------------------------------------
from functools import partial
import sys
import numpy as np
import wx
import wx.lib.hyperlink as hl
import wx.lib.masked.numctrl
from wx.lib.pubsub import pub as Publisher
import invesalius.constants as const
import invesalius.data.bases as db
import invesalius.data.coordinates as dco
import invesalius.data.coregistration as dcr
import invesalius.data.trackers as dt
import invesalius.data.trigger as trig
import invesalius.gui.dialogs as dlg
import invesalius.gui.widgets.foldpanelbar as fpb
import invesalius.gui.widgets.colourselect as csel
class TaskPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
inner_panel = InnerTaskPanel(self)
sizer = wx.BoxSizer(wx.HORIZONTAL)
sizer.Add(inner_panel, 1, wx.EXPAND|wx.GROW|wx.BOTTOM|wx.RIGHT |
wx.LEFT, 7)
sizer.Fit(self)
self.SetSizer(sizer)
self.Update()
self.SetAutoLayout(1)
class InnerTaskPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
default_colour = self.GetBackgroundColour()
background_colour = wx.Colour(255,255,255)
self.SetBackgroundColour(background_colour)
txt_nav = wx.StaticText(self, -1, _('Select fiducials and navigate'),
size=wx.Size(90, 20))
txt_nav.SetFont(wx.Font(9, wx.DEFAULT, wx.NORMAL, wx.BOLD))
# Create horizontal sizer to represent lines in the panel
txt_sizer = wx.BoxSizer(wx.HORIZONTAL)
txt_sizer.Add(txt_nav, 1, wx.EXPAND|wx.GROW, 5)
# Fold panel which contains navigation configurations
fold_panel = FoldPanel(self)
fold_panel.SetBackgroundColour(default_colour)
# Add line sizer into main sizer
main_sizer = wx.BoxSizer(wx.VERTICAL)
main_sizer.Add(txt_sizer, 0, wx.GROW|wx.EXPAND|wx.LEFT|wx.RIGHT, 5)
main_sizer.Add(fold_panel, 1, wx.GROW|wx.EXPAND|wx.LEFT|wx.RIGHT, 5)
main_sizer.AddSpacer(5)
main_sizer.Fit(self)
self.SetSizerAndFit(main_sizer)
self.Update()
self.SetAutoLayout(1)
self.sizer = main_sizer
class FoldPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
inner_panel = InnerFoldPanel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(inner_panel, 0, wx.EXPAND|wx.GROW)
sizer.Fit(self)
self.SetSizerAndFit(sizer)
self.Update()
self.SetAutoLayout(1)
class InnerFoldPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
default_colour = wx.SystemSettings_GetColour(wx.SYS_COLOUR_MENUBAR)
self.SetBackgroundColour(default_colour)
self.__bind_events()
# Fold panel and its style settings
# FIXME: If we dont insert a value in size or if we set wx.DefaultSize,
# the fold_panel doesnt show. This means that, for some reason, Sizer
# is not working properly in this panel. It might be on some child or
# parent panel. Perhaps we need to insert the item into the sizer also...
# Study this.
displaySize = wx.DisplaySize()
if displaySize[1] > 768:
fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition,
(10, 350), 0, fpb.FPB_SINGLE_FOLD)
else:
fold_panel = fpb.FoldPanelBar(self, -1, wx.DefaultPosition,
(10, 293), 0, fpb.FPB_SINGLE_FOLD)
# Fold panel style
style = fpb.CaptionBarStyle()
style.SetCaptionStyle(fpb.CAPTIONBAR_GRADIENT_V)
style.SetFirstColour(default_colour)
style.SetSecondColour(default_colour)
# Fold 1 - Navigation panel
item = fold_panel.AddFoldPanel(_("Neuronavigation"), collapsed=True)
ntw = NeuronavigationPanel(item)
fold_panel.ApplyCaptionStyle(item, style)
fold_panel.AddFoldPanelWindow(item, ntw, Spacing= 0,
leftSpacing=0, rightSpacing=0)
fold_panel.Expand(fold_panel.GetFoldPanel(0))
# Fold 2 - Markers panel
item = fold_panel.AddFoldPanel(_("Extra tools"), collapsed=True)
mtw = MarkersPanel(item)
fold_panel.ApplyCaptionStyle(item, style)
fold_panel.AddFoldPanelWindow(item, mtw, Spacing= 0,
leftSpacing=0, rightSpacing=0)
# Check box for camera update in volume rendering during navigation
tooltip = wx.ToolTip(_("Update camera in volume"))
checkcamera = wx.CheckBox(self, -1, _('Volume camera'))
checkcamera.SetToolTip(tooltip)
checkcamera.SetValue(True)
checkcamera.Bind(wx.EVT_CHECKBOX, partial(self.UpdateVolumeCamera, ctrl=checkcamera))
# Check box for camera update in volume rendering during navigation
tooltip = wx.ToolTip(_("Enable external trigger for creating markers"))
checktrigger = wx.CheckBox(self, -1, _('External trigger'))
checktrigger.SetToolTip(tooltip)
checktrigger.SetValue(False)
checktrigger.Bind(wx.EVT_CHECKBOX, partial(self.UpdateExternalTrigger, ctrl=checktrigger))
self.checktrigger = checktrigger
if sys.platform != 'win32':
checkcamera.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
checktrigger.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
line_sizer = wx.BoxSizer(wx.HORIZONTAL)
line_sizer.Add(checkcamera, 0, wx.ALIGN_LEFT | wx.RIGHT | wx.LEFT, 5)
line_sizer.Add(checktrigger, 1,wx.ALIGN_RIGHT | wx.RIGHT | wx.LEFT, 5)
line_sizer.Fit(self)
# Panel sizer to expand fold panel
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(fold_panel, 0, wx.GROW|wx.EXPAND)
sizer.Add(line_sizer, 1, wx.GROW | wx.EXPAND)
sizer.Fit(self)
self.SetSizer(sizer)
self.Update()
self.SetAutoLayout(1)
def __bind_events(self):
Publisher.subscribe(self.OnTrigger, 'Navigation Status')
def OnTrigger(self, pubsub_evt):
status = pubsub_evt.data
if status:
self.checktrigger.Enable(False)
else:
self.checktrigger.Enable(True)
def UpdateExternalTrigger(self, evt, ctrl):
Publisher.sendMessage('Update trigger state', ctrl.GetValue())
def UpdateVolumeCamera(self, evt, ctrl):
Publisher.sendMessage('Update volume camera state', ctrl.GetValue())
class NeuronavigationPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
default_colour = wx.SystemSettings_GetColour(wx.SYS_COLOUR_MENUBAR)
self.SetBackgroundColour(default_colour)
self.SetAutoLayout(1)
self.__bind_events()
# Initialize global variables
self.fiducials = np.full([6, 3], np.nan)
self.correg = None
self.current_coord = 0, 0, 0
self.trk_init = None
self.trigger = None
self.trigger_state = False
self.tracker_id = const.DEFAULT_TRACKER
self.ref_mode_id = const.DEFAULT_REF_MODE
# Initialize list of buttons and numctrls for wx objects
self.btns_coord = [None] * 7
self.numctrls_coord = [list(), list(), list(), list(), list(), list(), list()]
# ComboBox for spatial tracker device selection
tooltip = wx.ToolTip(_("Choose the tracking device"))
choice_trck = wx.ComboBox(self, -1, "",
choices=const.TRACKER, style=wx.CB_DROPDOWN|wx.CB_READONLY)
choice_trck.SetToolTip(tooltip)
choice_trck.SetSelection(const.DEFAULT_TRACKER)
choice_trck.Bind(wx.EVT_COMBOBOX, partial(self.OnChoiceTracker, ctrl=choice_trck))
# ComboBox for tracker reference mode
tooltip = wx.ToolTip(_("Choose the navigation reference mode"))
choice_ref = wx.ComboBox(self, -1, "",
choices=const.REF_MODE, style=wx.CB_DROPDOWN|wx.CB_READONLY)
choice_ref.SetSelection(const.DEFAULT_REF_MODE)
choice_ref.SetToolTip(tooltip)
choice_ref.Bind(wx.EVT_COMBOBOX, partial(self.OnChoiceRefMode, ctrl=choice_trck))
# Toggle buttons for image fiducials
btns_img = const.BTNS_IMG
tips_img = const.TIPS_IMG
for k in btns_img:
n = btns_img[k].keys()[0]
lab = btns_img[k].values()[0]
self.btns_coord[n] = wx.ToggleButton(self, k, label=lab, size=wx.Size(45, 23))
self.btns_coord[n].SetToolTip(tips_img[n])
self.btns_coord[n].Bind(wx.EVT_TOGGLEBUTTON, self.OnImageFiducials)
# Push buttons for tracker fiducials
btns_trk = const.BTNS_TRK
tips_trk = const.TIPS_TRK
for k in btns_trk:
n = btns_trk[k].keys()[0]
lab = btns_trk[k].values()[0]
self.btns_coord[n] = wx.Button(self, k, label=lab, size=wx.Size(45, 23))
self.btns_coord[n].SetToolTip(tips_trk[n-3])
# Excepetion for event of button that set image coordinates
if n == 6:
self.btns_coord[n].Bind(wx.EVT_BUTTON, self.OnSetImageCoordinates)
else:
self.btns_coord[n].Bind(wx.EVT_BUTTON, self.OnTrackerFiducials)
# TODO: Find a better allignment between FRE, text and navigate button
txt_fre = wx.StaticText(self, -1, _('FRE:'))
# Fiducial registration error text box
tooltip = wx.ToolTip(_("Fiducial registration error"))
txtctrl_fre = wx.TextCtrl(self, value="", size=wx.Size(60, -1), style=wx.TE_CENTRE)
txtctrl_fre.SetFont(wx.Font(9, wx.DEFAULT, wx.NORMAL, wx.BOLD))
txtctrl_fre.SetBackgroundColour('WHITE')
txtctrl_fre.SetEditable(0)
txtctrl_fre.SetToolTip(tooltip)
# Toggle button for neuronavigation
tooltip = wx.ToolTip(_("Start navigation"))
btn_nav = wx.ToggleButton(self, -1, _("Navigate"), size=wx.Size(80, -1))
btn_nav.SetToolTip(tooltip)
btn_nav.Bind(wx.EVT_TOGGLEBUTTON, partial(self.OnNavigate, btn=(btn_nav, choice_trck, choice_ref, txtctrl_fre)))
# Image and tracker coordinates number controls
for m in range(0, 7):
for n in range(0, 3):
self.numctrls_coord[m].append(
wx.lib.masked.numctrl.NumCtrl(parent=self, integerWidth=4, fractionWidth=1))
# Sizers to group all GUI objects
choice_sizer = wx.FlexGridSizer(rows=1, cols=2, hgap=5, vgap=5)
choice_sizer.AddMany([(choice_trck, wx.LEFT),
(choice_ref, wx.RIGHT)])
coord_sizer = wx.GridBagSizer(hgap=5, vgap=5)
for m in range(0, 7):
coord_sizer.Add(self.btns_coord[m], pos=wx.GBPosition(m, 0))
for n in range(0, 3):
coord_sizer.Add(self.numctrls_coord[m][n], pos=wx.GBPosition(m, n+1))
if m in range(1, 6):
self.numctrls_coord[m][n].SetEditable(False)
nav_sizer = wx.FlexGridSizer(rows=1, cols=3, hgap=5, vgap=5)
nav_sizer.AddMany([(txt_fre, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL),
(txtctrl_fre, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL),
(btn_nav, 0, wx.ALIGN_CENTER_HORIZONTAL | wx.ALIGN_CENTER_VERTICAL)])
group_sizer = wx.FlexGridSizer(rows=9, cols=1, hgap=5, vgap=5)
group_sizer.AddGrowableCol(0, 1)
group_sizer.AddGrowableRow(0, 1)
group_sizer.AddGrowableRow(1, 1)
group_sizer.AddGrowableRow(2, 1)
group_sizer.SetFlexibleDirection(wx.BOTH)
group_sizer.AddMany([(choice_sizer, 0, wx.ALIGN_CENTER_HORIZONTAL),
(coord_sizer, 0, wx.ALIGN_CENTER_HORIZONTAL),
(nav_sizer, 0, wx.ALIGN_CENTER_HORIZONTAL)])
main_sizer = wx.BoxSizer(wx.HORIZONTAL)
main_sizer.Add(group_sizer, 1, wx.ALIGN_CENTER_HORIZONTAL, 10)
self.sizer = main_sizer
self.SetSizer(main_sizer)
self.Fit()
def __bind_events(self):
Publisher.subscribe(self.LoadImageFiducials, 'Load image fiducials')
Publisher.subscribe(self.UpdateTriggerState, 'Update trigger state')
Publisher.subscribe(self.UpdateImageCoordinates, 'Set ball reference position')
Publisher.subscribe(self.OnDisconnectTracker, 'Disconnect tracker')
def LoadImageFiducials(self, pubsub_evt):
marker_id = pubsub_evt.data[0]
coord = pubsub_evt.data[1]
for n in const.BTNS_IMG_MKS:
btn_id = const.BTNS_IMG_MKS[n].keys()[0]
fid_id = const.BTNS_IMG_MKS[n].values()[0]
if marker_id == fid_id and not self.btns_coord[btn_id].GetValue():
self.btns_coord[btn_id].SetValue(True)
self.fiducials[btn_id, :] = coord[0:3]
for m in [0, 1, 2]:
self.numctrls_coord[btn_id][m].SetValue(coord[m])
def UpdateImageCoordinates(self, pubsub_evt):
# TODO: Change from world coordinates to matrix coordinates. They are better for multi software communication.
self.current_coord = pubsub_evt.data
for m in [0, 1, 2, 6]:
if m == 6 and self.btns_coord[m].IsEnabled():
for n in [0, 1, 2]:
self.numctrls_coord[m][n].SetValue(self.current_coord[n])
elif m != 6 and not self.btns_coord[m].GetValue():
# btn_state = self.btns_coord[m].GetValue()
# if not btn_state:
for n in [0, 1, 2]:
self.numctrls_coord[m][n].SetValue(self.current_coord[n])
def UpdateTriggerState (self, pubsub_evt):
self.trigger_state = pubsub_evt.data
def OnDisconnectTracker(self, pubsub_evt):
if self.tracker_id:
dt.TrackerConnection(self.tracker_id, 'disconnect')
def OnChoiceTracker(self, evt, ctrl):
Publisher.sendMessage('Update status text in GUI', _("Configuring tracker ..."))
if evt:
choice = evt.GetSelection()
else:
choice = self.tracker_id
if self.trk_init:
trck = self.trk_init[0]
else:
trck = None
# Conditions check if click was on current selection and if any other tracker
# has been initialized before
if trck and choice != 6:
self.ResetTrackerFiducials()
self.trk_init = dt.TrackerConnection(self.tracker_id, 'disconnect')
self.tracker_id = choice
if not self.trk_init[0]:
self.trk_init = dt.TrackerConnection(self.tracker_id, 'connect')
if not self.trk_init[0]:
dlg.NavigationTrackerWarning(self.tracker_id, self.trk_init[1])
ctrl.SetSelection(0)
print "Tracker not connected!"
else:
ctrl.SetSelection(self.tracker_id)
print "Tracker connected!"
elif choice == 6:
if trck:
self.trk_init = dt.TrackerConnection(self.tracker_id, 'disconnect')
if not self.trk_init[0]:
dlg.NavigationTrackerWarning(self.tracker_id, 'disconnect')
self.tracker_id = 0
ctrl.SetSelection(self.tracker_id)
print "Tracker disconnected!"
else:
print "Tracker still connected!"
else:
ctrl.SetSelection(self.tracker_id)
else:
# If trk_init is None try to connect. If doesn't succeed show dialog.
if choice:
self.tracker_id = choice
self.trk_init = dt.TrackerConnection(self.tracker_id, 'connect')
if not self.trk_init[0]:
dlg.NavigationTrackerWarning(self.tracker_id, self.trk_init[1])
self.tracker_id = 0
ctrl.SetSelection(self.tracker_id)
Publisher.sendMessage('Update status text in GUI', _("Ready"))
def OnChoiceRefMode(self, evt, ctrl):
# When ref mode is changed the tracker coords are set to zero
self.ref_mode_id = evt.GetSelection()
self.ResetTrackerFiducials()
# Some trackers do not accept restarting within this time window
# TODO: Improve the restarting of trackers after changing reference mode
# self.OnChoiceTracker(None, ctrl)
print "Reference mode changed!"
def OnSetImageCoordinates(self, evt):
# FIXME: Cross does not update in last clicked slice, only on the other two
btn_id = const.BTNS_TRK[evt.GetId()].keys()[0]
wx, wy, wz = self.numctrls_coord[btn_id][0].GetValue(), \
self.numctrls_coord[btn_id][1].GetValue(), \
self.numctrls_coord[btn_id][2].GetValue()
Publisher.sendMessage('Set ball reference position', (wx, wy, wz))
Publisher.sendMessage('Set camera in volume', (wx, wy, wz))
Publisher.sendMessage('Co-registered points', (wx, wy, wz))
Publisher.sendMessage('Update cross position', (wx, wy, wz))
def OnImageFiducials(self, evt):
btn_id = const.BTNS_IMG_MKS[evt.GetId()].keys()[0]
marker_id = const.BTNS_IMG_MKS[evt.GetId()].values()[0]
if self.btns_coord[btn_id].GetValue():
coord = self.numctrls_coord[btn_id][0].GetValue(),\
self.numctrls_coord[btn_id][1].GetValue(),\
self.numctrls_coord[btn_id][2].GetValue()
self.fiducials[btn_id, :] = coord[0:3]
Publisher.sendMessage('Create marker', (coord, marker_id))
else:
for n in [0, 1, 2]:
self.numctrls_coord[btn_id][n].SetValue(self.current_coord[n])
self.fiducials[btn_id, :] = np.nan
Publisher.sendMessage('Delete fiducial marker', marker_id)
def OnTrackerFiducials(self, evt):
btn_id = const.BTNS_TRK[evt.GetId()].keys()[0]
coord = None
if self.trk_init and self.tracker_id:
coord = dco.GetCoordinates(self.trk_init, self.tracker_id, self.ref_mode_id)
else:
dlg.NavigationTrackerWarning(0, 'choose')
# Update number controls with tracker coordinates
if coord is not None:
self.fiducials[btn_id, :] = coord[0:3]
for n in [0, 1, 2]:
self.numctrls_coord[btn_id][n].SetValue(float(coord[n]))
def OnNavigate(self, evt, btn):
btn_nav = btn[0]
choice_trck = btn[1]
choice_ref = btn[2]
txtctrl_fre = btn[3]
nav_id = btn_nav.GetValue()
if nav_id:
if np.isnan(self.fiducials).any():
dlg.InvalidFiducials()
btn_nav.SetValue(False)
else:
tooltip = wx.ToolTip(_("Stop neuronavigation"))
btn_nav.SetToolTip(tooltip)
# Disable all navigation buttons
choice_ref.Enable(False)
choice_trck.Enable(False)
for btn_c in self.btns_coord:
btn_c.Enable(False)
m, q1, minv = db.base_creation(self.fiducials[0:3, :])
n, q2, ninv = db.base_creation(self.fiducials[3::, :])
tracker_mode = self.trk_init, self.tracker_id, self.ref_mode_id
# FIXME: FRE is taking long to calculate so it updates on GUI delayed to navigation - I think its fixed
# TODO: Exhibit FRE in a warning dialog and only starts navigation after user clicks ok
fre = db.calculate_fre(self.fiducials, minv, n, q1, q2)
txtctrl_fre.SetValue(str(round(fre, 2)))
if fre <= 3:
txtctrl_fre.SetBackgroundColour('GREEN')
else:
txtctrl_fre.SetBackgroundColour('RED')
if self.trigger_state:
self.trigger = trig.Trigger(nav_id)
Publisher.sendMessage("Navigation Status", True)
Publisher.sendMessage("Toggle Cross", const.SLICE_STATE_CROSS)
Publisher.sendMessage("Hide current mask")
self.correg = dcr.Coregistration((minv, n, q1, q2), nav_id, tracker_mode)
else:
tooltip = wx.ToolTip(_("Start neuronavigation"))
btn_nav.SetToolTip(tooltip)
# Enable all navigation buttons
choice_ref.Enable(True)
choice_trck.Enable(True)
for btn_c in self.btns_coord:
btn_c.Enable(True)
if self.trigger_state:
self.trigger.stop()
self.correg.stop()
Publisher.sendMessage("Navigation Status", False)
def ResetTrackerFiducials(self):
for m in range(3, 6):
for n in range(0, 3):
self.numctrls_coord[m][n].SetValue(0.0)
class MarkersPanel(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
default_colour = wx.SystemSettings_GetColour(wx.SYS_COLOUR_MENUBAR)
self.SetBackgroundColour(default_colour)
self.SetAutoLayout(1)
self.__bind_events()
self.current_coord = 0, 0, 0
self.list_coord = []
self.marker_ind = 0
self.marker_colour = (0.0, 0.0, 1.)
self.marker_size = 4
# Change marker size
spin_size = wx.SpinCtrl(self, -1, "", size=wx.Size(40, 23))
spin_size.SetRange(1, 99)
spin_size.SetValue(self.marker_size)
spin_size.Bind(wx.EVT_TEXT, partial(self.OnSelectSize, ctrl=spin_size))
spin_size.Bind(wx.EVT_SPINCTRL, partial(self.OnSelectSize, ctrl=spin_size))
# Marker colour select
select_colour = csel.ColourSelect(self, -1, colour=[255*s for s in self.marker_colour], size=wx.Size(20, 23))
select_colour.Bind(csel.EVT_COLOURSELECT, partial(self.OnSelectColour, ctrl=select_colour))
btn_create = wx.Button(self, -1, label=_('Create marker'), size=wx.Size(135, 23))
btn_create.Bind(wx.EVT_BUTTON, self.OnCreateMarker)
sizer_create = wx.FlexGridSizer(rows=1, cols=3, hgap=5, vgap=5)
sizer_create.AddMany([(spin_size, 1),
(select_colour, 0),
(btn_create, 0)])
# Buttons to save and load markers and to change its visibility as well
btn_save = wx.Button(self, -1, label=_('Save'), size=wx.Size(65, 23))
btn_save.Bind(wx.EVT_BUTTON, self.OnSaveMarkers)
btn_load = wx.Button(self, -1, label=_('Load'), size=wx.Size(65, 23))
btn_load.Bind(wx.EVT_BUTTON, self.OnLoadMarkers)
btn_visibility = wx.ToggleButton(self, -1, _("Hide"), size=wx.Size(65, 23))
btn_visibility.Bind(wx.EVT_TOGGLEBUTTON, partial(self.OnMarkersVisibility, ctrl=btn_visibility))
sizer_btns = wx.FlexGridSizer(rows=1, cols=3, hgap=5, vgap=5)
sizer_btns.AddMany([(btn_save, 1, wx.RIGHT),
(btn_load, 0, wx.LEFT | wx.RIGHT),
(btn_visibility, 0, wx.LEFT)])
# Buttons to delete or remove markers
btn_delete_single = wx.Button(self, -1, label=_('Remove'), size=wx.Size(65, 23))
btn_delete_single.Bind(wx.EVT_BUTTON, self.OnDeleteSingleMarker)
btn_delete_all = wx.Button(self, -1, label=_('Delete all'), size=wx.Size(135, 23))
btn_delete_all.Bind(wx.EVT_BUTTON, self.OnDeleteAllMarkers)
sizer_delete = wx.FlexGridSizer(rows=1, cols=2, hgap=5, vgap=5)
sizer_delete.AddMany([(btn_delete_single, 1, wx.RIGHT),
(btn_delete_all, 0, wx.LEFT)])
# List of markers
self.lc = wx.ListCtrl(self, -1, style=wx.LC_REPORT, size=wx.Size(0,120))
self.lc.InsertColumn(0, '#')
self.lc.InsertColumn(1, 'X')
self.lc.InsertColumn(2, 'Y')
self.lc.InsertColumn(3, 'Z')
self.lc.InsertColumn(4, 'ID')
self.lc.SetColumnWidth(0, 28)
self.lc.SetColumnWidth(1, 50)
self.lc.SetColumnWidth(2, 50)
self.lc.SetColumnWidth(3, 50)
self.lc.SetColumnWidth(4, 50)
self.lc.Bind(wx.EVT_LIST_ITEM_RIGHT_CLICK, self.OnListEditMarkerId)
self.lc.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnItemBlink)
self.lc.Bind(wx.EVT_LIST_ITEM_DESELECTED, self.OnStopItemBlink)
# Add all lines into main sizer
group_sizer = wx.BoxSizer(wx.VERTICAL)
group_sizer.Add(sizer_create, 0, wx.TOP | wx.BOTTOM | wx.ALIGN_CENTER_HORIZONTAL, 5)
group_sizer.Add(sizer_btns, 0, wx.BOTTOM | wx.ALIGN_CENTER_HORIZONTAL, 5)
group_sizer.Add(sizer_delete, 0, wx.BOTTOM | wx.ALIGN_CENTER_HORIZONTAL, 5)
group_sizer.Add(self.lc, 0, wx.EXPAND | wx.ALL | wx.ALIGN_CENTER_HORIZONTAL, 5)
group_sizer.Fit(self)
self.SetSizer(group_sizer)
self.Update()
def __bind_events(self):
Publisher.subscribe(self.UpdateCurrentCoord, 'Set ball reference position')
Publisher.subscribe(self.OnDeleteSingleMarker, 'Delete fiducial marker')
Publisher.subscribe(self.OnCreateMarker, 'Create marker')
def UpdateCurrentCoord(self, pubsub_evt):
self.current_coord = pubsub_evt.data
def OnListEditMarkerId(self, evt):
menu_id = wx.Menu()
menu_id.Append(-1, _('Edit ID'))
menu_id.Bind(wx.EVT_MENU, self.OnMenuEditMarkerId)
self.PopupMenu(menu_id)
menu_id.Destroy()
def OnItemBlink(self, evt):
Publisher.sendMessage('Blink Marker', self.lc.GetFocusedItem())
def OnStopItemBlink(self, evt):
Publisher.sendMessage('Stop Blink Marker')
def OnMenuEditMarkerId(self, evt):
id_label = dlg.EnterMarkerID(self.lc.GetItemText(self.lc.GetFocusedItem(), 4))
list_index = self.lc.GetFocusedItem()
self.lc.SetStringItem(list_index, 4, id_label)
# Add the new ID to exported list
self.list_coord[list_index][7] = str(id_label)
def OnDeleteAllMarkers(self, pubsub_evt):
result = dlg.DeleteAllMarkers()
if result == wx.ID_OK:
self.list_coord = []
self.marker_ind = 0
Publisher.sendMessage('Remove all markers', self.lc.GetItemCount())
self.lc.DeleteAllItems()
Publisher.sendMessage('Stop Blink Marker', 'DeleteAll')
def OnDeleteSingleMarker(self, evt):
# OnDeleteSingleMarker is used for both pubsub and button click events
# Pubsub is used for fiducial handle and button click for all others
if hasattr(evt, 'data'):
marker_id = evt.data
if self.lc.GetItemCount():
for id_n in range(self.lc.GetItemCount()):
item = self.lc.GetItem(id_n, 4)
if item.GetText() == marker_id:
for i in const.BTNS_IMG_MKS:
if marker_id in const.BTNS_IMG_MKS[i].values()[0]:
self.lc.Focus(item.GetId())
index = [self.lc.GetFocusedItem()]
else:
if self.lc.GetFirstSelected() is not -1:
index = self.GetSelectedItems()
else:
index = None
if index:
self.DeleteMarker(index)
else:
dlg.NoMarkerSelected()
def DeleteMarker(self, index):
for i in reversed(index):
del self.list_coord[i]
self.lc.DeleteItem(i)
for n in range(0, self.lc.GetItemCount()):
self.lc.SetStringItem(n, 0, str(n+1))
self.marker_ind -= 1
Publisher.sendMessage('Remove marker', index)
def OnCreateMarker(self, evt):
# OnCreateMarker is used for both pubsub and button click events
# Pubsub is used for markers created with fiducial buttons, trigger and create marker button
if hasattr(evt, 'data'):
if evt.data is not None:
self.CreateMarker(evt.data[0], (0.0, 1.0, 0.0), self.marker_size, evt.data[1])
else:
self.CreateMarker(self.current_coord, self.marker_colour, self.marker_size)
else:
self.CreateMarker(self.current_coord, self.marker_colour, self.marker_size)
def OnLoadMarkers(self, evt):
filepath = dlg.ShowLoadMarkersDialog()
if filepath:
try:
content = [s.rstrip() for s in open(filepath)]
for data in content:
line = [s for s in data.split()]
coord = float(line[0]), float(line[1]), float(line[2])
colour = float(line[3]), float(line[4]), float(line[5])
size = float(line[6])
if len(line) == 8:
for i in const.BTNS_IMG_MKS:
if line[7] in const.BTNS_IMG_MKS[i].values()[0]:
Publisher.sendMessage('Load image fiducials', (line[7], coord))
else:
line.append("")
self.CreateMarker(coord, colour, size, line[7])
except:
dlg.InvalidMarkersFile()
def OnMarkersVisibility(self, evt, ctrl):
if ctrl.GetValue():
Publisher.sendMessage('Hide all markers', self.lc.GetItemCount())
ctrl.SetLabel('Show')
else:
Publisher.sendMessage('Show all markers', self.lc.GetItemCount())
ctrl.SetLabel('Hide')
def OnSaveMarkers(self, evt):
filename = dlg.ShowSaveMarkersDialog("markers.mks")
if filename:
if self.list_coord:
text_file = open(filename, "w")
list_slice1 = self.list_coord[0]
coord = str('%.3f' %self.list_coord[0][0]) + "\t" + str('%.3f' %self.list_coord[0][1]) + "\t" + str('%.3f' %self.list_coord[0][2])
properties = str('%.3f' %list_slice1[3]) + "\t" + str('%.3f' %list_slice1[4]) + "\t" + str('%.3f' %list_slice1[5]) + "\t" + str('%.1f' %list_slice1[6]) + "\t" + list_slice1[7]
line = coord + "\t" + properties + "\n"
list_slice = self.list_coord[1:]
for value in list_slice:
coord = str('%.3f' %value[0]) + "\t" + str('%.3f' %value[1]) + "\t" + str('%.3f' %value[2])
properties = str('%.3f' %value[3]) + "\t" + str('%.3f' %value[4]) + "\t" + str('%.3f' %value[5]) + "\t" + str('%.1f' %value[6]) + "\t" + value[7]
line = line + coord + "\t" + properties + "\n"
text_file.writelines(line)
text_file.close()
def OnSelectColour(self, evt, ctrl):
self.marker_colour = [colour/255.0 for colour in ctrl.GetValue()]
def OnSelectSize(self, evt, ctrl):
self.marker_size = ctrl.GetValue()
def CreateMarker(self, coord, colour, size, marker_id=""):
# TODO: Use matrix coordinates and not world coordinates as current method.
# This makes easier for inter-software comprehension.
Publisher.sendMessage('Add marker', (self.marker_ind, size, colour, coord))
self.marker_ind += 1
# List of lists with coordinates and properties of a marker
line = [coord[0], coord[1], coord[2], colour[0], colour[1], colour[2], self.marker_size, marker_id]
# Adding current line to a list of all markers already created
if not self.list_coord:
self.list_coord = [line]
else:
self.list_coord.append(line)
# Add item to list control in panel
num_items = self.lc.GetItemCount()
self.lc.InsertStringItem(num_items, str(num_items + 1))
self.lc.SetStringItem(num_items, 1, str(round(coord[0], 2)))
self.lc.SetStringItem(num_items, 2, str(round(coord[1], 2)))
self.lc.SetStringItem(num_items, 3, str(round(coord[2], 2)))
self.lc.SetStringItem(num_items, 4, str(marker_id))
self.lc.EnsureVisible(num_items)
def GetSelectedItems(self):
"""
Returns a list of the selected items in the list control.
"""
selection = []
index = self.lc.GetFirstSelected()
selection.append(index)
while len(selection) != self.lc.GetSelectedItemCount():
index = self.lc.GetNextSelected(index)
selection.append(index)
return selection