slice_.py
41.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
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
#--------------------------------------------------------------------------
# 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 math
import os
import tempfile
import numpy
import vtk
from wx.lib.pubsub import pub as Publisher
import constants as const
import converters
import imagedata_utils as iu
import style as st
import session as ses
import utils
from mask import Mask
from project import Project
class SliceBuffer(object):
"""
This class is used as buffer that mantains the vtkImageData and numpy array
from actual slices from each orientation.
"""
def __init__(self):
self.index = -1
self.image = None
self.mask = None
self.vtk_image = None
self.vtk_mask = None
def discard_vtk_mask(self):
self.vtk_mask = None
def discard_vtk_image(self):
self.vtk_image = None
def discard_mask(self):
self.mask = None
def discard_image(self):
self.image = None
def discard_buffer(self):
self.index = -1
self.image = None
self.mask = None
self.vtk_image = None
self.vtk_mask = None
class Slice(object):
__metaclass__= utils.Singleton
# Only one slice will be initialized per time (despite several viewers
# show it from distinct perspectives).
# Therefore, we use Singleton design pattern for implementing it.
def __init__(self):
self.imagedata = None
self.current_mask = None
self.blend_filter = None
self.matrix = None
self.spacing = (1.0, 1.0, 1.0)
self.number_of_colours = 256
self.saturation_range = (0, 0)
self.hue_range = (0, 0)
self.value_range = (0, 1)
self.buffer_slices = {"AXIAL": SliceBuffer(),
"CORONAL": SliceBuffer(),
"SAGITAL": SliceBuffer()}
self.num_gradient = 0
self.interaction_style = st.StyleStateManager()
self.__bind_events()
def __bind_events(self):
# General slice control
Publisher.subscribe(self.CreateSurfaceFromIndex,
'Create surface from index')
# Mask control
Publisher.subscribe(self.__add_mask_thresh, 'Create new mask')
Publisher.subscribe(self.__select_current_mask,
'Change mask selected')
# Mask properties
Publisher.subscribe(self.__set_current_mask_edition_threshold,
'Set edition threshold values')
Publisher.subscribe(self.__set_current_mask_threshold,
'Set threshold values')
Publisher.subscribe(self.__set_current_mask_threshold_actual_slice,
'Changing threshold values')
Publisher.subscribe(self.__set_current_mask_colour,
'Change mask colour')
Publisher.subscribe(self.__set_mask_name, 'Change mask name')
Publisher.subscribe(self.__show_mask, 'Show mask')
Publisher.subscribe(self.__set_current_mask_threshold_limits,
'Update threshold limits')
Publisher.subscribe(self.UpdateWindowLevelBackground,\
'Bright and contrast adjustment image')
Publisher.subscribe(self.UpdateColourTableBackground,\
'Change colour table from background image')
Publisher.subscribe(self.InputImageWidget, 'Input Image in the widget')
Publisher.subscribe(self.OnExportMask,'Export mask to file')
Publisher.subscribe(self.OnCloseProject, 'Close project data')
Publisher.subscribe(self.OnEnableStyle, 'Enable style')
Publisher.subscribe(self.OnDisableStyle, 'Disable style')
Publisher.subscribe(self.OnRemoveMasks, 'Remove masks')
Publisher.subscribe(self.OnDuplicateMasks, 'Duplicate masks')
Publisher.subscribe(self.UpdateSlice3D,'Update slice 3D')
Publisher.subscribe(self.OnFlipVolume, 'Flip volume')
Publisher.subscribe(self.OnSwapVolumeAxes, 'Swap volume axes')
Publisher.subscribe(self.__undo_edition, 'Undo edition')
Publisher.subscribe(self.__redo_edition, 'Redo edition')
def GetMaxSliceNumber(self, orientation):
shape = self.matrix.shape
# Because matrix indexing starts with 0 so the last slice is the shape
# minu 1.
if orientation == 'AXIAL':
return shape[0] - 1
elif orientation == 'CORONAL':
return shape[1] - 1
elif orientation == 'SAGITAL':
return shape[2] - 1
def OnRemoveMasks(self, pubsub_evt):
selected_items = pubsub_evt.data
proj = Project()
for item in selected_items:
proj.RemoveMask(item)
# if the deleted mask is the current mask, cleans the current mask
# and discard from buffer all datas related to mask.
if self.current_mask is not None and item == self.current_mask.index:
self.current_mask = None
for buffer_ in self.buffer_slices.values():
buffer_.discard_vtk_mask()
buffer_.discard_mask()
Publisher.sendMessage('Reload actual slice')
def OnDuplicateMasks(self, pubsub_evt):
selected_items = pubsub_evt.data
proj = Project()
mask_dict = proj.mask_dict
for index in selected_items:
original_mask = mask_dict[index]
# compute copy name
name = original_mask.name
names_list = [mask_dict[i].name for i in mask_dict.keys()]
new_name = utils.next_copy_name(name, names_list)
# create new mask
self.CreateMask(imagedata = original_mask.imagedata,
name = new_name,
colour = original_mask.colour,
opacity = original_mask.opacity,
threshold_range = original_mask.threshold_range,
edition_threshold_range = original_mask.edition_threshold_range,
edited_points = original_mask.edited_points)
def OnEnableStyle(self, pubsub_evt):
state = pubsub_evt.data
if (state in const.SLICE_STYLES):
new_state = self.interaction_style.AddState(state)
Publisher.sendMessage('Set slice interaction style', new_state)
def OnDisableStyle(self, pubsub_evt):
state = pubsub_evt.data
if (state in const.SLICE_STYLES):
new_state = self.interaction_style.RemoveState(state)
Publisher.sendMessage('Set slice interaction style', new_state)
if (state == const.SLICE_STATE_EDITOR):
Publisher.sendMessage('Set interactor default cursor')
def OnCloseProject(self, pubsub_evt):
self.CloseProject()
def CloseProject(self):
self.imagedata = None
self.current_mask = None
Publisher.sendMessage('Select first item from slice menu')
#self.blend_filter = None
#self.blend_filter = None
#self.num_gradient = 0
def __set_current_mask_threshold_limits(self, pubsub_evt):
thresh_min = pubsub_evt.data[0]
thresh_max = pubsub_evt.data[1]
if self.current_mask:
index = self.current_mask.index
self.SetMaskEditionThreshold(index, (thresh_min, thresh_max))
#---------------------------------------------------------------------------
# BEGIN PUBSUB_EVT METHODS
#---------------------------------------------------------------------------
def __add_mask(self, pubsub_evt):
mask_name = pubsub_evt.data
self.CreateMask(name=mask_name)
self.SetMaskColour(self.current_mask.index, self.current_mask.colour)
def __add_mask_thresh(self, pubsub_evt):
mask_name = pubsub_evt.data[0]
thresh = pubsub_evt.data[1]
colour = pubsub_evt.data[2]
self.CreateMask(name=mask_name, threshold_range=thresh, colour =colour)
self.SetMaskColour(self.current_mask.index, self.current_mask.colour)
self.SelectCurrentMask(self.current_mask.index)
Publisher.sendMessage('Reload actual slice')
def __select_current_mask(self, pubsub_evt):
mask_index = pubsub_evt.data
self.SelectCurrentMask(mask_index)
#---------------------------------------------------------------------------
def __set_current_mask_edition_threshold(self, evt_pubsub):
if self.current_mask:
threshold_range = evt_pubsub.data
index = self.current_mask.index
self.SetMaskEditionThreshold(index, threshold_range)
def __set_current_mask_threshold(self, evt_pubsub):
threshold_range = evt_pubsub.data
index = self.current_mask.index
self.num_gradient += 1
self.current_mask.matrix[:] = 0
self.current_mask.clear_history()
# TODO: merge this code with apply_slice_buffer_to_mask
b_mask = self.buffer_slices["AXIAL"].mask
n = self.buffer_slices["AXIAL"].index + 1
self.current_mask.matrix[n, 1:, 1:] = b_mask
self.current_mask.matrix[n, 0, 0] = 1
b_mask = self.buffer_slices["CORONAL"].mask
n = self.buffer_slices["CORONAL"].index + 1
self.current_mask.matrix[1:, n, 1:] = b_mask
self.current_mask.matrix[0, n, 0] = 1
b_mask = self.buffer_slices["SAGITAL"].mask
n = self.buffer_slices["SAGITAL"].index + 1
self.current_mask.matrix[1:, 1:, n] = b_mask
self.current_mask.matrix[0, 0, n] = 1
def __set_current_mask_threshold_actual_slice(self, evt_pubsub):
threshold_range = evt_pubsub.data
index = self.current_mask.index
for orientation in self.buffer_slices:
self.buffer_slices[orientation].discard_vtk_mask()
self.SetMaskThreshold(index, threshold_range,
self.buffer_slices[orientation].index,
orientation)
self.num_gradient += 1
Publisher.sendMessage('Reload actual slice')
def __set_current_mask_colour(self, pubsub_evt):
# "if" is necessary because wx events are calling this before any mask
# has been created
if self.current_mask:
colour_wx = pubsub_evt.data
colour_vtk = [c/255.0 for c in colour_wx]
self.SetMaskColour(self.current_mask.index, colour_vtk)
def __set_mask_name(self, pubsub_evt):
index, name = pubsub_evt.data
self.SetMaskName(index, name)
def __show_mask(self, pubsub_evt):
# "if" is necessary because wx events are calling this before any mask
# has been created
print "__show_mask"
print "self.current_mask", self.current_mask
if self.current_mask:
index, value = pubsub_evt.data
self.ShowMask(index, value)
if not value:
Publisher.sendMessage('Select mask name in combo', -1)
def edit_mask_pixel(self, operation, index, position, radius, orientation):
mask = self.buffer_slices[orientation].mask
image = self.buffer_slices[orientation].image
thresh_min, thresh_max = self.current_mask.edition_threshold_range
if hasattr(position, '__iter__'):
py, px = position
if orientation == 'AXIAL':
sx = self.spacing[0]
sy = self.spacing[1]
elif orientation == 'CORONAL':
sx = self.spacing[0]
sy = self.spacing[2]
elif orientation == 'SAGITAL':
sx = self.spacing[2]
sy = self.spacing[1]
else:
if orientation == 'AXIAL':
sx = self.spacing[0]
sy = self.spacing[1]
py = position / mask.shape[1]
px = position % mask.shape[1]
elif orientation == 'CORONAL':
sx = self.spacing[0]
sy = self.spacing[2]
py = position / mask.shape[1]
px = position % mask.shape[1]
elif orientation == 'SAGITAL':
sx = self.spacing[2]
sy = self.spacing[1]
py = position / mask.shape[1]
px = position % mask.shape[1]
cx = index.shape[1] / 2 + 1
cy = index.shape[0] / 2 + 1
xi = px - index.shape[1] + cx
xf = xi + index.shape[1]
yi = py - index.shape[0] + cy
yf = yi + index.shape[0]
if yi < 0:
index = index[abs(yi):,:]
yi = 0
if yf > image.shape[0]:
index = index[:index.shape[0]-(yf-image.shape[0]), :]
yf = image.shape[0]
if xi < 0:
index = index[:,abs(xi):]
xi = 0
if xf > image.shape[1]:
index = index[:,:index.shape[1]-(xf-image.shape[1])]
xf = image.shape[1]
# Verifying if the points is over the image array.
if (not 0 < xi < image.shape[1] and not 0 < xf < image.shape[1]) or \
(not 0 < yi < image.shape[0] and not 0 < yf < image.shape[0]):
return
roi_m = mask[yi:yf,xi:xf]
roi_i = image[yi:yf, xi:xf]
if operation == const.BRUSH_THRESH:
# It's a trick to make points between threshold gets value 254
# (1 * 253 + 1) and out ones gets value 1 (0 * 253 + 1).
roi_m[index] = (((roi_i[index] >= thresh_min)
& (roi_i[index] <= thresh_max)) * 253) + 1
elif operation == const.BRUSH_DRAW:
roi_m[index] = 254
elif operation == const.BRUSH_ERASE:
roi_m[index] = 1
self.buffer_slices[orientation].discard_vtk_mask()
def GetSlices(self, orientation, slice_number):
if self.buffer_slices[orientation].index == slice_number:
if self.buffer_slices[orientation].vtk_image:
image = self.buffer_slices[orientation].vtk_image
else:
n_image = self.get_image_slice(orientation, slice_number)
image = converters.to_vtk(n_image, self.spacing, slice_number, orientation)
ww_wl_image = self.do_ww_wl(image)
image = self.do_colour_image(ww_wl_image)
if self.current_mask and self.current_mask.is_shown:
if self.buffer_slices[orientation].vtk_mask:
print "Getting from buffer"
mask = self.buffer_slices[orientation].vtk_mask
else:
print "Do not getting from buffer"
n_mask = self.get_mask_slice(orientation, slice_number)
mask = converters.to_vtk(n_mask, self.spacing, slice_number, orientation)
mask = self.do_colour_mask(mask)
self.buffer_slices[orientation].mask = n_mask
final_image = self.do_blend(image, mask)
self.buffer_slices[orientation].vtk_mask = mask
else:
final_image = image
self.buffer_slices[orientation].vtk_image = image
else:
n_image = self.get_image_slice(orientation, slice_number)
image = converters.to_vtk(n_image, self.spacing, slice_number, orientation)
ww_wl_image = self.do_ww_wl(image)
image = self.do_colour_image(ww_wl_image)
if self.current_mask and self.current_mask.is_shown:
n_mask = self.get_mask_slice(orientation, slice_number)
mask = converters.to_vtk(n_mask, self.spacing, slice_number, orientation)
mask = self.do_colour_mask(mask)
final_image = self.do_blend(image, mask)
else:
n_mask = None
final_image = image
mask = None
self.buffer_slices[orientation].index = slice_number
self.buffer_slices[orientation].image = n_image
self.buffer_slices[orientation].mask = n_mask
self.buffer_slices[orientation].vtk_image = image
self.buffer_slices[orientation].vtk_mask = mask
return final_image
def get_image_slice(self, orientation, slice_number):
if self.buffer_slices[orientation].index == slice_number \
and self.buffer_slices[orientation].image is not None:
n_image = self.buffer_slices[orientation].image
else:
if orientation == 'AXIAL':
n_image = numpy.array(self.matrix[slice_number])
elif orientation == 'CORONAL':
n_image = numpy.array(self.matrix[..., slice_number, ...])
elif orientation == 'SAGITAL':
n_image = numpy.array(self.matrix[..., ..., slice_number])
return n_image
def get_mask_slice(self, orientation, slice_number):
"""
It gets the from actual mask the given slice from given orientation
"""
# It's necessary because the first position for each dimension from
# mask matrix is used as flags to control if the mask in the
# slice_number position has been generated.
if self.buffer_slices[orientation].index == slice_number \
and self.buffer_slices[orientation].mask is not None:
return self.buffer_slices[orientation].mask
n = slice_number + 1
if orientation == 'AXIAL':
if self.current_mask.matrix[n, 0, 0] == 0:
mask = self.current_mask.matrix[n, 1:, 1:]
mask[:] = self.do_threshold_to_a_slice(self.get_image_slice(orientation,
slice_number),
mask)
self.current_mask.matrix[n, 0, 0] = 1
n_mask = numpy.array(self.current_mask.matrix[n, 1:, 1:],
dtype=self.current_mask.matrix.dtype)
elif orientation == 'CORONAL':
if self.current_mask.matrix[0, n, 0] == 0:
mask = self.current_mask.matrix[1:, n, 1:]
mask[:] = self.do_threshold_to_a_slice(self.get_image_slice(orientation,
slice_number),
mask)
self.current_mask.matrix[0, n, 0] = 1
n_mask = numpy.array(self.current_mask.matrix[1:, n, 1:],
dtype=self.current_mask.matrix.dtype)
elif orientation == 'SAGITAL':
if self.current_mask.matrix[0, 0, n] == 0:
mask = self.current_mask.matrix[1:, 1:, n]
mask[:] = self.do_threshold_to_a_slice(self.get_image_slice(orientation,
slice_number),
mask)
self.current_mask.matrix[0, 0, n] = 1
n_mask = numpy.array(self.current_mask.matrix[1:, 1:, n],
dtype=self.current_mask.matrix.dtype)
return n_mask
def GetNumberOfSlices(self, orientation):
if orientation == 'AXIAL':
return self.matrix.shape[0]
elif orientation == 'CORONAL':
return self.matrix.shape[1]
elif orientation == 'SAGITAL':
return self.matrix.shape[2]
def SetMaskColour(self, index, colour, update=True):
"Set a mask colour given its index and colour (RGB 0-1 values)"
proj = Project()
proj.mask_dict[index].colour = colour
(r,g,b) = colour
colour_wx = [r*255, g*255, b*255]
Publisher.sendMessage('Change mask colour in notebook',
(index, (r,g,b)))
Publisher.sendMessage('Set GUI items colour', colour_wx)
if update:
# Updating mask colour on vtkimagedata.
for buffer_ in self.buffer_slices.values():
buffer_.discard_vtk_mask()
Publisher.sendMessage('Reload actual slice')
session = ses.Session()
session.ChangeProject()
def SetMaskName(self, index, name):
"Rename a mask given its index and the new name"
proj = Project()
proj.mask_dict[index].name = name
session = ses.Session()
session.ChangeProject()
def SetMaskEditionThreshold(self, index, threshold_range):
"Set threshold bounds to be used while editing slice"
proj = Project()
proj.mask_dict[index].edition_threshold_range = threshold_range
def SetMaskThreshold(self, index, threshold_range, slice_number=None,
orientation=None):
"""
Set a mask threshold range given its index and tuple of min and max
threshold values.
If slice_number is None then all the threshold is calculated for all
slices, otherwise only to indicated slice.
"""
self.current_mask.was_edited = False
thresh_min, thresh_max = threshold_range
print "Threshold"
if self.current_mask.index == index:
# TODO: find out a better way to do threshold
if slice_number is None:
for n, slice_ in enumerate(self.matrix):
m = numpy.ones(slice_.shape, self.current_mask.matrix.dtype)
m[slice_ < thresh_min] = 0
m[slice_ > thresh_max] = 0
m[m == 1] = 255
self.current_mask.matrix[n+1, 1:, 1:] = m
else:
print "Only one slice"
slice_ = self.buffer_slices[orientation].image
self.buffer_slices[orientation].mask = (255 * ((slice_ >= thresh_min) & (slice_ <= thresh_max))).astype('uint8')
# Update viewer
#Publisher.sendMessage('Update slice viewer')
# Update data notebook (GUI)
Publisher.sendMessage('Set mask threshold in notebook',
(self.current_mask.index,
self.current_mask.threshold_range))
else:
proj = Project()
proj.mask_dict[index].threshold_range = threshold_range
proj = Project()
proj.mask_dict[self.current_mask.index].threshold_range = threshold_range
def ShowMask(self, index, value):
"Show a mask given its index and 'show' value (0: hide, other: show)"
print "Showing Mask"
proj = Project()
proj.mask_dict[index].is_shown = value
proj.mask_dict[index].on_show()
if (index == self.current_mask.index):
for buffer_ in self.buffer_slices.values():
buffer_.discard_vtk_mask()
buffer_.discard_mask()
Publisher.sendMessage('Reload actual slice')
#---------------------------------------------------------------------------
def SelectCurrentMask(self, index):
"Insert mask data, based on given index, into pipeline."
# This condition is not necessary in Linux, only under mac and windows
# because combobox event is binded when the same item is selected again.
#if index != self.current_mask.index:
print "SelectCurrentMask"
print "index:", index
proj = Project()
future_mask = proj.GetMask(index)
future_mask.is_shown = True
self.current_mask = future_mask
colour = future_mask.colour
#index = future_mask.index
print index
self.SetMaskColour(index, colour, update=False)
self.buffer_slices = {"AXIAL": SliceBuffer(),
"CORONAL": SliceBuffer(),
"SAGITAL": SliceBuffer()}
Publisher.sendMessage('Set mask threshold in notebook',
(index,
self.current_mask.threshold_range))
Publisher.sendMessage('Set threshold values in gradient',
self.current_mask.threshold_range)
Publisher.sendMessage('Select mask name in combo', index)
Publisher.sendMessage('Update slice viewer')
#---------------------------------------------------------------------------
def CreateSurfaceFromIndex(self, pubsub_evt):
print pubsub_evt.data
surface_parameters = pubsub_evt.data
proj = Project()
mask = proj.mask_dict[surface_parameters['options']['index']]
# This is very important. Do not use masks' imagedata. It would mess up
# surface quality event when using contour
#self.SetMaskThreshold(mask.index, threshold)
for n in xrange(1, mask.matrix.shape[0]):
if mask.matrix[n, 0, 0] == 0:
m = mask.matrix[n, 1:, 1:]
mask.matrix[n, 1:, 1:] = self.do_threshold_to_a_slice(self.matrix[n-1], m)
mask.matrix.flush()
Publisher.sendMessage('Create surface', (self, mask,
surface_parameters))
def GetOutput(self):
return self.blend_filter.GetOutput()
def SetInput(self, imagedata, mask_dict):
print "SETINPUT!"
self.imagedata = imagedata
self.extent = imagedata.GetExtent()
imagedata_bg = self.__create_background(imagedata)
if not mask_dict:
imagedata_mask = self.__build_mask(imagedata, create=True)
else:
self.__load_masks(imagedata, mask_dict)
imagedata_mask = self.img_colours_mask.GetOutput()
mask_opacity = self.current_mask.opacity
# blend both imagedatas, so it can be inserted into viewer
blend_filter = vtk.vtkImageBlend()
blend_filter.SetBlendModeToNormal()
blend_filter.SetOpacity(0, 1)
if self.current_mask.is_shown:
blend_filter.SetOpacity(1, mask_opacity)
else:
blend_filter.SetOpacity(1, 0)
blend_filter.SetInput(0, imagedata_bg)
blend_filter.SetInput(1, imagedata_mask)
blend_filter.SetBlendModeToNormal()
blend_filter.GetOutput().ReleaseDataFlagOn()
self.blend_filter = blend_filter
self.window_level = vtk.vtkImageMapToWindowLevelColors()
self.window_level.SetInput(self.imagedata)
def __create_background(self, imagedata):
thresh_min, thresh_max = imagedata.GetScalarRange()
Publisher.sendMessage('Update threshold limits list', (thresh_min,
thresh_max))
# map scalar values into colors
lut_bg = self.lut_bg = vtk.vtkLookupTable()
lut_bg.SetTableRange(thresh_min, thresh_max)
lut_bg.SetSaturationRange(0, 0)
lut_bg.SetHueRange(0, 0)
lut_bg.SetValueRange(0, 1)
lut_bg.Build()
# map the input image through a lookup table
img_colours_bg = self.img_colours_bg = vtk.vtkImageMapToColors()
img_colours_bg.SetOutputFormatToRGBA()
img_colours_bg.SetLookupTable(lut_bg)
img_colours_bg.SetInput(imagedata)
return img_colours_bg.GetOutput()
def UpdateWindowLevelBackground(self, pubsub_evt):
window, level = pubsub_evt.data
self.window_width = window
self.window_level = level
for buffer_ in self.buffer_slices.values():
buffer_.discard_vtk_image()
Publisher.sendMessage('Reload actual slice')
def UpdateColourTableBackground(self, pubsub_evt):
values = pubsub_evt.data
self.number_of_colours= values[0]
self.saturation_range = values[1]
self.hue_range = values[2]
self.value_range = values[3]
for buffer_ in self.buffer_slices.values():
buffer_.discard_vtk_image()
Publisher.sendMessage('Reload actual slice')
def InputImageWidget(self, pubsub_evt):
widget, orientation = pubsub_evt.data
original_orientation = Project().original_orientation
img = self.buffer_slices[orientation].vtk_image
cast = vtk.vtkImageCast()
cast.SetInput(img)
cast.SetOutputScalarTypeToDouble()
cast.ClampOverflowOn()
cast.Update()
#if (original_orientation == const.AXIAL):
flip = vtk.vtkImageFlip()
flip.SetInput(cast.GetOutput())
flip.SetFilteredAxis(1)
flip.FlipAboutOriginOn()
flip.Update()
widget.SetInput(flip.GetOutput())
#else:
#widget.SetInput(cast.GetOutput())
def UpdateSlice3D(self, pubsub_evt):
widget, orientation = pubsub_evt.data
img = self.buffer_slices[orientation].vtk_image
original_orientation = Project().original_orientation
cast = vtk.vtkImageCast()
cast.SetInput(img)
cast.SetOutputScalarTypeToDouble()
cast.ClampOverflowOn()
cast.Update()
#if (original_orientation == const.AXIAL):
flip = vtk.vtkImageFlip()
flip.SetInput(cast.GetOutput())
flip.SetFilteredAxis(1)
flip.FlipAboutOriginOn()
flip.Update()
widget.SetInput(flip.GetOutput())
#else:
#widget.SetInput(cast.GetOutput())
def CreateMask(self, imagedata=None, name=None, colour=None,
opacity=None, threshold_range=None,
edition_threshold_range = None,
edited_points=None):
# TODO: mask system to new system.
future_mask = Mask()
future_mask.create_mask(self.matrix.shape)
if name:
future_mask.name = name
if colour:
future_mask.colour = colour
if opacity:
future_mask.opacity = opacity
if edition_threshold_range:
future_mask.edition_threshold_range = edition_threshold_range
if edited_points:
future_mask.edited_points = edited_points
if threshold_range:
future_mask.threshold_range = threshold_range
# insert new mask into project and retrieve its index
proj = Project()
index = proj.AddMask(future_mask)
future_mask.index = index
## update gui related to mask
Publisher.sendMessage('Add mask',
(future_mask.index,
future_mask.name,
future_mask.threshold_range,
future_mask.colour))
self.current_mask = future_mask
Publisher.sendMessage('Change mask selected', future_mask.index)
Publisher.sendMessage('Update slice viewer')
def __load_masks(self, imagedata, mask_dict):
keys = mask_dict.keys()
keys.sort()
for key in keys:
mask = mask_dict[key]
# update gui related to mask
utils.debug("__load_masks")
utils.debug('THRESHOLD_RANGE %s'% mask.threshold_range)
Publisher.sendMessage('Add mask',
(mask.index,
mask.name,
mask.threshold_range,
mask.colour))
self.current_mask = mask
self.__build_mask(imagedata, False)
Publisher.sendMessage('Change mask selected', mask.index)
Publisher.sendMessage('Update slice viewer')
def do_ww_wl(self, image):
colorer = vtk.vtkImageMapToWindowLevelColors()
colorer.SetInput(image)
colorer.SetWindow(self.window_width)
colorer.SetLevel(self.window_level)
colorer.SetOutputFormatToRGB()
colorer.Update()
return colorer.GetOutput()
def do_threshold_to_a_slice(self, slice_matrix, mask):
"""
Based on the current threshold bounds generates a threshold mask to
given slice_matrix.
"""
thresh_min, thresh_max = self.current_mask.threshold_range
m = (((slice_matrix >= thresh_min) & (slice_matrix <= thresh_max)) * 255)
m[mask == 1] = 1
m[mask == 254] = 254
return m.astype('uint8')
def do_colour_image(self, imagedata):
# map scalar values into colors
lut_bg = vtk.vtkLookupTable()
lut_bg.SetTableRange(imagedata.GetScalarRange())
lut_bg.SetSaturationRange(self.saturation_range)
lut_bg.SetHueRange(self.hue_range)
lut_bg.SetValueRange(self.value_range)
lut_bg.Build()
# map the input image through a lookup table
img_colours_bg = vtk.vtkImageMapToColors()
img_colours_bg.SetOutputFormatToRGB()
img_colours_bg.SetLookupTable(lut_bg)
img_colours_bg.SetInput(imagedata)
img_colours_bg.Update()
return img_colours_bg.GetOutput()
def do_colour_mask(self, imagedata):
scalar_range = int(imagedata.GetScalarRange()[1])
r, g, b = self.current_mask.colour
# map scalar values into colors
lut_mask = vtk.vtkLookupTable()
lut_mask.SetNumberOfColors(256)
lut_mask.SetHueRange(const.THRESHOLD_HUE_RANGE)
lut_mask.SetSaturationRange(1, 1)
lut_mask.SetValueRange(0, 255)
lut_mask.SetRange(0, 255)
lut_mask.SetNumberOfTableValues(256)
lut_mask.SetTableValue(0, 0, 0, 0, 0.0)
lut_mask.SetTableValue(1, 0, 0, 0, 0.0)
lut_mask.SetTableValue(254, r, g, b, 1.0)
lut_mask.SetTableValue(255, r, g, b, 1.0)
lut_mask.SetRampToLinear()
lut_mask.Build()
# self.lut_mask = lut_mask
# map the input image through a lookup table
img_colours_mask = vtk.vtkImageMapToColors()
img_colours_mask.SetLookupTable(lut_mask)
img_colours_mask.SetOutputFormatToRGBA()
img_colours_mask.SetInput(imagedata)
img_colours_mask.Update()
# self.img_colours_mask = img_colours_mask
return img_colours_mask.GetOutput()
def do_blend(self, imagedata, mask):
"""
blend image with the mask.
"""
blend_imagedata = vtk.vtkImageBlend()
blend_imagedata.SetBlendModeToNormal()
# blend_imagedata.SetOpacity(0, 1.0)
blend_imagedata.SetOpacity(1, 0.8)
blend_imagedata.SetInput(imagedata)
blend_imagedata.AddInput(mask)
blend_imagedata.Update()
return blend_imagedata.GetOutput()
def apply_slice_buffer_to_mask(self, orientation):
"""
Apply the modifications (edition) in mask buffer to mask.
"""
b_mask = self.buffer_slices[orientation].mask
index = self.buffer_slices[orientation].index
# TODO: Voltar a usar marcacao na mascara
if orientation == 'AXIAL':
#if self.current_mask.matrix[index+1, 0, 0] != 2:
#self.current_mask.save_history(index, orientation,
#self.current_mask.matrix[index+1,1:,1:],
#clean=True)
p_mask = self.current_mask.matrix[index+1,1:,1:].copy()
self.current_mask.matrix[index+1,1:,1:] = b_mask
self.current_mask.matrix[index+1, 0, 0] = 2
elif orientation == 'CORONAL':
#if self.current_mask.matrix[0, index+1, 0] != 2:
#self.current_mask.save_history(index, orientation,
#self.current_mask.matrix[1:, index+1, 1:],
#clean=True)
p_mask = self.current_mask.matrix[1:, index+1, 1:].copy()
self.current_mask.matrix[1:, index+1, 1:] = b_mask
self.current_mask.matrix[0, index+1, 0] = 2
elif orientation == 'SAGITAL':
#if self.current_mask.matrix[0, 0, index+1] != 2:
#self.current_mask.save_history(index, orientation,
#self.current_mask.matrix[1:, 1:, index+1],
#clean=True)
p_mask = self.current_mask.matrix[1:, 1:, index+1].copy()
self.current_mask.matrix[1:, 1:, index+1] = b_mask
self.current_mask.matrix[0, 0, index+1] = 2
self.current_mask.save_history(index, orientation, b_mask, p_mask)
self.current_mask.was_edited = True
for o in self.buffer_slices:
if o != orientation:
self.buffer_slices[o].discard_mask()
self.buffer_slices[o].discard_vtk_mask()
Publisher.sendMessage('Reload actual slice')
def __undo_edition(self, pub_evt):
buffer_slices = self.buffer_slices
actual_slices = {"AXIAL": buffer_slices["AXIAL"].index,
"CORONAL": buffer_slices["CORONAL"].index,
"SAGITAL": buffer_slices["SAGITAL"].index,}
self.current_mask.undo_history(actual_slices)
for o in self.buffer_slices:
self.buffer_slices[o].discard_mask()
self.buffer_slices[o].discard_vtk_mask()
Publisher.sendMessage('Reload actual slice')
def __redo_edition(self, pub_evt):
buffer_slices = self.buffer_slices
actual_slices = {"AXIAL": buffer_slices["AXIAL"].index,
"CORONAL": buffer_slices["CORONAL"].index,
"SAGITAL": buffer_slices["SAGITAL"].index,}
self.current_mask.redo_history(actual_slices)
for o in self.buffer_slices:
self.buffer_slices[o].discard_mask()
self.buffer_slices[o].discard_vtk_mask()
Publisher.sendMessage('Reload actual slice')
def __build_mask(self, imagedata, create=True):
# create new mask instance and insert it into project
if create:
self.CreateMask(imagedata=imagedata)
current_mask = self.current_mask
# properties to be inserted into pipeline
scalar_range = int(imagedata.GetScalarRange()[1])
r,g,b = current_mask.colour
# map scalar values into colors
lut_mask = vtk.vtkLookupTable()
lut_mask.SetNumberOfTableValues(1)
lut_mask.SetNumberOfColors(1)
lut_mask.SetHueRange(const.THRESHOLD_HUE_RANGE)
lut_mask.SetSaturationRange(1, 1)
lut_mask.SetValueRange(1, 1)
lut_mask.SetNumberOfTableValues(scalar_range)
lut_mask.SetTableValue(1, r, g, b, 1.0)
lut_mask.SetTableValue(scalar_range - 1, r, g, b, 1.0)
lut_mask.SetRampToLinear()
lut_mask.Build()
self.lut_mask = lut_mask
mask_thresh_imagedata = self.__create_mask_threshold(imagedata)
if create:
# threshold pipeline
current_mask.imagedata.DeepCopy(mask_thresh_imagedata)
else:
mask_thresh_imagedata = self.current_mask.imagedata
# map the input image through a lookup table
img_colours_mask = vtk.vtkImageMapToColors()
img_colours_mask.SetOutputFormatToRGBA()
img_colours_mask.SetLookupTable(lut_mask)
img_colours_mask.SetInput(mask_thresh_imagedata)
self.img_colours_mask = img_colours_mask
return img_colours_mask.GetOutput()
def __create_mask_threshold(self, imagedata, threshold_range=None):
if not threshold_range:
thresh_min, thresh_max = self.current_mask.threshold_range
else:
thresh_min, thresh_max = threshold_range
# flexible threshold
img_thresh_mask = vtk.vtkImageThreshold()
img_thresh_mask.SetInValue(const.THRESHOLD_INVALUE)
img_thresh_mask.SetInput(imagedata)
img_thresh_mask.SetOutValue(const.THRESHOLD_OUTVALUE)
img_thresh_mask.ThresholdBetween(float(thresh_min), float(thresh_max))
img_thresh_mask.Update()
self.img_thresh_mask = img_thresh_mask
# copy of threshold output
imagedata_mask = vtk.vtkImageData()
imagedata_mask.DeepCopy(img_thresh_mask.GetOutput())
imagedata_mask.Update()
return imagedata_mask
def _open_image_matrix(self, filename, shape, dtype):
self.matrix_filename = filename
print ">>>", filename
self.matrix = numpy.memmap(filename, shape=shape, dtype=dtype,
mode='r+')
def OnFlipVolume(self, pubsub_evt):
axis = pubsub_evt.data
if axis == 0:
self.matrix[:] = self.matrix[::-1]
elif axis == 1:
self.matrix[:] = self.matrix[:, ::-1]
elif axis == 2:
self.matrix[:] = self.matrix[:, :, ::-1]
for buffer_ in self.buffer_slices.values():
buffer_.discard_buffer()
def OnSwapVolumeAxes(self, pubsub_evt):
axis0, axis1 = pubsub_evt.data
self.matrix = self.matrix.swapaxes(axis0, axis1)
if (axis0, axis1) == (2, 1):
self.spacing = self.spacing[1], self.spacing[0], self.spacing[2]
elif (axis0, axis1) == (2, 0):
self.spacing = self.spacing[2], self.spacing[1], self.spacing[0]
elif (axis0, axis1) == (1, 0):
self.spacing = self.spacing[0], self.spacing[2], self.spacing[1]
for buffer_ in self.buffer_slices.values():
buffer_.discard_buffer()
print type(self.matrix)
def OnExportMask(self, pubsub_evt):
#imagedata = self.current_mask.imagedata
imagedata = self.imagedata
filename, filetype = pubsub_evt.data
if (filetype == const.FILETYPE_IMAGEDATA):
iu.Export(imagedata, filename)