-
Notifications
You must be signed in to change notification settings - Fork 7
/
spm_mb_io.m
255 lines (236 loc) · 6.91 KB
/
spm_mb_io.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
function varargout = spm_mb_io(varargin)
% File I/O Multi-Brain functionalities
%
% FORMAT fn = spm_mb_io('get_image',datn)
% FORMAT [out,M] = spm_mb_io('get_data',in)
% FORMAT [d,M] = spm_mb_io('get_size',fin)
% FORMAT spm_mb_io('save_template',mu,sett)
% FORMAT fout = spm_mb_io('set_data',fin,f)
% FORMAT dat = spm_mb_io('save_mat',dat,mat);
%
%__________________________________________________________________________
% Copyright (C) 2019-2020 Wellcome Centre for Human Neuroimaging
% $Id: spm_mb_io.m 8086 2021-04-01 09:13:20Z john $
[varargout{1:nargout}] = spm_subfun(localfunctions,varargin{:});
%==========================================================================
%==========================================================================
function out = save_mat(in,mat)
% Write mat to header
out = in;
if isa(in,'char')
in = nifti(in);
end
if isa(in,'nifti') && numel(in)==1
out.mat = mat;
create(out);
end
%==========================================================================
%==========================================================================
function out = get_scale(in)
% Return a scale for adding random numbers
if isnumeric(in)
if isa(in,'integer')
out = ones([1,1,1,size(in,4)]);
else
out = zeros([1,1,1,size(in,4)]);
end
return;
end
if isa(in,'char')
in = nifti(in);
end
if isa(in,'nifti')
C = numel(in);
d = [in(1).dat.dim 1 1 1 1 1];
d = d(1:5);
if d(4)>1 && C>1, error('Don''t know what to do with this image data.'); end
d(4) = max(d(4),C);
out = zeros([1,1,1,d(4)]);
if C>1
for c=1:C
dt1 = in(c).dat.dtype(1);
if dt1=='I' || dt1=='U'
out(c) = in(c).dat.scl_slope(1);
end
end
else
dt1 = in(1).dat.dtype(1);
if dt1=='I' || dt1=='U'
out(:) = in(1).dat.scl_slope(1);
end
end
else
error('Unknown datatype.');
end
%==========================================================================
%==========================================================================
function [fn,msk] = get_image(gmm,do_mask,return_mask,do_jitter)
if nargin<2, do_mask=true; end
if nargin<3, return_mask=false; end
if nargin<4, do_jitter=true; end
% This is the place to do various image cleaning steps
fn = get_data(gmm.f);
C = size(fn,4);
msk = [];
if do_mask
[fn, msk] = mask(fn,gmm.modality,return_mask);
elseif ~do_mask && return_mask
[~, msk] = mask(fn,gmm.modality,return_mask);
end
jitter = get_scale(gmm.f);
jitter = reshape(jitter,[1 1 1 C]);
if do_jitter && any(jitter~=0)
% Data is an integer type, so to prevent aliasing in the histogram, small
% random values are added.
rng('default'); rng(1);
fn = fn + bsxfun(@times,rand(size(fn)) - 1/2,jitter);
end
for c=1:numel(gmm.modality)
if gmm.modality(c)==2
fn(:,:,:,c) = fn(:,:,:,c) + 1000;
end
end
%==========================================================================
%==========================================================================
function [fn,msk] = mask(fn,modality,return_mask)
if nargin<3, return_mask=false; end
C = size(fn,4);
if return_mask
msk = true(size(fn));
else
msk = [];
end
for c=1:C
fn(:,:,:,c) = apply_mask(fn(:,:,:,c),modality(c));
if return_mask
msk(:,:,:,c) = isnan(fn(:,:,:,c));
end
end
%==========================================================================
%==========================================================================
function f = apply_mask(f,modality)
if modality==2
f(~isfinite(f) | f == 0 | f < - 1020 | f > 3000) = NaN;
else
f(~isfinite(f) | f == 0) = NaN;
end
%==========================================================================
%==========================================================================
function [out,Mn] = get_data(in)
Mn = eye(4);
if isnumeric(in)
out = single(in);
return
end
if isa(in,'char')
in = nifti(in);
end
if isa(in,'nifti')
C = numel(in);
d = [in(1).dat.dim 1 1 1 1 1];
d = d(1:5);
Mn = in(1).mat;
if C>1
d(4) = C;
out = zeros(d,'single');
for m=1:C
out(:,:,:,m) = single(in(m).dat(:,:,:,:,:));
end
else
out = single(in.dat(:,:,:,:,:));
if numel(d)>4 && d(4)==1
out = reshape(out,[d(1:3) d(5)]);
end
end
else
error('Unknown datatype.');
end
%==========================================================================
%==========================================================================
function [d,M] = get_size(fin)
d = [get_dimensions(fin) 1 1 1];
M = d(4);
d = d(1:3);
%==========================================================================
%==========================================================================
function save_template(mu,sett)
if ~isfield(sett.mu,'create'), return; end
% Parse function settings
Mmu = sett.ms.Mmu;
% Log
fa = file_array(sett.mu.create.mu,size(mu),'float32',0);
Nmu = nifti;
Nmu.dat = fa;
Nmu.mat = Mmu;
Nmu.mat0 = Mmu;
Nmu.descrip = 'Template';
create(Nmu);
Nmu.dat(:,:,:,:) = mu;
if true
% Softmax
mu = spm_mb_shape('softmax0',mu,4);
d = [size(mu) 1 1];
[pth,nam,ext] = fileparts(sett.mu.create.mu);
nam = ['softmax' nam(3:end)];
f = fullfile(pth,[nam ext]);
fa = file_array(f,[d(1:3) d(4)+1],'float32',0);
Nmu = nifti;
Nmu.dat = fa;
Nmu.mat = Mmu;
Nmu.mat0 = Mmu;
Nmu.descrip = 'Template (softmax)';
create(Nmu);
Nmu.dat(:,:,:,1:d(4)) = mu;
Nmu.dat(:,:,:,d(4)+1) = max(1-sum(mu,4),0);
end
%==========================================================================
%==========================================================================
function fout = set_data(fin,f)
fout = fin;
if isnumeric(fin)
fout = f;
return
end
if isa(fin,'char')
fin = nifti(fin);
end
if isa(fin,'nifti')
M = numel(fin);
if M>1
for m=1:M
fout(m).dat(:,:,:,1,:) = f(:,:,:,m,:);
end
else
fout(1).dat(:,:,:,:,:) = reshape(f,size(fout(1).dat));
end
end
%==========================================================================
%==========================================================================
%
% Utility functions
%
%==========================================================================
%==========================================================================
function d = get_dimensions(fin)
if isnumeric(fin)
d = size(fin);
d = [d 1 1];
return
end
if isa(fin,'char')
fin = nifti(fin);
end
if isa(fin,'nifti')
M = numel(fin);
d = [fin(1).dat.dim 1 1 1 1 1];
d = d(1:5);
if M>1
d(4) = M;
else
if numel(d)>4 && d(4)==1
d = [d(1:3) d(5)];
end
end
end
%==========================================================================
%==========================================================================