-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathviewChamberCenter.m
970 lines (767 loc) · 37 KB
/
viewChamberCenter.m
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
function varargout = viewChamberCenter(varargin)
% VIEWCHAMBERCENTER M-file for viewChamberCenter.fig
% VIEWCHAMBERCENTER, by itself, creates a new VIEWCHAMBERCENTER or raises the existing
% singleton*.
%
% H = VIEWCHAMBERCENTER returns the handle to a new VIEWCHAMBERCENTER or the handle to
% the existing singleton*.
%
% VIEWCHAMBERCENTER('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in VIEWCHAMBERCENTER.M with the given input arguments.
%
% VIEWCHAMBERCENTER('Property','Value',...) creates a new VIEWCHAMBERCENTER or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before viewChamberCenter_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to viewChamberCenter_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one
% instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES
% Edit the above text to modify the response to help viewChamberCenter
% Last Modified by GUIDE v2.5 28-Jul-2010 18:41:16
% Begin initialization code - DO NOT EDIT
% Mani Subramaniyan 2009-06-26
% Note that a lot of the functions in this gui are not related to the function this gui performs
% since I copied and modified another gui to create this one. Sorry about that.
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @viewChamberCenter_OpeningFcn, ...
'gui_OutputFcn', @viewChamberCenter_OutputFcn, ...
'gui_LayoutFcn', [] , ...
'gui_Callback', []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before viewChamberCenter is made visible.
function viewChamberCenter_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to viewChamberCenter (see VARARGIN)
% Choose default command line output for viewChamberCenter
handles.output = hObject;
% handles.fileDir = 'Y:\structural\Ben\052407\Raw\head^Tolias\2007-05-24\204522-xxBX052407_3\007-AVERAGE';
handles.fileDir = getLocalPath('Y:\structural');
% handles.point = [300 365 4*12];
% set(handles.locX,'String',num2str(300));
% set(handles.locY,'String',num2str(365));
% set(handles.locZ,'String',num2str(12));
% handles.radius = 10;
% set(handles.chamberRadius,'String',num2str(10));
% handles.seeItOutSide = false;
% % Update handles structure
handles.mmPerPixelX = 0.25;
handles.mmPerPixelY = 0.25;
handles.mmPerPixelZ = 1;
handles.isChamberOnLeft = false;
handles.isChamberOnRight = true;
handles.isLeftIsRight = true;
set(handles.leftIsRight,'Value',handles.isLeftIsRight);
set(handles.chamberOnLeft,'Value',handles.isChamberOnLeft);
set(handles.chamberOnRight,'Value',handles.isChamberOnRight);
set(handles.millimeterPerPixelX,'String',num2str(handles.mmPerPixelX))
set(handles.millimeterPerPixelY,'String',num2str(handles.mmPerPixelY))
set(handles.millimeterPerPixelZ,'String',num2str(handles.mmPerPixelZ))
guidata(hObject, handles);
% UIWAIT makes viewChamberCenter wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = viewChamberCenter_OutputFcn(hObject, eventdata, handles)
% varargout cell array for returning output args (see VARARGOUT);
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
% --- Executes on button press in selectImageDir.
function selectImageDir_Callback(hObject, eventdata, handles)
% hObject handle to selectImageDir (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
dn = uigetdir(getLocalPath('Y:\structural\'),'select a Folder');
% fn and pn value will be zero if the user cancels the dialog.
if dn~=0
handles.fileDir = dn;
end
guidata(hObject, handles);
function TopSliceNumber_Callback(hObject, eventdata, handles)
% hObject handle to TopSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of TopSliceNumber as text
% str2double(get(hObject,'String')) returns contents of TopSliceNumber as a double
handles.TopSliceNumber = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function TopSliceNumber_CreateFcn(hObject, eventdata, handles)
% hObject handle to TopSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function BottomSliceNumber_Callback(hObject, eventdata, handles)
% hObject handle to BottomSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of BottomSliceNumber as text
% str2double(get(hObject,'String')) returns contents of BottomSliceNumber as a double
handles.BottomSliceNumber = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function BottomSliceNumber_CreateFcn(hObject, eventdata, handles)
% hObject handle to BottomSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in loadImages.
function loadImages_Callback(hObject, eventdata, handles)
% hObject handle to loadImages (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[foo topSliceNum] = fileparts(handles.topSliceFile);
[foo bottomSliceNum fileExtn] = fileparts(handles.bottomSliceFile);
handles.fileExtension = fileExtn;
handles.fileNameLength = length(topSliceNum);
handles.top = str2double(topSliceNum(end-1:end));
handles.bottom= str2double(bottomSliceNum(end-1:end));
handles.filePrefix = topSliceNum(1:end-2);
sn = sign(handles.top - handles.bottom);
% slices = handles.TopSliceNumber:sn:handles.BottomSliceNumber;
slices = handles.bottom:sn:handles.top;
handles.sliceOrderBottomToTop = slices;
handles.im = loadSet(handles);
guidata(hObject,handles)
% --- Executes on button press in skullExtraction.
function skullExtraction_Callback(hObject, eventdata, handles)
% hObject handle to skullExtraction (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
top = handles.TopSliceNumber;
bottom = handles.BottomSliceNumber;
im = handles.im;
mid = round(abs(top-bottom)/2);
th = thresh_tool(im(:,:,mid));
handles.skull = extractSkull(handles,th);
guidata(hObject,handles)
% --- Executes on slider movement.
function selectTh_Callback(hObject, eventdata, handles)
% hObject handle to selectTh (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'Value') returns position of slider
% get(hObject,'Min') and get(hObject,'Max') to determine range of slider
top = handles.TopSliceNumber;
bottom = handles.BottomSliceNumber;
mid = round(abs(top-bottom)/2);
forHist = handles.im(:,:,mid);
forHist = double(forHist(:));
axes(handles.cdataHistogram)
hist(double(forHist),200);
mini = min(forHist);
maxi = max(forHist);
th = mini + (maxi-mini)*get(hObject,'Value');
handles.finalBrain = polishBrain(handles,th);
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function selectTh_CreateFcn(hObject, eventdata, handles)
% hObject handle to selectTh (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor',[.9 .9 .9]);
end
% --- Executes on button press in closeImage.
function closeImage_Callback(hObject, eventdata, handles)
% hObject handle to closeImage (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.closedMask = im2uint16(imclose(handles.currentMask,strel('disk',15)));
showMontage((handles.closedMask),handles.currentSlice);
guidata(hObject,handles)
% --- Executes on slider movement.
function removeAir_Callback(hObject, eventdata, handles)
% hObject handle to removeAir (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'Value') returns position of slider
% get(hObject,'Min') and get(hObject,'Max') to determine range of slider
top = handles.TopSliceNumber;
bottom = handles.BottomSliceNumber;
mid = round(abs(top-bottom)/2);
forHist = handles.im(:,:,mid);
forHist = double(forHist(:));
% axes(handles.cdataHistogram)
% hist(double(forHist),200);
mini = min(forHist);
maxi = max(forHist);
th = mini + (maxi-mini)*get(hObject,'Value');
[handles.outside handles] = mapOutAir(handles,th);
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function removeAir_CreateFcn(hObject, eventdata, handles)
% hObject handle to removeAir (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor',[.9 .9 .9]);
end
% --- Executes on button press in passToSkullExtraction.
function passToSkullExtraction_Callback(hObject, eventdata, handles)
% hObject handle to passToSkullExtraction (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.toSkull = handles.outside;
guidata(hObject,handles)
function bigObjects_Callback(hObject, eventdata, handles)
% hObject handle to bigObjects (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of bigObjects as text
% str2double(get(hObject,'String')) returns contents of bigObjects as a double
% --- Executes during object creation, after setting all properties.
function bigObjects_CreateFcn(hObject, eventdata, handles)
% hObject handle to bigObjects (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on slider movement.
function selectedSliceNumber_Callback(hObject, eventdata, handles)
sliderVal = get(hObject,'Value');
handles.currentSliceNumber = ceil(((length(handles.sliceOrderBottomToTop)*sliderVal)));
if handles.currentSliceNumber==0
handles.currentSliceNumber = 1;
end
showCurrentSlice(handles,handles.currentSlice);
set(handles.punchedSliceNumber,'String',num2str(handles.currentSliceNumber));
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function selectedSliceNumber_CreateFcn(hObject, eventdata, handles)
% hObject handle to selectedSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor',[.9 .9 .9]);
end
function punchedSliceNumber_Callback(hObject, eventdata, handles)
% hObject handle to punchedSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.currentSliceNumber = str2double(get(hObject,'String'));
% set(handles.selectedSliceNumber,'Value',handles.currentSliceNumber);
showCurrentSlice(handles,handles.currentSlice);
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function punchedSliceNumber_CreateFcn(hObject, eventdata, handles)
% hObject handle to punchedSliceNumber (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in seeitHere.
function seeitHere_Callback(hObject, eventdata, handles)
axes(handles.finalImage);
D = handles.finalBrain;
D(D~=20000) = 5;
Ds = smooth3(D);
% Cut hole:
point = handles.point;
radius = handles.radius*4;
[X Y Z] = meshgrid((1:size(D,2)),(1:size(D,1)),4*(1:size(D,3)));
R = sqrt((X-point(1)).^2 + (Y-point(2)).^2 + (Z-point(3)).^2);
Ds(R>(radius-2) & R < radius) = 10000;
hiso = patch(isosurface(Ds,5,'verbose'),...
'FaceColor',[1,.75,.65],...
'EdgeColor','none');
daspect([1 1 0.25])
lightangle(45,30);
set(gcf,'Renderer','zbuffer'); lighting phong
% isonormals(Ds,hiso)
set(hiso,'SpecularColorReflectance',0,'SpecularExponent',50)
view(118,52)
% --- Executes on slider movement.
function brainTh_Callback(hObject, eventdata, handles)
% hObject handle to brainTh (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
sv = 10 + 500*get(hObject,'Value');
handles.bth = sv;
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function brainTh_CreateFcn(hObject, eventdata, handles)
% hObject handle to brainTh (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor',[.9 .9 .9]);
end
function chamberRadius_Callback(hObject, eventdata, handles)
% hObject handle to chamberRadius (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of chamberRadius as text
% str2double(get(hObject,'String')) returns contents of chamberRadius as a double
handles.radius = str2double(get(hObject,'String'));
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function chamberRadius_CreateFcn(hObject, eventdata, handles)
% hObject handle to chamberRadius (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function locX_Callback(hObject, eventdata, handles)
% hObject handle to locX (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of locX as text
% str2double(get(hObject,'String')) returns contents of locX as a double
handles.point(1) = str2double(get(hObject,'String'));
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function locX_CreateFcn(hObject, eventdata, handles)
% hObject handle to locX (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function locY_Callback(hObject, eventdata, handles)
% hObject handle to locY (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of locY as text
% str2double(get(hObject,'String')) returns contents of locY as a double
handles.point(2) = str2double(get(hObject,'String'));
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function locY_CreateFcn(hObject, eventdata, handles)
% hObject handle to locY (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function locZ_Callback(hObject, eventdata, handles)
% hObject handle to locZ (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of locZ as text
% str2double(get(hObject,'String')) returns contents of locZ as a double
handles.point(3) = 4*str2double(get(hObject,'String'));
guidata(hObject,handles)
% --- Executes during object creation, after setting all properties.
function locZ_CreateFcn(hObject, eventdata, handles)
% hObject handle to locZ (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in extractTheBrain.
function extractTheBrain_Callback(hObject, eventdata, handles)
handles.brain = extractBrain(handles);
guidata(hObject,handles);
% --- Executes on button press in saveBrainAs.
function saveBrainAs_Callback(hObject, eventdata, handles)
% hObject handle to saveBrainAs (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[file,path] = uiputfile('*.mat','Save Brain As');
b = handles.finalBrain;
save(fullfile(path,file),'b');
% --- Executes on button press in loadBrain.
function loadBrain_Callback(hObject, eventdata, handles)
% hObject handle to loadBrain (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[file,path] = uigetfile('*.mat','Select a Brain file');
if file~=0
f = load(fullfile(path,file));
fi = fields(f);
handles.brainData = f.(fi{:});
handles.finalBrain = handles.brainData.data;
guidata(hObject,handles);
showMontage(handles.finalBrain,handles.currentSlice)
end
% Sub-Functions:
%==========================================================================
function im = loadSet(handles,varargin)
% Load the files
nFiles = length(handles.sliceOrderBottomToTop);
% patStr = ['%0.' num2str(handles.fileNameLength) 'd' handles.fileExtension];
for iFile = 1:nFiles
imageFile = [handles.filePrefix num2str(handles.sliceOrderBottomToTop(iFile)) handles.fileExtension];
% imageFile = sprintf(patStr,handles.sliceOrderBottomToTop(iFile));
fname = fullfile(handles.fileDir,imageFile);
switch handles.fileExtension
case {'.png','.jpg','.jpeg','.gif','.tiff','.tif'}
imdata = imread(fname);
if handles.isLeftIsRight
im(:,:,iFile) = fliplr(imdata(:,:,1));
else
im(:,:,iFile) = imdata(:,:,1);
end
case {'.ima','.dcm','.IMA','.DCM'}
imdata = double(dicomread(fname));
imdata = uint8(imdata*double(intmax('uint8'))/max(max(imdata)));
if handles.isLeftIsRight
im(:,:,iFile) = fliplr(imdata(:,:,1));
else
im(:,:,iFile) = imdata(:,:,1);
end
end
a = waitbar(iFile/nFiles);
end
close(a)
handles.currentIm = im;
showMontage(im,handles.originalMontage)
%--------------------------------------------------------------------------
function showMontage(im,axisHandle)
for i = 1:size(im,3)
im2(:,:,1,i) = im(:,:,i);
end
axes(axisHandle)
cla
montage(im2);
%--------------------------------------------------------------------------
function brain = extractBrain(handles)
% skull = cleanUpForSteffan(handles.skull);
mk = im2uint16(imclose(handles.currentMask,strel('disk',15)));
skullFilled = imfill(mk,4,'holes');
brainMask = skullFilled & ~mk;
brainMask = bwlabeln(brainMask);
% pick biggest connected region
r = regionprops(brainMask);
area = [r.Area];
[foo idx] = max(area);
brainMask = brainMask == idx;
brain = handles.im;
brain(~brainMask) = 0;
showMontage(brain,handles.currentSlice)
function [airmap handles] = mapOutAir(handles,th)
% map out air around animal
airmap = handles.im;
L = bwlabeln(airmap < th,6);
stats = regionprops(L,'Area');
A = [stats.Area];
biggest = find(A==max(A));
outside = (L==biggest);
airmap(outside) = uint16(60000);
showMontage(airmap,handles.currentSlice)
[s ind] = sort(A,'descend');
handles.objectsOfInt = ind(1:6);
set(handles.bigObjects,'String',mat2str(s(1:8)));
handles.L = L;
% --- Executes on button press in seeItOutside.
function seeItOutside_Callback(hObject, eventdata, handles)
% hObject handle to seeItOutside (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
D = handles.finalBrain;
D(D~=20000) = 5;
Ds = smooth3(D);
% Cut hole:
point = handles.point;
radius = handles.radius*4;
[X Y Z] = meshgrid((1:size(D,2)),(1:size(D,1)),4*(1:size(D,3)));
R = sqrt((X-point(1)).^2 + (Y-point(2)).^2 + (Z-point(3)).^2);
Ds(R>(radius-2) & R < radius) = 10000;
% Mark the fundus
% Get the coordinates for brain surface penetration points for reaching the
% fundus of lunate sulcus.
absSliceNum = handles.brainData.sliceOrderOfData;
absFundusSliceNum = [handles.brainData.v2FundusNormals.sliceNum];
[c1 z] = intersect(absSliceNum,absFundusSliceNum);
x = [handles.brainData.v2FundusNormals.x];
y = [handles.brainData.v2FundusNormals.y];
figure
hiso = patch(isosurface(Ds,5),...
'FaceColor',[1,.75,.65],...
'EdgeColor','none');
daspect([1 1 0.25])
lightangle(45,30);
set(gcf,'Renderer','zbuffer'); lighting phong
% isonormals(Ds,hiso)
set(hiso,'SpecularColorReflectance',0,'SpecularExponent',50)
% view(118,52)
view(125,30)
hold on
plot3(x,y,z,'r.','MarkerSize',10);
function MedioLateralDist_Callback(hObject, eventdata, handles)
% hObject handle to MedioLateralDist (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.medioLateralDistance = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function MedioLateralDist_CreateFcn(hObject, eventdata, handles)
% hObject handle to MedioLateralDist (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function AnterioPosteriorDist_Callback(hObject, eventdata, handles)
% hObject handle to AnterioPosteriorDist (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.anterioPosteriorDistance = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function AnterioPosteriorDist_CreateFcn(hObject, eventdata, handles)
% hObject handle to AnterioPosteriorDist (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function showCurrentSlice(handles,axisHandle)
imMatrix = handles.im(:,:,handles.currentSliceNumber);
if get(handles.seeOutsideRadioButton,'Value')
figure(12345)
else
axes(handles.currentSlice)
end
imshow(imMatrix);
function millimeterPerPixelX_Callback(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelX (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of millimeterPerPixelX as text
% str2double(get(hObject,'String')) returns contents of millimeterPerPixelX as a double
handles.mmPerPixelX = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function millimeterPerPixelX_CreateFcn(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelX (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function millimeterPerPixelY_Callback(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelY (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of millimeterPerPixelY as text
% str2double(get(hObject,'String')) returns contents of millimeterPerPixelY as a double
handles.mmPerPixelY = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function millimeterPerPixelY_CreateFcn(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelY (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function millimeterPerPixelZ_Callback(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelZ (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of millimeterPerPixelZ as text
% str2double(get(hObject,'String')) returns contents of millimeterPerPixelZ as a double
handles.mmPerPixelZ = str2double(get(hObject,'String'));
guidata(hObject,handles);
% --- Executes during object creation, after setting all properties.
function millimeterPerPixelZ_CreateFcn(hObject, eventdata, handles)
% hObject handle to millimeterPerPixelZ (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in selectFrankfurtZeroPoint.
function selectFrankfurtZeroPoint_Callback(hObject, eventdata, handles)
% hObject handle to selectFrankfurtZeroPoint (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
axes(handles.currentSlice)
[x y] = ginput(1);
handles.frankfurtZeroXYpixels = [x y];
locStr = sprintf('%d,',(round([x y])));
locStr = locStr(1:end-1);
set(handles.displayFrankfurtZeroPoint,'String',locStr);
handles.frankfurtZeroSliceNumber = handles.currentSliceNumber;
guidata(hObject,handles)
% --- Executes on button press in showChamberCenter.
function showChamberCenter_Callback(hObject, eventdata, handles)
% hObject handle to showChamberCenter (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
xy = handles.frankfurtZeroXYpixels;
if get(handles.seeOutsideRadioButton,'Value')
figure(12345)
else
axes(handles.currentSlice)
end
if handles.isChamberOnLeft
cx = xy(1) - handles.medioLateralDistance * (1/handles.mmPerPixelX);
cy = xy(2) + handles.anterioPosteriorDistance * (1/handles.mmPerPixelY);
hold on;
plot(cx,cy,'go','MarkerFaceColor','g','MarkerSize',5)
chamberCenter(1,[1 2]) = [cx cy];
end
if handles.isChamberOnRight
cx = xy(1) + handles.medioLateralDistance * (1/handles.mmPerPixelX);
cy = xy(2) + handles.anterioPosteriorDistance * (1/handles.mmPerPixelY);
hold on;
plot(cx,cy,'go','MarkerFaceColor','g','MarkerSize',5)
if handles.isChamberOnLeft
chamberCenter(2,[1 2]) = [cx cy];
else
chamberCenter(1,[1 2]) = [cx cy];
end
end
locStr = sprintf('%d,',(round(chamberCenter)));
locStr = locStr(1:end-1);
set(handles.displayChamberCenterLoc,'String',locStr);
% --- Executes on button press in leftIsRight.
function leftIsRight_Callback(hObject, eventdata, handles)
% hObject handle to leftIsRight (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of leftIsRight
handles.isLeftIsRight = get(hObject,'Value');
guidata(hObject,handles);
% --- Executes on button press in chamberOnLeft.
function chamberOnLeft_Callback(hObject, eventdata, handles)
% hObject handle to chamberOnLeft (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of chamberOnLeft
handles.isChamberOnLeft = get(hObject,'Value');
guidata(hObject,handles)
% --- Executes on button press in chamberOnRight.
function chamberOnRight_Callback(hObject, eventdata, handles)
% hObject handle to chamberOnRight (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of chamberOnRight
handles.isChamberOnRight = get(hObject,'Value');
guidata(hObject,handles)
function displayFrankfurtZeroPoint_Callback(hObject, eventdata, handles)
% hObject handle to displayFrankfurtZeroPoint (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of displayFrankfurtZeroPoint as text
% str2double(get(hObject,'String')) returns contents of displayFrankfurtZeroPoint as a double
% --- Executes during object creation, after setting all properties.
function displayFrankfurtZeroPoint_CreateFcn(hObject, eventdata, handles)
% hObject handle to displayFrankfurtZeroPoint (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
function displayChamberCenterLoc_Callback(hObject, eventdata, handles)
% hObject handle to displayChamberCenterLoc (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of displayChamberCenterLoc as text
% str2double(get(hObject,'String')) returns contents of displayChamberCenterLoc as a double
% --- Executes during object creation, after setting all properties.
function displayChamberCenterLoc_CreateFcn(hObject, eventdata, handles)
% hObject handle to displayChamberCenterLoc (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in SelectBottomImageSlice.
function SelectBottomImageSlice_Callback(hObject, eventdata, handles)
% hObject handle to SelectBottomImageSlice (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
fileName = uigetfile('*.*','Select Bottom Image File',handles.fileDir);
% fn and pn value will be zero if the user cancels the dialog.
if fileName ~=0
handles.bottomSliceFile = fileName;
set(handles.BottomSliceNumber,'String',fileName);
end
guidata(hObject, handles);
% --- Executes on button press in selectTopImageSlice.
function selectTopImageSlice_Callback(hObject, eventdata, handles)
% hObject handle to selectTopImageSlice (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
fileName = uigetfile('*.*','Select Top Image File',handles.fileDir);
% fn and pn value will be zero if the user cancels the dialog.
if fileName ~=0
handles.topSliceFile = fileName;
set(handles.TopSliceNumber,'String',fileName);
end
guidata(hObject, handles);
% --- Executes on button press in selAndDispCustomImageButton.
function selAndDispCustomImageButton_Callback(hObject, eventdata, handles)
% hObject handle to selAndDispCustomImageButton (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[fileName pathName] = uigetfile('*.*','Select Bottom Image File',getLocalPath('y:\structural\'));
if get(handles.seeOutsideRadioButton,'Value')
figure(12345)
else
axes(handles.currentSlice)
end
imageData = imread(fullfile(pathName,fileName));
if handles.leftIsRight
imageData = fliplrn(imageData);
end
imshow(imageData);
% --- Executes on button press in seeOutsideRadioButton.
function seeOutsideRadioButton_Callback(hObject, eventdata, handles)
% hObject handle to seeOutsideRadioButton (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hint: get(hObject,'Value') returns toggle state of seeOutsideRadioButton