-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathReconstruction.m
184 lines (155 loc) · 5.5 KB
/
Reconstruction.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
%% Author: Rodrigo de Barros Vimieiro
% Date: April, 2018
% rodrigo.vimieiro@gmail.com
% =========================================================================
%{
%
% DESCRIPTION:
%
% The goal of this software is to present an open source reconstruction
% toolbox, which features the four basic types of DBT reconstruction,
% with the possibility of different acquisition geometries. This
% toolbox is intended for academic usage. Since it is an open source
% toolbox, researchers are welcome to contribute to the current version
% of the software.
%
% Department of Electrical and Computer Engineering,
% São Carlos School of Engineering,
% University of São Paulo,
% São Carlos, Brazil.
%
% ---------------------------------------------------------------------
% Copyright (C) <2018> <Rodrigo de Barros Vimieiro>
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
%
%}
% =========================================================================
%% Reconstruction Code %%
close all;clear;clc
%% Global parameters
global showinfo saveinfo animation
showinfo = uint8(1); % Show projection animation
saveinfo = uint8(1); % Save reconstructed volume
animation = uint8(1); % Graphical animation
%% GUI - Data decision
answer = questdlg('Load Clinical images or create a Shepp-Logan Phantom?', ...
'Data decision', ...
'Clinical','Shepp-Logan','Shepp-Logan');
% Handle response
switch answer
case 'Clinical'
fprintf('Waiting for Clinical images \n')
data = 1;
case 'Shepp-Logan'
fprintf('Creating a Shepp-Logan phantom \n')
data = 2;
otherwise
fprintf('Cancelled by user \n');
return;
end
%% Load components
addpath(genpath('Functions'));
addpath(genpath('Parameters'));
if(~exist('Output','dir'))
mkdir('Output')
saveinfo = 1;
end
addpath('Output');
if(data == 1) % ** Dicom data **
ParameterSettings_GE
if(~exist(['Output',filesep,'Clinical'],'dir'))
mkdir(['Output',filesep,'Clinical'])
end
% Load Projection Data
uiwait(msgbox('Select the path of projection Dicom files.','Dicom','Warn'));
path_User = userpath;
path_ProjData = uigetdir(path_User);
if(path_ProjData == 0)
fprintf('Cancelled by user \n');
return;
else
userpath(path_ProjData)
[dataProj,infoDicom] = readDicom(path_ProjData,parameter);
parameter.bitDepth = infoDicom(:,1).BitDepth;
% Pre process projections
[dataProj,parameter] = dataPreprocess(dataProj,parameter);
end
else % ** Shepp-Logan data **
ParameterSettings_Phantom;
if(~exist(['Output',filesep,'Shepp-Logan'],'dir'))
mkdir(['Output',filesep,'Shepp-Logan'])
end
addpath(['Output',filesep,'Shepp-Logan']);
% Create Shepp-Logan phantom
data3d = single(phantom3d('Modified Shepp-Logan', parameter.nz));
data3d(data3d<0) = eps;
% Make the Projections
if(animation || saveinfo)
% Create a figure of screen size
figureScreenSize()
dataProj = projection(data3d,parameter,[]);
if(saveinfo)
save(['Output',filesep,'Shepp-Logan',filesep,'proj.mat'],'dataProj')
infoDicom = [];
else
load proj.mat
end
else
load proj.mat
end
end
fprintf('Starting reconstruction \n');
%% Set specific recon parameters
nIter = [2,3,4,8]; % Iteration to be saved (MLEM or SART)
filterType = 'FBP'; % Filter type: 'BP', 'FBP'
cutoff = 0.75; % Percentage until cut off frequency (FBP)
%% Reconstruction methods
% ## Uncomment to use ##
dataRecon3d = FBP(dataProj,filterType,cutoff,parameter);
if(saveinfo)
saveData(dataRecon3d,parameter,answer,[],infoDicom);
end
% ## Uncomment to use ##
% dataRecon3d = MLEM(dataProj,nIter,parameter);
% if(saveinfo)
% saveData(dataRecon3d,parameter,answer,[],infoDicom);
% end
% ## Uncomment to use ##
% dataRecon3d = SART(dataProj,nIter,parameter);
% if(saveinfo)
% saveData(dataRecon3d,parameter,answer,[],infoDicom);
% end
% ## Uncomment to use ##
% dataRecon3d = SIRT(dataProj,nIter,parameter);
% if(saveinfo)
% saveData(dataRecon3d,parameter,answer,[],infoDicom);
% end
fprintf('Finished \n');
fprintf('Please, check "Output" folder for results \n');
%% Show info
if(animation && data == 2)
% Create a figure of screen size
figureScreenSize()
% 3D Backprojection Visualization
for k=1:parameter.nz
subplot(1,2,1)
imshow(data3d(:,:,k))
title(['Slice Orig ',num2str(k)]);axis on;
subplot(1,2,2)
imshow(dataRecon3d{1,end}(:,:,k),[])
title(['Slice Recon ',num2str(k)]);axis on;
pause(0.08)
end
end