dialogs.py
56.1 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
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
#--------------------------------------------------------------------------
# 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.
#--------------------------------------------------------------------------
import os
import random
import sys
import wx
import wx.combo
from wx.lib import masked
from wx.lib.agw import floatspin
from wx.lib.wordwrap import wordwrap
from wx.lib.pubsub import pub as Publisher
import constants as const
import gui.widgets.gradient as grad
import project as proj
import session as ses
import utils
from gui.widgets.clut_imagedata import CLUTImageDataWidget, EVT_CLUT_NODE_CHANGED
import numpy as np
class MaskEvent(wx.PyCommandEvent):
def __init__(self , evtType, id, mask_index):
wx.PyCommandEvent.__init__(self, evtType, id,)
self.mask_index = mask_index
myEVT_MASK_SET = wx.NewEventType()
EVT_MASK_SET = wx.PyEventBinder(myEVT_MASK_SET, 1)
class NumberDialog(wx.Dialog):
def __init__(self, message, value=0):
pre = wx.PreDialog()
pre.Create(None, -1, "InVesalius 3", size=wx.DefaultSize,
pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE)
self.PostCreate(pre)
# Static text which contains message to user
label = wx.StaticText(self, -1, message)
# Numeric value to be changed by user
num_ctrl = masked.NumCtrl(self, value=value, integerWidth=3,
fractionWidth=2,
allowNegative=True,
signedForegroundColour = "Black")
self.num_ctrl = num_ctrl
# Buttons
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetHelpText(_("Value will be applied."))
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btn_cancel.SetHelpText(_("Value will not be applied."))
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
sizer.Add(num_ctrl, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|wx.ALL, 5)
self.SetSizer(sizer)
sizer.Fit(self)
self.Centre()
def SetValue(self, value):
self.num_ctrl.SetValue(value)
def GetValue(self):
return self.num_ctrl.GetValue()
class ResizeImageDialog(wx.Dialog):
def __init__(self):#, message, value=0):
pre = self.pre = wx.PreDialog()
pre.Create(None, -1, "InVesalius 3", size=wx.DefaultSize,
pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE)
self.PostCreate(pre)
lbl_message = wx.StaticText(self, -1, _("InVesalius is running on a 32-bit operating system or has insufficient memory. \nIf you want to work with 3D surfaces or volume rendering, \nit is recommended to reduce the medical images resolution."))
icon = wx.ArtProvider.GetBitmap(wx.ART_WARNING, wx.ART_MESSAGE_BOX, (32,32))
bmp = wx.StaticBitmap(self, -1, icon)
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btn_sizer = wx.StdDialogButtonSizer()
btn_sizer.AddButton(btn_ok)
btn_sizer.AddButton(btn_cancel)
btn_sizer.Realize()
lbl_message_percent = wx.StaticText(self, -1,_("Percentage of original resolution"))
num_ctrl_percent = wx.SpinCtrl(self, -1)
num_ctrl_percent.SetRange(20,100)
self.num_ctrl_porcent = num_ctrl_percent
sizer_percent = wx.BoxSizer(wx.HORIZONTAL)
sizer_percent.Add(lbl_message_percent, 0, wx.EXPAND|wx.ALL, 5)
sizer_percent.Add(num_ctrl_percent, 0, wx.ALL, 5)
sizer_itens = wx.BoxSizer(wx.VERTICAL)
sizer_itens.Add(lbl_message, 0, wx.EXPAND|wx.ALL, 5)
sizer_itens.AddSizer(sizer_percent, 0, wx.EXPAND|wx.ALL, 5)
sizer_itens.Add(btn_sizer, 0, wx.EXPAND|wx.ALL, 5)
sizer_general = wx.BoxSizer(wx.HORIZONTAL)
sizer_general.Add(bmp, 0, wx.ALIGN_CENTRE|wx.ALL, 10)
sizer_general.AddSizer(sizer_itens, 0, wx.ALL , 5)
#self.SetAutoLayout(True)
self.SetSizer(sizer_general)
sizer_general.Fit(self)
self.Layout()
self.Centre()
def SetValue(self, value):
self.num_ctrl_porcent.SetValue(value)
def GetValue(self):
return self.num_ctrl_porcent.GetValue()
def Close(self):
self.pre.Destroy()
def ShowNumberDialog(message, value=0):
dlg = NumberDialog(message, value)
dlg.SetValue(value)
if dlg.ShowModal() == wx.ID_OK:
return dlg.GetValue()
dlg.Destroy()
return 0
class ProgressDialog(object):
def __init__(self, maximum, abort=False):
self.title = "InVesalius 3"
self.msg = _("Loading DICOM files")
self.maximum = maximum
self.current = 0
self.style = wx.PD_APP_MODAL
if abort:
self.style = wx.PD_APP_MODAL | wx.PD_CAN_ABORT
self.dlg = wx.ProgressDialog(self.title,
self.msg,
maximum = self.maximum,
parent = None,
style = self.style)
self.dlg.Bind(wx.EVT_BUTTON, self.Cancel)
self.dlg.SetSize(wx.Size(250,150))
def Cancel(self, evt):
Publisher.sendMessage("Cancel DICOM load")
def Update(self, value, message):
if(int(value) != self.maximum):
try:
return self.dlg.Update(value,message)
#TODO:
#Exception in the Windows XP 64 Bits with wxPython 2.8.10
except(wx._core.PyAssertionError):
return True
else:
return False
def Close(self):
self.dlg.Destroy()
#---------
WILDCARD_OPEN = "InVesalius 3 project (*.inv3)|*.inv3|"\
"All files (*.*)|*.*"
WILDCARD_ANALYZE = "Analyze (*.hdr)|*.hdr|"\
"All files (*.*)|*.*"
def ShowOpenProjectDialog():
# Default system path
current_dir = os.path.abspath(".")
dlg = wx.FileDialog(None, message=_("Open InVesalius 3 project..."),
defaultDir="",
defaultFile="", wildcard=WILDCARD_OPEN,
style=wx.FD_OPEN|wx.FD_CHANGE_DIR)
# inv3 filter is default
dlg.SetFilterIndex(0)
# Show the dialog and retrieve the user response. If it is the OK response,
# process the data.
filepath = None
try:
if dlg.ShowModal() == wx.ID_OK:
# This returns a Python list of files that were selected.
filepath = dlg.GetPath()
except(wx._core.PyAssertionError): #FIX: win64
filepath = dlg.GetPath()
# Destroy the dialog. Don't do this until you are done with it!
# BAD things can happen otherwise!
dlg.Destroy()
os.chdir(current_dir)
return filepath
def ShowOpenAnalyzeDialog():
# Default system path
current_dir = os.path.abspath(".")
dlg = wx.FileDialog(None, message=_("Open Analyze file"),
defaultDir="",
defaultFile="", wildcard=WILDCARD_ANALYZE,
style=wx.FD_OPEN|wx.FD_CHANGE_DIR)
# inv3 filter is default
dlg.SetFilterIndex(0)
# Show the dialog and retrieve the user response. If it is the OK response,
# process the data.
filepath = None
try:
if dlg.ShowModal() == wx.ID_OK:
# This returns a Python list of files that were selected.
filepath = dlg.GetPath()
except(wx._core.PyAssertionError): #FIX: win64
filepath = dlg.GetPath()
# Destroy the dialog. Don't do this until you are done with it!
# BAD things can happen otherwise!
dlg.Destroy()
os.chdir(current_dir)
return filepath
def ShowImportDirDialog():
current_dir = os.path.abspath(".")
if (sys.platform == 'win32') or (sys.platform == 'linux2'):
session = ses.Session()
if (session.GetLastDicomFolder()):
folder = session.GetLastDicomFolder()
else:
folder = ''
else:
folder = ''
dlg = wx.DirDialog(None, _("Choose a DICOM folder:"), folder,
style=wx.DD_DEFAULT_STYLE
| wx.DD_DIR_MUST_EXIST
| wx.DD_CHANGE_DIR)
path = None
try:
if dlg.ShowModal() == wx.ID_OK:
# GetPath returns in unicode, if a path has non-ascii characters a
# UnicodeEncodeError is raised. To avoid this, path is encoded in utf-8
if sys.platform == "win32":
path = dlg.GetPath()
else:
path = dlg.GetPath().encode('utf-8')
except(wx._core.PyAssertionError): #TODO: error win64
if (dlg.GetPath()):
path = dlg.GetPath()
if (sys.platform != 'darwin'):
if (path):
session.SetLastDicomFolder(path)
# Only destroy a dialog after you're done with it.
dlg.Destroy()
os.chdir(current_dir)
return path
def ShowSaveAsProjectDialog(default_filename=None):
current_dir = os.path.abspath(".")
dlg = wx.FileDialog(None,
_("Save project as..."), # title
"", # last used directory
default_filename,
_("InVesalius project (*.inv3)|*.inv3"),
wx.FD_SAVE|wx.FD_OVERWRITE_PROMPT)
#dlg.SetFilterIndex(0) # default is VTI
filename = None
try:
if dlg.ShowModal() == wx.ID_OK:
filename = dlg.GetPath()
ok = 1
else:
ok = 0
except(wx._core.PyAssertionError): #TODO: fix win64
filename = dlg.GetPath()
ok = 1
if (ok):
extension = "inv3"
if sys.platform != 'win32':
if filename.split(".")[-1] != extension:
filename = filename + "." + extension
os.chdir(current_dir)
return filename
class MessageDialog(wx.Dialog):
def __init__(self, message):
pre = wx.PreDialog()
pre.Create(None, -1, "InVesalius 3", size=(360, 370), pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE|wx.ICON_INFORMATION)
self.PostCreate(pre)
# Static text which contains message to user
label = wx.StaticText(self, -1, message)
# Buttons
btn_yes = wx.Button(self, wx.ID_YES)
btn_yes.SetHelpText("")
btn_yes.SetDefault()
btn_no = wx.Button(self, wx.ID_NO)
btn_no.SetHelpText("")
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btn_cancel.SetHelpText("")
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_yes)
btnsizer.AddButton(btn_cancel)
btnsizer.AddButton(btn_no)
btnsizer.Realize()
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|
wx.ALIGN_CENTER_HORIZONTAL|wx.ALL, 5)
self.SetSizer(sizer)
sizer.Fit(self)
self.Centre()
class UpdateMessageDialog(wx.Dialog):
def __init__(self, url):
msg=_("A new version of InVesalius is available. Do you want to open the download website now?")
title=_("Invesalius Update")
self.url = url
pre = wx.PreDialog()
pre.Create(None, -1, title, size=(360, 370), pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE|wx.ICON_INFORMATION)
self.PostCreate(pre)
# Static text which contains message to user
label = wx.StaticText(self, -1, msg)
# Buttons
btn_yes = wx.Button(self, wx.ID_YES)
btn_yes.SetHelpText("")
btn_yes.SetDefault()
btn_no = wx.Button(self, wx.ID_NO)
btn_no.SetHelpText("")
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_yes)
btnsizer.AddButton(btn_no)
btnsizer.Realize()
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(label, 0, wx.ALIGN_CENTRE|wx.ALL, 5)
sizer.Add(btnsizer, 0, wx.ALIGN_CENTER_VERTICAL|
wx.ALIGN_CENTER_HORIZONTAL|wx.ALL, 5)
self.SetSizer(sizer)
sizer.Fit(self)
self.Centre()
btn_yes.Bind(wx.EVT_BUTTON, self._OnYes)
btn_no.Bind(wx.EVT_BUTTON, self._OnNo)
# Subscribing to the pubsub event which happens when InVesalius is
# closed.
Publisher.subscribe(self._OnCloseInV, 'Exit')
def _OnYes(self, evt):
# Launches the default browser with the url to download the new
# InVesalius version.
wx.LaunchDefaultBrowser(self.url)
self.Close()
self.Destroy()
def _OnNo(self, evt):
# Closes and destroy this dialog.
self.Close()
self.Destroy()
def _OnCloseInV(self, pubsub_evt):
# Closes and destroy this dialog.
self.Close()
self.Destroy()
def SaveChangesDialog__Old(filename):
message = _("The project %s has been modified.\nSave changes?")%filename
dlg = MessageDialog(message)
answer = dlg.ShowModal()
dlg.Destroy()
if answer == wx.ID_YES:
return 1
elif answer == wx.ID_NO:
return 0
else:
return -1
def ImportEmptyDirectory(dirpath):
msg = _("%s is an empty folder.") % dirpath.decode("utf-8")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "",
msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg,
"InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def ImportInvalidFiles():
msg = _("There are no DICOM files in the selected folder.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def InexistentMask():
msg = _("A mask is needed to create a surface.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def MaskSelectionRequiredForRemoval():
msg = _("No mask was selected for removal.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def SurfaceSelectionRequiredForRemoval():
msg = _("No surface was selected for removal.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def MeasureSelectionRequiredForRemoval():
msg = _("No measure was selected for removal.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def MaskSelectionRequiredForDuplication():
msg = _("No mask was selected for duplication.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def SurfaceSelectionRequiredForDuplication():
msg = _("No surface was selected for duplication.")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
class NewMask(wx.Dialog):
def __init__(self,
parent=None,
ID=-1,
title="InVesalius 3",
size=wx.DefaultSize,
pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE,
useMetal=False):
import constants as const
import data.mask as mask
import project as prj
# Instead of calling wx.Dialog.__init__ we precreate the dialog
# so we can set an extra style that must be set before
# creation, and then we create the GUI object using the Create
# method.
pre = wx.PreDialog()
pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP)
pre.Create(parent, ID, title, pos, (500,300), style)
# This next step is the most important, it turns this Python
# object into the real wrapper of the dialog (instead of pre)
# as far as the wxPython extension is concerned.
self.PostCreate(pre)
self.CenterOnScreen()
# This extra style can be set after the UI object has been created.
if 'wxMac' in wx.PlatformInfo and useMetal:
self.SetExtraStyle(wx.DIALOG_EX_METAL)
self.CenterOnScreen()
# LINE 1: Surface name
label_mask = wx.StaticText(self, -1, _("New mask name:"))
default_name = const.MASK_NAME_PATTERN %(mask.Mask.general_index+2)
text = wx.TextCtrl(self, -1, "", size=(80,-1))
text.SetHelpText(_("Name the mask to be created"))
text.SetValue(default_name)
self.text = text
# LINE 2: Threshold of reference
# Informative label
label_thresh = wx.StaticText(self, -1, _("Threshold preset:"))
# Retrieve existing masks
project = prj.Project()
thresh_list = project.threshold_modes.keys()
thresh_list.sort()
default_index = thresh_list.index(_("Bone"))
self.thresh_list = thresh_list
# Mask selection combo
combo_thresh = wx.ComboBox(self, -1, "", choices= self.thresh_list,
style=wx.CB_DROPDOWN|wx.CB_READONLY)
combo_thresh.SetSelection(default_index)
if sys.platform != 'win32':
combo_thresh.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
self.combo_thresh = combo_thresh
# LINE 3: Gradient
bound_min, bound_max = project.threshold_range
thresh_min, thresh_max = project.threshold_modes[_("Bone")]
original_colour = random.choice(const.MASK_COLOUR)
self.colour = original_colour
colour = [255*i for i in original_colour]
colour.append(100)
gradient = grad.GradientSlider(self, -1, int(bound_min),
int(bound_max),
int(thresh_min), int(thresh_max),
colour)
self.gradient = gradient
# OVERVIEW
# Sizer that joins content above
flag_link = wx.EXPAND|wx.GROW|wx.ALL
flag_button = wx.ALL | wx.EXPAND| wx.GROW
fixed_sizer = wx.FlexGridSizer(rows=2, cols=2, hgap=10, vgap=10)
fixed_sizer.AddGrowableCol(0, 1)
fixed_sizer.AddMany([ (label_mask, 1, flag_link, 5),
(text, 1, flag_button, 2),
(label_thresh, 1, flag_link, 5),
(combo_thresh, 0, flag_button, 1)])#,
#(label_quality, 1, flag_link, 5),
#(combo_quality, 0, flag_button, 1)])
# LINE 6: Buttons
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
# OVERVIEW
# Merge all sizers and checkboxes
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(fixed_sizer, 0, wx.ALL|wx.GROW|wx.EXPAND, 15)
sizer.Add(gradient, 1, wx.BOTTOM|wx.RIGHT|wx.LEFT|wx.EXPAND|wx.GROW, 20)
sizer.Add(btnsizer, 0, wx.ALIGN_RIGHT|wx.BOTTOM, 10)
self.SetSizer(sizer)
sizer.Fit(self)
self.Bind(grad.EVT_THRESHOLD_CHANGED, self.OnSlideChanged, self.gradient)
self.combo_thresh.Bind(wx.EVT_COMBOBOX, self.OnComboThresh)
def OnComboThresh(self, evt):
import project as prj
proj = prj.Project()
(thresh_min, thresh_max) = proj.threshold_modes[evt.GetString()]
self.gradient.SetMinimun(thresh_min)
self.gradient.SetMaximun(thresh_max)
def OnSlideChanged(self, evt):
import project as prj
thresh_min = self.gradient.GetMinValue()
thresh_max = self.gradient.GetMaxValue()
thresh = (thresh_min, thresh_max)
proj = prj.Project()
if thresh in proj.threshold_modes.values():
preset_name = proj.threshold_modes.get_key(thresh)[0]
index = self.thresh_list.index(preset_name)
self.combo_thresh.SetSelection(index)
else:
index = self.thresh_list.index(_("Custom"))
self.combo_thresh.SetSelection(index)
def GetValue(self):
#mask_index = self.combo_mask.GetSelection()
mask_name = self.text.GetValue()
thresh_value = [self.gradient.GetMinValue(), self.gradient.GetMaxValue()]
#quality = const.SURFACE_QUALITY_LIST[self.combo_quality.GetSelection()]
#fill_holes = self.check_box_holes.GetValue()
#keep_largest = self.check_box_largest.GetValue()
#return (mask_index, surface_name, quality, fill_holes, keep_largest)
return mask_name, thresh_value, self.colour
def InexistentPath(path):
msg = _("%s does not exist.")%(path)
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def MissingFilesForReconstruction():
msg = _("Please, provide more than one DICOM file for 3D reconstruction")
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_INFORMATION | wx.OK)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_INFORMATION | wx.OK)
dlg.ShowModal()
dlg.Destroy()
def SaveChangesDialog(filename, parent):
current_dir = os.path.abspath(".")
msg = _("The project %s has been modified.\nSave changes?")%filename
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_QUESTION | wx.YES_NO | wx.CANCEL)
else:
dlg = wx.MessageDialog(None, msg, "InVesalius 3",
wx.ICON_QUESTION | wx.YES_NO | wx.CANCEL)
try:
answer = dlg.ShowModal()
except(wx._core.PyAssertionError): #TODO: FIX win64
answer = wx.ID_YES
dlg.Destroy()
os.chdir(current_dir)
if answer == wx.ID_YES:
return 1
elif answer == wx.ID_NO:
return 0
else:
return -1
def SaveChangesDialog2(filename):
current_dir = os.path.abspath(".")
msg = _("The project %s has been modified.\nSave changes?")%filename
if sys.platform == 'darwin':
dlg = wx.MessageDialog(None, "", msg,
wx.ICON_QUESTION | wx.YES_NO)
else:
dlg = wx.MessageDialog(None, msg,
"InVesalius 3",
wx.ICON_QUESTION | wx.YES_NO)
answer = dlg.ShowModal()
dlg.Destroy()
os.chdir(current_dir)
if answer == wx.ID_YES:
return 1
else:# answer == wx.ID_NO:
return 0
def ShowAboutDialog(parent):
info = wx.AboutDialogInfo()
info.Name = "InVesalius"
info.Version = "3.0"
info.Copyright = _("(c) 2007-2015 Center for Information Technology Renato Archer - CTI")
info.Description = wordwrap(_("InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows exporting 3D volumes or surfaces as mesh files for creating physical models of a patient's anatomy using additive manufacturing (3D printing) technologies. The software is developed by Center for Information Technology Renato Archer (CTI), National Council for Scientific and Technological Development (CNPq) and the Brazilian Ministry of Health.\n\n InVesalius must be used only for research. The Center for Information Technology Renato Archer is not responsible for damages caused by the use of this software.\n\n Contact: invesalius@cti.gov.br"), 350, wx.ClientDC(parent))
# _("InVesalius is a software for medical imaging 3D reconstruction. ")+\
# _("Its input is a sequency of DICOM 2D image files acquired with CT or MR.\n\n")+\
# _("The software also allows generating correspondent STL files,")+\
# _("so the user can print 3D physical models of the patient's anatomy ")+\
# _("using Rapid Prototyping."), 350, wx.ClientDC(parent))
info.WebSite = ("http://www.cti.gov.br/invesalius")
info.License = _("GNU GPL (General Public License) version 2")
info.Developers = ["Paulo Henrique Junqueira Amorim",
"Thiago Franco de Moraes",
"Jorge Vicente Lopes da Silva",
"Tatiana Al-Chueyr (former)",
"Guilherme Cesar Soares Ruppert (former)",
"Fabio de Souza Azevedo (former)",
"Bruno Lara Bottazzini (contributor)",
"Olly Betts (patches to support wxPython3)"]
info.Translators = ["Alex P. Natsios",
"Andreas Loupasakis",
"Annalisa Manenti",
"Cheng-Chia Tseng",
"Dimitris Glezos",
"Eugene Liscio",
u"Frédéric Lopez",
"fri",
"Javier de Lima Moreno",
"Mario Regino Moreno Guerra",
"Massimo Crisantemo",
"Nikos Korkakakis",
"Raul Bolliger Neto",
"Sebastian Hilbert",
"Semarang Pari"]
#info.DocWriters = ["Fabio Francisco da Silva (PT)"]
info.Artists = ["Otavio Henrique Junqueira Amorim"]
# Then we call wx.AboutBox providing its info object
wx.AboutBox(info)
def ShowSavePresetDialog(default_filename="raycasting"):
dlg = wx.TextEntryDialog(None,
_("Save raycasting preset as:"),
"InVesalius 3")
#dlg.SetFilterIndex(0) # default is VTI
filename = None
try:
if dlg.ShowModal() == wx.ID_OK:
filename = dlg.GetValue()
except(wx._core.PyAssertionError):
filename = dlg.GetValue()
return filename
class NewSurfaceDialog(wx.Dialog):
def __init__(self, parent=None, ID=-1, title="InVesalius 3", size=wx.DefaultSize,
pos=wx.DefaultPosition, style=wx.DEFAULT_DIALOG_STYLE,
useMetal=False):
import constants as const
import data.surface as surface
import project as prj
# Instead of calling wx.Dialog.__init__ we precreate the dialog
# so we can set an extra style that must be set before
# creation, and then we create the GUI object using the Create
# method.
pre = wx.PreDialog()
pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP)
pre.Create(parent, ID, title, pos, (500,300), style)
# This next step is the most important, it turns this Python
# object into the real wrapper of the dialog (instead of pre)
# as far as the wxPython extension is concerned.
self.PostCreate(pre)
self.CenterOnScreen()
# This extra style can be set after the UI object has been created.
if 'wxMac' in wx.PlatformInfo and useMetal:
self.SetExtraStyle(wx.DIALOG_EX_METAL)
self.CenterOnScreen()
# LINE 1: Surface name
label_surface = wx.StaticText(self, -1, _("New surface name:"))
default_name = const.SURFACE_NAME_PATTERN %(surface.Surface.general_index+2)
text = wx.TextCtrl(self, -1, "", size=(80,-1))
text.SetHelpText(_("Name the surface to be created"))
text.SetValue(default_name)
self.text = text
# LINE 2: Mask of reference
# Informative label
label_mask = wx.StaticText(self, -1, _("Mask of reference:"))
# Retrieve existing masks
project = prj.Project()
index_list = project.mask_dict.keys()
index_list.sort()
self.mask_list = [project.mask_dict[index].name for index in index_list]
# Mask selection combo
combo_mask = wx.ComboBox(self, -1, "", choices= self.mask_list,
style=wx.CB_DROPDOWN|wx.CB_READONLY)
combo_mask.SetSelection(len(self.mask_list)-1)
if sys.platform != 'win32':
combo_mask.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
self.combo_mask = combo_mask
# LINE 3: Surface quality
label_quality = wx.StaticText(self, -1, _("Surface quality:"))
choices = const.SURFACE_QUALITY_LIST
style = wx.CB_DROPDOWN|wx.CB_READONLY
combo_quality = wx.ComboBox(self, -1, "",
choices= choices,
style=style)
combo_quality.SetSelection(3)
if sys.platform != 'win32':
combo_quality.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
self.combo_quality = combo_quality
# OVERVIEW
# Sizer that joins content above
flag_link = wx.EXPAND|wx.GROW|wx.ALL
flag_button = wx.ALL | wx.EXPAND| wx.GROW
fixed_sizer = wx.FlexGridSizer(rows=2, cols=2, hgap=10, vgap=0)
fixed_sizer.AddGrowableCol(0, 1)
fixed_sizer.AddMany([ (label_surface, 1, flag_link, 5),
(text, 1, flag_button, 2),
(label_mask, 1, flag_link, 5),
(combo_mask, 0, flag_button, 1),
(label_quality, 1, flag_link, 5),
(combo_quality, 0, flag_button, 1)])
# LINES 4 and 5: Checkboxes
check_box_holes = wx.CheckBox(self, -1, _("Fill holes"))
check_box_holes.SetValue(True)
self.check_box_holes = check_box_holes
check_box_largest = wx.CheckBox(self, -1, _("Keep largest region"))
self.check_box_largest = check_box_largest
# LINE 6: Buttons
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
# OVERVIEW
# Merge all sizers and checkboxes
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(fixed_sizer, 0, wx.TOP|wx.RIGHT|wx.LEFT|wx.GROW|wx.EXPAND, 20)
sizer.Add(check_box_holes, 0, wx.RIGHT|wx.LEFT, 30)
sizer.Add(check_box_largest, 0, wx.RIGHT|wx.LEFT, 30)
sizer.Add(btnsizer, 0, wx.ALIGN_RIGHT|wx.ALL, 10)
self.SetSizer(sizer)
sizer.Fit(self)
def GetValue(self):
mask_index = self.combo_mask.GetSelection()
surface_name = self.text.GetValue()
quality = const.SURFACE_QUALITY_LIST[self.combo_quality.GetSelection()]
fill_holes = self.check_box_holes.GetValue()
keep_largest = self.check_box_largest.GetValue()
return (mask_index, surface_name, quality, fill_holes, keep_largest)
def ExportPicture(type_=""):
import constants as const
INDEX_TO_EXTENSION = {0: "bmp", 1: "jpg", 2: "png", 3: "ps", 4:"povray", 5:"tiff"}
WILDCARD_SAVE_PICTURE = _("BMP image")+" (*.bmp)|*.bmp|"+\
_("JPG image")+" (*.jpg)|*.jpg|"+\
_("PNG image")+" (*.png)|*.png|"+\
_("PostScript document")+" (*.ps)|*.ps|"+\
_("POV-Ray file")+" (*.pov)|*.pov|"+\
_("TIFF image")+" (*.tif)|*.tif"
INDEX_TO_TYPE = {0: const.FILETYPE_BMP,
1: const.FILETYPE_JPG,
2: const.FILETYPE_PNG,
3: const.FILETYPE_PS,
4: const.FILETYPE_POV,
5: const.FILETYPE_TIF}
utils.debug("ExportPicture")
project = proj.Project()
project_name = "%s_%s" % (project.name, type_)
if not sys.platform in ('win32', 'linux2'):
project_name += ".jpg"
dlg = wx.FileDialog(None,
"Save %s picture as..." %type_,
"", # last used directory
project_name, # filename
WILDCARD_SAVE_PICTURE,
wx.FD_SAVE|wx.FD_OVERWRITE_PROMPT)
dlg.SetFilterIndex(1) # default is VTI
if dlg.ShowModal() == wx.ID_OK:
filetype_index = dlg.GetFilterIndex()
filetype = INDEX_TO_TYPE[filetype_index]
extension = INDEX_TO_EXTENSION[filetype_index]
filename = dlg.GetPath()
if sys.platform != 'win32':
if filename.split(".")[-1] != extension:
filename = filename + "."+ extension
return filename, filetype
else:
return ()
class SurfaceDialog(wx.Dialog):
'''
This dialog is only shown when the mask whose surface will be generate was
edited. So far, the only options available are the choice of method to
generate the surface, Binary or `Context aware smoothing', and options from
`Context aware smoothing'
'''
def __init__(self):
wx.Dialog.__init__(self, None, -1, _('Surface generation options'))
self._build_widgets()
self.CenterOnScreen()
def _build_widgets(self):
btn_ok = wx.Button(self, wx.ID_OK)
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btn_sizer = wx.StdDialogButtonSizer()
btn_sizer.AddButton(btn_ok)
btn_sizer.AddButton(btn_cancel)
btn_sizer.Realize()
self.ca = SurfaceMethodPanel(self, -1, True)
self.main_sizer = wx.BoxSizer(wx.VERTICAL)
self.main_sizer.Add(self.ca, 0, wx.EXPAND|wx.ALL, 5)
self.main_sizer.Add(btn_sizer, 0, wx.EXPAND | wx.ALL, 5)
self.SetSizer(self.main_sizer)
self.Fit()
def GetOptions(self):
return self.ca.GetOptions()
def GetAlgorithmSelected(self):
return self.ca.GetAlgorithmSelected()
####################### New surface creation dialog ###########################
class SurfaceCreationDialog(wx.Dialog):
def __init__(self, parent=None, ID=-1, title=_(u"Surface creation"),
size=wx.DefaultSize, pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE, useMetal=False,
mask_edited=False):
# Instead of calling wx.Dialog.__init__ we precreate the dialog
# so we can set an extra style that must be set before
# creation, and then we create the GUI object using the Create
# method.
pre = wx.PreDialog()
pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP)
pre.Create(parent, ID, title, pos, (500,300), style)
# This extra style can be set after the UI object has been created.
if 'wxMac' in wx.PlatformInfo and useMetal:
self.SetExtraStyle(wx.DIALOG_EX_METAL)
# This next step is the most important, it turns this Python
# object into the real wrapper of the dialog (instead of pre)
# as far as the wxPython extension is concerned.
self.PostCreate(pre)
self.CenterOnScreen()
# It's necessary to create a staticbox before is children widgets
# because otherwise in MacOSX it'll not be possible to use the mouse in
# static's children widgets.
sb_nsd = wx.StaticBox(self, -1, _('Surface creation options'))
self.nsd = SurfaceCreationOptionsPanel(self, -1)
self.nsd.Bind(EVT_MASK_SET, self.OnSetMask)
surface_options_sizer = wx.StaticBoxSizer(sb_nsd, wx.VERTICAL)
surface_options_sizer.Add(self.nsd, 1, wx.EXPAND|wx.ALL, 5)
sb_ca = wx.StaticBox(self, -1, _('Surface creation method'))
self.ca = SurfaceMethodPanel(self, -1, mask_edited)
surface_method_sizer = wx.StaticBoxSizer(sb_ca, wx.VERTICAL)
surface_method_sizer.Add(self.ca, 1, wx.EXPAND|wx.ALL, 5)
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
sizer_panels = wx.BoxSizer(wx.HORIZONTAL)
sizer_panels.Add(surface_options_sizer, 0, wx.EXPAND|wx.ALL, 5)
sizer_panels.Add(surface_method_sizer, 0, wx.EXPAND|wx.ALL, 5)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(sizer_panels, 0, wx.ALIGN_RIGHT|wx.ALL, 5)
sizer.Add(btnsizer, 0, wx.ALIGN_RIGHT|wx.ALL, 5)
self.SetSizer(sizer)
sizer.Fit(self)
def OnSetMask(self, evt):
mask = proj.Project().mask_dict[evt.mask_index]
self.ca.mask_edited = mask.was_edited
self.ca.ReloadMethodsOptions()
def GetValue(self):
return {"method": self.ca.GetValue(),
"options": self.nsd.GetValue()}
class SurfaceCreationOptionsPanel(wx.Panel):
def __init__(self, parent, ID=-1):
import constants as const
import data.surface as surface
import project as prj
wx.Panel.__init__(self, parent, ID)
# LINE 1: Surface name
label_surface = wx.StaticText(self, -1, _("New surface name:"))
default_name = const.SURFACE_NAME_PATTERN %(surface.Surface.general_index+2)
text = wx.TextCtrl(self, -1, "", size=(80,-1))
text.SetHelpText(_("Name the surface to be created"))
text.SetValue(default_name)
self.text = text
# LINE 2: Mask of reference
# Informative label
label_mask = wx.StaticText(self, -1, _("Mask of reference:"))
#Retrieve existing masks
project = prj.Project()
index_list = project.mask_dict.keys()
index_list.sort()
self.mask_list = [project.mask_dict[index].name for index in index_list]
# Mask selection combo
combo_mask = wx.ComboBox(self, -1, "", choices= self.mask_list,
style=wx.CB_DROPDOWN|wx.CB_READONLY)
combo_mask.SetSelection(len(self.mask_list)-1)
combo_mask.Bind(wx.EVT_COMBOBOX, self.OnSetMask)
if sys.platform != 'win32':
combo_mask.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
self.combo_mask = combo_mask
# LINE 3: Surface quality
label_quality = wx.StaticText(self, -1, _("Surface quality:"))
choices = const.SURFACE_QUALITY_LIST
style = wx.CB_DROPDOWN|wx.CB_READONLY
combo_quality = wx.ComboBox(self, -1, "",
choices= choices,
style=style)
combo_quality.SetSelection(3)
if sys.platform != 'win32':
combo_quality.SetWindowVariant(wx.WINDOW_VARIANT_SMALL)
self.combo_quality = combo_quality
# OVERVIEW
# Sizer that joins content above
flag_link = wx.EXPAND|wx.GROW|wx.ALL
flag_button = wx.ALL | wx.EXPAND| wx.GROW
fixed_sizer = wx.FlexGridSizer(rows=3, cols=2, hgap=10, vgap=5)
fixed_sizer.AddGrowableCol(0, 1)
fixed_sizer.AddMany([ (label_surface, 1, flag_link, 0),
(text, 1, flag_button, 0),
(label_mask, 1, flag_link, 0),
(combo_mask, 0, flag_button, 0),
(label_quality, 1, flag_link, 0),
(combo_quality, 0, flag_button, 0)])
# LINES 4 and 5: Checkboxes
check_box_holes = wx.CheckBox(self, -1, _("Fill holes"))
check_box_holes.SetValue(True)
self.check_box_holes = check_box_holes
check_box_largest = wx.CheckBox(self, -1, _("Keep largest region"))
self.check_box_largest = check_box_largest
# OVERVIEW
# Merge all sizers and checkboxes
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(fixed_sizer, 0, wx.TOP|wx.RIGHT|wx.LEFT|wx.GROW|wx.EXPAND, 5)
sizer.Add(check_box_holes, 0, wx.RIGHT|wx.LEFT, 5)
sizer.Add(check_box_largest, 0, wx.RIGHT|wx.LEFT, 5)
self.SetSizer(sizer)
sizer.Fit(self)
def OnSetMask(self, evt):
new_evt = MaskEvent(myEVT_MASK_SET, -1, self.combo_mask.GetSelection())
self.GetEventHandler().ProcessEvent(new_evt)
def GetValue(self):
mask_index = self.combo_mask.GetSelection()
surface_name = self.text.GetValue()
quality = const.SURFACE_QUALITY_LIST[self.combo_quality.GetSelection()]
fill_holes = self.check_box_holes.GetValue()
keep_largest = self.check_box_largest.GetValue()
return {"index": mask_index,
"name": surface_name,
"quality": quality,
"fill": fill_holes,
"keep_largest": keep_largest,
"overwrite": False}
class CAOptions(wx.Panel):
'''
Options related to Context aware algorithm:
Angle: The min angle to a vertex to be considered a staircase vertex;
Max distance: The max distance a normal vertex must be to calculate its
weighting;
Min Weighting: The min weight a vertex must have;
Steps: The number of iterations the smoothing algorithm have to do.
'''
def __init__(self, parent):
wx.Panel.__init__(self, parent, -1)
self._build_widgets()
def _build_widgets(self):
sb = wx.StaticBox(self, -1, _('Options'))
self.angle = floatspin.FloatSpin(self, -1, value=0.7, min_val=0.0,
max_val=1.0, increment=0.1,
digits=1)
self.max_distance = floatspin.FloatSpin(self, -1, value=3.0, min_val=0.0,
max_val=100.0, increment=0.1,
digits=2)
self.min_weight = floatspin.FloatSpin(self, -1, value=0.2, min_val=0.0,
max_val=1.0, increment=0.1,
digits=1)
self.steps = wx.SpinCtrl(self, -1, value='10', min=1, max=100)
layout_sizer = wx.FlexGridSizer(rows=4, cols=2, hgap=5, vgap=5)
layout_sizer.Add(wx.StaticText(self, -1, _(u'Angle:')), 0, wx.EXPAND)
layout_sizer.Add(self.angle, 0, wx.EXPAND)
layout_sizer.Add(wx.StaticText(self, -1, _(u'Max. distance:')), 0, wx.EXPAND)
layout_sizer.Add(self.max_distance, 0, wx.EXPAND)
layout_sizer.Add(wx.StaticText(self, -1, _(u'Min. weight:')), 0, wx.EXPAND)
layout_sizer.Add(self.min_weight, 0, wx.EXPAND)
layout_sizer.Add(wx.StaticText(self, -1, _(u'N. steps:')), 0, wx.EXPAND)
layout_sizer.Add(self.steps, 0, wx.EXPAND)
self.main_sizer = wx.StaticBoxSizer(sb, wx.VERTICAL)
self.main_sizer.Add(layout_sizer, 0, wx.EXPAND | wx.ALL, 5)
self.SetSizer(self.main_sizer)
class SurfaceMethodPanel(wx.Panel):
'''
This dialog is only shown when the mask whose surface will be generate was
edited. So far, the only options available are the choice of method to
generate the surface, Binary or `Context aware smoothing', and options from
`Context aware smoothing'
'''
def __init__(self, parent, id, mask_edited=False):
wx.Panel.__init__(self, parent, id)
self.mask_edited = mask_edited
self.alg_types = {_(u'Default'): 'Default',
_(u'Context aware smoothing'): 'ca_smoothing',
_(u'Binary'): 'Binary'}
self.edited_imp = [_(u'Default'), ]
self._build_widgets()
self._bind_wx()
def _build_widgets(self):
self.ca_options = CAOptions(self)
self.cb_types = wx.ComboBox(self, -1, _(u'Default'),
choices=[i for i in sorted(self.alg_types)
if not (self.mask_edited and i in self.edited_imp)],
style=wx.CB_READONLY)
w, h = self.cb_types.GetSizeTuple()
icon = wx.ArtProvider.GetBitmap(wx.ART_INFORMATION, wx.ART_MESSAGE_BOX,
(h * 0.8, h * 0.8))
self.bmp = wx.StaticBitmap(self, -1, icon)
self.bmp.SetToolTipString(_("It is not possible to use the Default method because the mask was edited."))
self.method_sizer = wx.BoxSizer(wx.HORIZONTAL)
self.method_sizer.Add(wx.StaticText(self, -1, _(u'Method:')), 0,
wx.EXPAND | wx.ALL, 5)
self.method_sizer.Add(self.cb_types, 1, wx.EXPAND)
self.method_sizer.Add(self.bmp, 0, wx.EXPAND|wx.ALL, 5)
self.main_sizer = wx.BoxSizer(wx.VERTICAL)
self.main_sizer.Add(self.method_sizer, 0, wx.EXPAND | wx.ALL, 5)
self.main_sizer.Add(self.ca_options, 0, wx.EXPAND | wx.ALL, 5)
self.SetSizer(self.main_sizer)
self.Layout()
self.Fit()
if self.mask_edited:
self.cb_types.SetValue(_(u'Context aware smoothing'))
self.ca_options.Enable()
self.method_sizer.Show(self.bmp)
else:
self.ca_options.Disable()
self.method_sizer.Hide(self.bmp)
def _bind_wx(self):
self.cb_types.Bind(wx.EVT_COMBOBOX, self._set_cb_types)
def _set_cb_types(self, evt):
if self.alg_types[evt.GetString()] == 'ca_smoothing':
self.ca_options.Enable()
else:
self.ca_options.Disable()
evt.Skip()
def GetAlgorithmSelected(self):
try:
return self.alg_types[self.cb_types.GetValue()]
except KeyError:
return self.alg_types[0]
def GetOptions(self):
if self.GetAlgorithmSelected() == 'ca_smoothing':
options = {'angle': self.ca_options.angle.GetValue(),
'max distance': self.ca_options.max_distance.GetValue(),
'min weight': self.ca_options.min_weight.GetValue(),
'steps': self.ca_options.steps.GetValue()}
else:
options = {}
return options
def GetValue(self):
algorithm = self.GetAlgorithmSelected()
options = self.GetOptions()
return {"algorithm": algorithm,
"options": options}
def ReloadMethodsOptions(self):
self.cb_types.Clear()
self.cb_types.AppendItems([i for i in sorted(self.alg_types)
if not (self.mask_edited and i in self.edited_imp)])
if self.mask_edited:
self.cb_types.SetValue(_(u'Context aware smoothing'))
self.ca_options.Enable()
self.method_sizer.Show(self.bmp)
else:
self.cb_types.SetValue(_(u'Default'))
self.ca_options.Disable()
self.method_sizer.Hide(self.bmp)
self.method_sizer.Layout()
class ClutImagedataDialog(wx.Dialog):
def __init__(self, histogram, init, end, nodes=None):
pre = wx.PreDialog()
pre.Create(wx.GetApp().GetTopWindow(), -1, style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT)
self.PostCreate(pre)
self.histogram = histogram
self.init = init
self.end = end
self.nodes = nodes
self._init_gui()
self.bind_events()
self.bind_events_wx()
def _init_gui(self):
self.clut_widget = CLUTImageDataWidget(self, -1, self.histogram,
self.init, self.end, self.nodes)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.clut_widget, 1, wx.EXPAND)
self.SetSizer(sizer)
self.Fit()
def bind_events_wx(self):
self.clut_widget.Bind(EVT_CLUT_NODE_CHANGED, self.OnClutChange)
def bind_events(self):
Publisher.subscribe(self._refresh_widget, 'Update clut imagedata widget')
def OnClutChange(self, evt):
Publisher.sendMessage('Change colour table from background image from widget',
evt.GetNodes())
Publisher.sendMessage('Update window level text',
(self.clut_widget.window_width,
self.clut_widget.window_level))
def _refresh_widget(self, pubsub_evt):
self.clut_widget.Refresh()
def Show(self, gen_evt=True, show=True):
super(wx.Dialog, self).Show(show)
if gen_evt:
self.clut_widget._generate_event()
class WatershedOptionsPanel(wx.Panel):
def __init__(self, parent, config):
wx.Panel.__init__(self, parent)
self.algorithms = ("Watershed", "Watershed IFT")
self.con2d_choices = (4, 8)
self.con3d_choices = (6, 18, 26)
self.config = config
self._init_gui()
def _init_gui(self):
self.choice_algorithm = wx.RadioBox(self, -1, _(u"Method"),
choices=self.algorithms,
style=wx.NO_BORDER | wx.HORIZONTAL)
self.choice_algorithm.SetSelection(self.algorithms.index(self.config.algorithm))
self.choice_2dcon = wx.RadioBox(self, -1, "2D",
choices=[str(i) for i in self.con2d_choices],
style=wx.NO_BORDER | wx.HORIZONTAL)
self.choice_2dcon.SetSelection(self.con2d_choices.index(self.config.con_2d))
self.choice_3dcon = wx.RadioBox(self, -1, "3D",
choices=[str(i) for i in self.con3d_choices],
style=wx.NO_BORDER | wx.HORIZONTAL)
self.choice_3dcon.SetSelection(self.con3d_choices.index(self.config.con_3d))
self.gaussian_size = wx.SpinCtrl(self, -1, "", min=1, max=10)
self.gaussian_size.SetValue(self.config.mg_size)
box_sizer = wx.StaticBoxSizer(wx.StaticBox(self, -1, "Conectivity"), wx.VERTICAL)
box_sizer.Add(self.choice_2dcon, 0, wx.ALIGN_CENTER_VERTICAL,2)
box_sizer.Add(self.choice_3dcon, 0, wx.ALIGN_CENTER_VERTICAL,2)
g_sizer = wx.BoxSizer(wx.HORIZONTAL)
g_sizer.Add(wx.StaticText(self, -1, _("Gaussian sigma")), 0, wx.ALIGN_RIGHT | wx.ALL, 5)
g_sizer.Add(self.gaussian_size, 0, wx.ALIGN_LEFT | wx.ALL, 5)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(self.choice_algorithm, 0, wx.ALIGN_CENTER_VERTICAL,2)
sizer.Add(box_sizer, 1, wx.EXPAND,2)
sizer.Add(g_sizer, 0, wx.ALIGN_LEFT, 2)
self.SetSizer(sizer)
sizer.Fit(self)
self.Layout()
def apply_options(self):
self.config.algorithm = self.algorithms[self.choice_algorithm.GetSelection()]
self.config.con_2d = self.con2d_choices[self.choice_2dcon.GetSelection()]
self.config.con_3d = self.con3d_choices[self.choice_3dcon.GetSelection()]
self.config.mg_size = self.gaussian_size.GetValue()
class WatershedOptionsDialog(wx.Dialog):
def __init__(self, config):
pre = wx.PreDialog()
pre.Create(wx.GetApp().GetTopWindow(), -1, _(u'Watershed'), style=wx.DEFAULT_DIALOG_STYLE|wx.FRAME_FLOAT_ON_PARENT)
self.PostCreate(pre)
self.config = config
self._init_gui()
def _init_gui(self):
wop = WatershedOptionsPanel(self, self.config)
self.wop = wop
sizer = wx.BoxSizer(wx.VERTICAL)
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
sizer.Add(wop, 0, wx.EXPAND)
sizer.Add(btnsizer, 0, wx.EXPAND)
sizer.AddSpacer(5)
self.SetSizer(sizer)
sizer.Fit(self)
self.Layout()
btn_ok.Bind(wx.EVT_BUTTON, self.OnOk)
self.CenterOnScreen()
def OnOk(self, evt):
self.wop.apply_options()
evt.Skip()
class MaskBooleanDialog(wx.Dialog):
def __init__(self, masks):
wx.Dialog.__init__(self, wx.GetApp().GetTopWindow(), -1, _(u"Boolean operations"))
self._init_gui(masks)
self.CenterOnScreen()
def _init_gui(self, masks):
mask_choices = [(masks[i].name, masks[i]) for i in sorted(masks)]
self.mask1 = wx.ComboBox(self, -1, mask_choices[0][0], choices=[])
self.mask2 = wx.ComboBox(self, -1, mask_choices[0][0], choices=[])
for n, m in mask_choices:
self.mask1.Append(n, m)
self.mask2.Append(n, m)
self.mask1.SetSelection(0)
if len(mask_choices) > 1:
self.mask2.SetSelection(1)
else:
self.mask2.SetSelection(0)
icon_folder = '../icons/'
op_choices = ((_(u"Union"), const.BOOLEAN_UNION, 'bool_union.png'),
(_(u"Difference"), const.BOOLEAN_DIFF, 'bool_difference.png'),
(_(u"Intersection"), const.BOOLEAN_AND, 'bool_intersection.png'),
(_(u"Exclusive disjunction"), const.BOOLEAN_XOR, 'bool_disjunction.png'))
self.op_boolean = wx.combo.BitmapComboBox(self, -1, op_choices[0][0], choices=[])
for n, i, f in op_choices:
bmp = wx.Bitmap(os.path.join(icon_folder, f), wx.BITMAP_TYPE_PNG)
self.op_boolean.Append(n, bmp, i)
self.op_boolean.SetSelection(0)
btn_ok = wx.Button(self, wx.ID_OK)
btn_ok.SetDefault()
btn_cancel = wx.Button(self, wx.ID_CANCEL)
btnsizer = wx.StdDialogButtonSizer()
btnsizer.AddButton(btn_ok)
btnsizer.AddButton(btn_cancel)
btnsizer.Realize()
gsizer = wx.FlexGridSizer(rows=3, cols=2, hgap=5, vgap=5)
gsizer.Add(wx.StaticText(self, -1, _(u"Mask 1")))
gsizer.Add(self.mask1, 1, wx.EXPAND)
gsizer.Add(wx.StaticText(self, -1, _(u"Operation")))
gsizer.Add(self.op_boolean, 1, wx.EXPAND)
gsizer.Add(wx.StaticText(self, -1, _(u"Mask 2")))
gsizer.Add(self.mask2, 1, wx.EXPAND)
sizer = wx.BoxSizer(wx.VERTICAL)
sizer.Add(gsizer, 0, wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)
sizer.Add(btnsizer, 0, wx.EXPAND | wx.ALIGN_CENTER | wx.ALL, border=5)
self.SetSizer(sizer)
sizer.Fit(self)
btn_ok.Bind(wx.EVT_BUTTON, self.OnOk)
def OnOk(self, evt):
op = self.op_boolean.GetClientData(self.op_boolean.GetSelection())
m1 = self.mask1.GetClientData(self.mask1.GetSelection())
m2 = self.mask2.GetClientData(self.mask2.GetSelection())
Publisher.sendMessage('Do boolean operation', (op, m1, m2))
Publisher.sendMessage('Reload actual slice')
Publisher.sendMessage('Refresh viewer')
self.Close()
self.Destroy()