forked from netstim/leaddbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ea_apply_coregistration.m
155 lines (143 loc) · 5.52 KB
/
ea_apply_coregistration.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
function ea_apply_coregistration(varargin)
% Wrapper to apply linear transformation
%
% The 4th parameter (transformation) can be:
% 1. Not specified, the transformation will be automatically detected
% if there is only one transformation file in the folder.
% 2. String ('SPM', 'ANTs', 'FSL' and 'BRAINSFIT'), the transformation
% will be chosen according to the type specified in the string.
% 3. String (path to the transformation file).
fixedimage = varargin{1};
movingimage = varargin{2};
outputimage = varargin{3};
[~, mov] = ea_niifileparts(movingimage);
[~, fix] = ea_niifileparts(fixedimage);
volumedir = [fileparts(ea_niifileparts(movingimage)), filesep];
if nargin < 4
% determine the transformation to be used
xfm = [mov, '2', fix, '_\w+\.(mat|h5)$'];
transform = ea_regexpdir(volumedir, xfm, 0);
if numel(transform) == 0
error(['Transformation not found! Please run coregistration ' ...
'first before applying the transformation!']);
elseif numel(transform) > 1
error(['Multiple transformations found! Please explicitly ' ...
'specify the one to be used in the 4th parameter.']);
else % Only one transformation found
transform = transform{1};
end
elseif regexp(varargin{4}, '^[a-zA-Z]+( +[a-zA-Z]+)*$')
transformType = lower(varargin{4});
if regexp(transformType, '^fsl') % Determine FSL transformation name
transformType = regexp(transformType, '(?<=^fsl )(.+)$', 'match', 'once');
end
xfm = [mov, '2', fix, '_', transformType, '\d*\.(mat|h5)$'];
transform = ea_regexpdir(volumedir, xfm, 0);
if numel(transform) == 0
error(['Specified transformation not found! Please run ' ...
'coregistration first before applying the transformation!']);
else
if numel(transform) > 1
warning(['Multiple transformations of the same type found! ' ...
'Will use the last one:\n%s'], transform{end});
end
transform = transform{end};
end
else
transform = varargin{4};
if ~exist(transform, 'file')
error(['Specified transformation not found! Please run ' ...
'coregistration first before applying the transformation!']);
end
end
xfm = '(?<=_)([a-z]+)(?=\d*\.(mat|h5)$)';
transformType = upper(regexp(transform, xfm, 'match', 'once'));
if ismember(transformType, {'FLIRT','FLIRTBBR'}) % Fix FSL transformation name - this will also be the extension for bbr.
transformType = 'FSL';
end
% nn: NearestNeighbor
% lbl: Label (for multi-label image, ANTs uses 'GenericLabel' rather than 'NearestNeighbor')
% ln: Linear
% spl: Spline
if nargin < 5
interp = 'ln'; % Linear interpolation by default
else
interp = varargin{5};
end
% Determine interpolation type
switch transformType
case 'SPM'
% 0: Nearest neighbour
% 1: Trilinear
% 2: 2nd Degree B-Spline
% 3: 3nd Degree B-Spline
% 4: 4nd Degree B-Spline
if ischar(interp)
switch lower(interp)
case {'nn', 'nearestneighbor', 'lbl', 'label'}
interp = 0;
case {'ln', 'linear'}
interp = 1;
case {'spl', 'spline'}
interp = 4; % default degree in SPM coregistration
end
end
case 'ANTS'
% Linear, NearestNeighbor, MultiLabel, Gaussian, BSpline
% CosineWindowedSinc, WelchWindowedSinc, HammingWindowedSinc, LanczosWindowedSinc
% GenericLabel (Recommanded for label image)
switch lower(interp)
case {'nn', 'nearestneighbor'}
interp = 'NearestNeighbor';
case {'lbl', 'label'}
interp = 'GenericLabel';
case {'ln', 'linear'}
interp = 'Linear';
case {'spl', 'spline'}
interp = 'BSpline';
end
case 'FSL'
% trilinear, nearestneighbour, sinc, spline
switch lower(interp)
case {'nn', 'nearestneighbor', 'lbl', 'label'}
interp = 'nearestneighbour';
case {'ln', 'linear'}
interp = 'trilinear';
case {'spl', 'spline'}
interp = 'spline';
otherwise
error('Unrecognized interpolation type: ''%s''!', interp);
end
case 'BRAINSFIT'
% NearestNeighbor, Linear, ResampleInPlace, BSpline
% WindowedSinc, Hamming, Cosine, Welch, Lanczos, Blackman
switch lower(interp)
case {'nn', 'nearestneighbor', 'lbl', 'label'}
interp = 'NearestNeighbor';
case {'ln', 'linear'}
interp = 'Linear';
case {'spl', 'spline'}
interp = 'BSpline';
otherwise
error('Unrecognized interpolation type: ''%s''!', interp);
end
otherwise
error('Unrecognized transformation type: ''%s''!', transformType);
end
% Apply transform
switch transformType
case 'SPM'
ea_spm_apply_coregistration(fixedimage, movingimage, outputimage, ...
transform, interp)
case 'ANTS'
ea_ants_apply_transforms([], movingimage, outputimage, ...
0, fixedimage, transform, interp)
case 'FSL'
ea_fsl_apply_coregistration(fixedimage, movingimage, outputimage, ...
transform, interp)
case 'BRAINSFIT'
ea_brainsresample(fixedimage, movingimage, outputimage, ...
transform, interp)
otherwise
error('Unrecognized transformation type: ''%s''!', transformType);
end