forked from nputs/Gannet2.0_nicksversion
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGannetMask_SiemensRDA.m
executable file
·252 lines (209 loc) · 9.34 KB
/
GannetMask_SiemensRDA.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
function MRS_struct = GannetMask_SiemensRDA(filename, nii_file, MRS_struct, ii, vox, kk)
% Creates a .nii file containing the voxel mask of the MRS voxel.
% Needs to be called from GannetCoRegister.
% Requires SPM8 or SPM12 to be added to the MATLAB path.
%
% Author:
% Dr. Georg Oeltzschner (Johns Hopkins University, 2018-07-28)
% goeltzs1@jhmi.edu
%
% Credits:
% The routine for correct determination of the phase and readout
% directions of the MRS voxel is adapted from
% vox2ras_rsolveAA.m
% (Dr. Rudolph Pienaar, Massachusetts General Hospital, Boston)
%
% History:
% 2018-07-28: Adapted GannetMask_SiemensTWIX for processing RDA.
warning('off','MATLAB:nearlySingularMatrix');
warning('off','MATLAB:qhullmx:InternalWarning');
if nargin == 2
MRS_struct.ii = 1;
ii = 1;
end
% Parse RDA filename and establish nifti voxelmask filename
[path,name,~] = fileparts(filename);
fidoutmask = fullfile(path,[name '_mask.nii']);
fid = fopen(filename);
disp(filename);
% Go through RDA header line by line and extract header info
head_start_text = '>>> Begin of header <<<';
head_end_text = '>>> End of header <<<';
tline = fgets(fid);
while (isempty(strfind(tline, head_end_text))) %#ok<*STREMP>
tline = fgets(fid);
if ( isempty(strfind(tline, head_start_text)) + isempty(strfind(tline, head_end_text)) == 2)
% Store this data in the appropriate format
occurence_of_colon = strfind(tline,':');
variable = tline(1:occurence_of_colon-1);
value = tline(occurence_of_colon+1 : length(tline));
switch variable
case {'VOINormalSag' , 'VOINormalCor' , 'VOINormalTra' , 'VOIPositionSag', 'VOIPositionCor', 'VOIPositionTra', 'VOIThickness','VOIReadoutFOV','VOIPhaseFOV','VOIRotationInPlane'}
eval(['rda.' , variable , ' = str2num(value); ']);
end
else
% Don't bother storing this bit of the output
end
end
MRS_struct.p.VoI_InPlaneRot(ii) = rda.VOIRotationInPlane;
MRS_struct.p.NormCor(ii) = rda.VOINormalCor;
MRS_struct.p.NormSag(ii) = rda.VOINormalSag;
MRS_struct.p.NormTra(ii) = rda.VOINormalTra;
MRS_struct.p.voxdim(ii,1) = rda.VOIPhaseFOV;
MRS_struct.p.voxdim(ii,2) = rda.VOIReadoutFOV;
MRS_struct.p.voxdim(ii,3) = rda.VOIThickness;
MRS_struct.p.voxoff(ii,1) = rda.VOIPositionSag;
MRS_struct.p.voxoff(ii,2) = rda.VOIPositionCor;
MRS_struct.p.voxoff(ii,3) = rda.VOIPositionTra;
fclose(fid);
% Extract voxel position and rotation parameters from MRS_struct
NormSag = MRS_struct.p.NormSag(ii);
NormCor = MRS_struct.p.NormCor(ii);
NormTra = MRS_struct.p.NormTra(ii);
VoI_InPlaneRot = MRS_struct.p.VoI_InPlaneRot(ii);
% Correct voxel offsets by table position (if field exists)
if isfield(MRS_struct.p,'TablePosition')
VoxOffs = [MRS_struct.p.voxoff(ii,1)+MRS_struct.p.TablePosition(ii,1) MRS_struct.p.voxoff(ii,2)+MRS_struct.p.TablePosition(ii,2) MRS_struct.p.voxoff(ii,3)+MRS_struct.p.TablePosition(ii,3)];
else
VoxOffs = [MRS_struct.p.voxoff(ii,1) MRS_struct.p.voxoff(ii,2) MRS_struct.p.voxoff(ii,3)];
end
% Parse direction cosines of the MRS voxel's normal vector and the rotation angle
% around the normal vector
% The direction cosine is the cosine of the angle between the normal
% vector and the respective direction.
% Example: If the normal vector points exactly along the FH direction, then:
% NormSag = cos(90) = 0, NormCor = cos(90) = 0, NormTra = cos(0) = 1.
Norm = [-NormSag -NormCor NormTra];
ROT = VoI_InPlaneRot;
% Find largest element of normal vector of the voxel to determine primary
% orientation.
% Example: if NormTra has the smallest out of the three Norm
% values, the angle of the normal vector with the Tra direction (FH) is the
% smallest, and the primary orientation is transversal.
[~, maxdir] = max([abs(NormSag) abs(NormCor) abs(NormTra)]);
switch maxdir
case 1
vox_orient = 's'; % 't' = transversal, 's' = sagittal', 'c' = coronal;
case 2
vox_orient = 'c'; % 't' = transversal, 's' = sagittal', 'c' = coronal;
case 3
vox_orient = 't'; % 't' = transversal, 's' = sagittal', 'c' = coronal;
end
% Phase reference vector
% Adapted from Rudolph Pienaar's "vox2ras_rsolveAA.m" and
% Andre van der Kouwe's "autoaligncorrect.cpp"
Phase = zeros(3, 1);
switch vox_orient
case 't'
% For transversal voxel orientation, the phase reference vector lies in
% the sagittal plane
Phase(1) = 0;
Phase(2) = Norm(3)*sqrt(1/(Norm(2)*Norm(2)+Norm(3)*Norm(3)));
Phase(3) = -Norm(2)*sqrt(1/(Norm(2)*Norm(2)+Norm(3)*Norm(3)));
VoxDims = [MRS_struct.p.voxdim(ii,1) MRS_struct.p.voxdim(ii,2) MRS_struct.p.voxdim(ii,3)];
case 'c'
% For coronal voxel orientation, the phase reference vector lies in
% the transversal plane
Phase(1) = Norm(2)*sqrt(1/(Norm(1)*Norm(1)+Norm(2)*Norm(2)));
Phase(2) = -Norm(1)*sqrt(1/(Norm(1)*Norm(1)+Norm(2)*Norm(2)));
Phase(3) = 0;
VoxDims = [MRS_struct.p.voxdim(ii,1) MRS_struct.p.voxdim(ii,2) MRS_struct.p.voxdim(ii,3)];
case 's'
% For sagittal voxel orientation, the phase reference vector lies in
% the transversal plane
Phase(1) = -Norm(2)*sqrt(1/(Norm(1)*Norm(1)+Norm(2)*Norm(2)));
Phase(2) = Norm(1)*sqrt(1/(Norm(1)*Norm(1)+Norm(2)*Norm(2)));
Phase(3) = 0;
VoxDims = [MRS_struct.p.voxdim(ii,1) MRS_struct.p.voxdim(ii,2) MRS_struct.p.voxdim(ii,3)];
end
% The readout reference vector is the cross product of Norm and Phase
Readout = cross(Norm, Phase);
M_R = zeros(4, 4);
M_R(1:3, 1) = Phase;
M_R(1:3, 2) = Readout;
M_R(1:3, 3) = Norm;
% Define matrix for rotation around in-plane rotation angle
M3_Mu = [ cos(ROT) sin(ROT) 0
-sin(ROT) cos(ROT) 0
0 0 1];
M3_R = M_R(1:3,1:3) * M3_Mu;
M_R(1:3,1:3) = M3_R;
% The MGH vox2ras matrix inverts the Readout column
M_R = M_R * [ 1 0 0 0
0 -1 0 0
0 0 1 0
0 0 0 1];
% Final rotation matrix
rotmat = M_R(1:3,1:3);
V = spm_vol(nii_file);
[T1,XYZ] = spm_read_vols(V);
%Shift imaging voxel coordinates by half an imaging voxel so that the XYZ matrix
%tells us the x,y,z coordinates of the MIDDLE of that imaging voxel.
[~,voxdim] = spm_get_bbox(V,'fv'); % MM (180220)
voxdim = abs(voxdim)';
halfpixshift = -voxdim(1:3)/2;
halfpixshift(3) = -halfpixshift(3);
XYZ = XYZ + repmat(halfpixshift, [1 size(XYZ,2)]);
% We need to flip ap and lr axes to match NIFTI convention
VoxOffs(1) = -VoxOffs(1);
VoxOffs(2) = -VoxOffs(2);
% Define voxel coordinates before rotation and transition
vox_ctr = ...
[VoxDims(1)/2 -VoxDims(2)/2 VoxDims(3)/2;
-VoxDims(1)/2 -VoxDims(2)/2 VoxDims(3)/2;
-VoxDims(1)/2 VoxDims(2)/2 VoxDims(3)/2;
VoxDims(1)/2 VoxDims(2)/2 VoxDims(3)/2;
-VoxDims(1)/2 VoxDims(2)/2 -VoxDims(3)/2;
VoxDims(1)/2 VoxDims(2)/2 -VoxDims(3)/2;
VoxDims(1)/2 -VoxDims(2)/2 -VoxDims(3)/2;
-VoxDims(1)/2 -VoxDims(2)/2 -VoxDims(3)/2];
% Apply rotation as prescribed
vox_rot = rotmat*vox_ctr.';
% Shift rotated voxel by the center offset to its final position
vox_ctr_coor = [VoxOffs(1) VoxOffs(2) VoxOffs(3)];
vox_ctr_coor = repmat(vox_ctr_coor.', [1,8]);
vox_corner = vox_rot + vox_ctr_coor;
% Create a mask with all voxels that are inside the voxel
mask = zeros(1,size(XYZ,2));
sphere_radius = sqrt((VoxDims(1)/2)^2+(VoxDims(2)/2)^2+(VoxDims(3)/2)^2);
distance2voxctr = sqrt(sum((XYZ-repmat([VoxOffs(1) VoxOffs(2) VoxOffs(3)].',[1 size(XYZ, 2)])).^2,1));
sphere_mask(distance2voxctr <= sphere_radius) = 1;
mask(sphere_mask == 1) = 1;
XYZ_sphere = XYZ(:,sphere_mask == 1);
tri = delaunayn([vox_corner.'; [VoxOffs(1) VoxOffs(2) VoxOffs(3)]]);
tn = tsearchn([vox_corner.'; [VoxOffs(1) VoxOffs(2) VoxOffs(3)]], tri, XYZ_sphere.');
isinside = ~isnan(tn);
mask(sphere_mask==1) = isinside;
% Take over the voxel dimensions from the structural
mask = reshape(mask, V.dim);
V_mask.fname = fidoutmask ;
V_mask.descrip = 'MRS_voxel_mask';
V_mask.dim = V.dim;
V_mask.dt = V.dt;
V_mask.mat = V.mat;
V_mask = spm_write_vol(V_mask,mask);
% Build output page
fidoutmask = cellstr(fidoutmask);
MRS_struct.mask.(vox{kk}).outfile(ii,:) = fidoutmask;
% Not clear how to formulate the rotations for triple rotations (revisit)
MRS_struct.p.voxang(ii,:) = [NaN NaN NaN];
% Transform structural image and co-registered voxel mask from voxel to
% world space for output (MM: 180221)
[img_t,img_c,img_s] = voxel2world_space(V,VoxOffs);
[mask_t,mask_c,mask_s] = voxel2world_space(V_mask,VoxOffs);
img_t = flipud(img_t/max(T1(:)));
img_c = flipud(img_c/max(T1(:)));
img_s = flipud(img_s/max(T1(:)));
img_t = img_t + 0.175*flipud(mask_t);
img_c = img_c + 0.175*flipud(mask_c);
img_s = img_s + 0.175*flipud(mask_s);
size_max = max([max(size(img_t)) max(size(img_c)) max(size(img_s))]);
three_plane_img = zeros([size_max 3*size_max]);
three_plane_img(:,1:size_max) = image_center(img_t, size_max);
three_plane_img(:,size_max+(1:size_max)) = image_center(img_s, size_max);
three_plane_img(:,size_max*2+(1:size_max)) = image_center(img_c, size_max);
MRS_struct.mask.(vox{kk}).img{ii} = three_plane_img;
MRS_struct.mask.(vox{kk}).T1image(ii,:) = {nii_file};
warning('on','MATLAB:nearlySingularMatrix');
warning('on','MATLAB:qhullmx:InternalWarning');
end