-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdemo_parallelbeam_ct.m
99 lines (80 loc) · 3.42 KB
/
demo_parallelbeam_ct.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
clear ;
close all;
%%
restoredefaultpath();
addpath('./lib');
addpath('./util');
%% X-ray CT System parameters
% dAngle: Measure from 0 until the angle [degree; (float)]
% nView : # of the views [element; (uint)]
% dView : Gap between view_(k) - view_(k-1) [degree; (float)]
% DSO : Distance from the Source to the Object [mm; (float)]
% DSD : Distance from the Source to the Detector [mm; (float)]
param.dAngle = 360;
param.nView = 360;
param.dView = param.dAngle/param.nView;
param.DSO = 400;
param.DSD = 800;
%% X-ray CT Detector parameters
% dDctY, dDctX : Detector pitch [mm; (float)]
% nDctY, nDctX : Number of detector [element; (uint)]
% dOffsetDctY, dOffsetDctX : Index of shifted detector [element; (float; +, -)]
% compute_filtering : Filtering method, choise=['conv', 'fft'; (string)]
%--------------------------------------------------
% '*DctY' parameters are only used when 3D CT system.
%--------------------------------------------------
param.dDctY = [];
param.dDctX = 0.7;
param.nDctY = [];
param.nDctX = 400;
param.dOffsetDctY = [];
param.dOffsetDctX = 20;
param.compute_filtering = 'fft';
%% Image Object parameters
% dImgY, dImgX, dImgZ : Pixel resolution [mm; (float)]
% nImgY, nImgX, nImgZ : Matrix size of image [element; (uint)]s
% dOffsetImgY, dOffsetImgX, dOffsetImgZ : Index of shifted image [element; (float; +, -)]
%--------------------------------------------------
% '*ImgZ' parameters are only used when 3D CT system.
%--------------------------------------------------
param.dImgY = 1;
param.dImgX = 1;
param.dImgZ = [];
param.nImgY = 256;
param.nImgX = 256;
param.nImgZ = [];
param.dOffsetImgY = 0;
param.dOffsetImgX = 0;
param.dOffsetImgZ = [];
%% Load image
fid = fopen(num2str(param.nImgY, 'input%d.raw'), 'rb');
input = single(fread(fid, [param.nImgY, param.nImgX], 'single'));
fclose(fid);
%% Run implemented function
disp ('implementation ver.')
disp ('projection - implementation of Ch.3 Equation (3.5) & (3.6)');
tic;
prj = projection(input, param);
toc;
disp ('filtering - implementation of Ch.3 Equation (3.21) & (3.29) & (3.30)');
tic;
prj_flt = filtering(prj, param);
toc;
disp ('backprojection - implementation of Ch.3 Equation (3.22)');
tic;
output = backprojection(prj_flt, param);
toc;
%% Display reconstruction images
wndImg = [0, max(input(:))];
figure('name', 'parallel-beam CT'); colormap gray;
subplot(2,3,1); imagesc(input, wndImg);
axis image; xlabel('X-axis'); ylabel('Y-axis'); title('ground truth');
subplot(2,3,2); imagesc(output, wndImg);
axis image; xlabel('X-axis'); ylabel('Y-axis'); title(['reconstruction_{implementation, # of view = ' num2str(param.nView) '}']);
subplot(2,3,3); imagesc(input - output);
axis image; xlabel('X-axis'); ylabel('Y-axis'); title({'difference', 'ground truch - reconstruction'});
subplot(2,3,[4,6]); imagesc(prj);
xlabel(['Angle ( \Delta\theta : ' num2str(param.dView) ' \circ )']); ylabel('Detector'); title(['sinogram_{implementation, # of view = ' num2str(param.nView) '}']);
ax = gca;
ax.XTick = linspace(0, param.nView, 10);
ax.XTickLabel = linspace(0, param.dAngle, 10);