-
Notifications
You must be signed in to change notification settings - Fork 0
/
metaImageRead.m
397 lines (167 loc) · 5.33 KB
/
metaImageRead.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
function [img info] = metaImageRead(info, varargin)
%METAIMAGEREAD Read an image in MetaImage format
%
% IMG = metaImageRead(INFO)
% Read the image IMG from data given in structure INFO. INFO is typically
% returned by the metaImageInfo function.
%
% IMG = metaImageRead(FILENAME)
% Read the image from a filename. Filename is a text file in metaimage
% format.
%
% IMG = metaImageRead(..., PARAM, VALUE)
% Specify additional parameters for reading. The parameter can
% complement, or override the parameters given in info file or structure.
% See the function metaImageInfo for information about supported
% parameters.
%
% [IMG INFO] = metaImageRead(...)
% Also returns the corresponding info structure associated to image IMG.
%
%
% Example
% % first load info, then load data
% info = metaImageInfo('example.mhd');
% X = metaImageRead(info);
%
% % specify only the filename, and specify endianness
% IMG = metaImageRead('filename.mhd', 'ElementByteOrderMSB', false);
%
% See also
% metaImageInfo, readstack, analyze75info
%
% ------
% Author: David Legland
% e-mail: [email protected]
% Created: 2010-01-27, using Matlab 7.9.0.529 (R2009b)
% http://www.pfl-cepia.inra.fr/index.php?page=slicer
% Copyright 2010 INRA - Cepia Software Platform.
%% Get info structure
% default empty value to avoid errors when user cancels
img = [];
% If the function is called without argument, open a dialog to read a file
if nargin == 0
[filename, pathname] = uigetfile({'*.mha;*.mhd', 'Meta-Image data file (*.mha, *.mhd)'},...
'Open Meta-Image data file');
info = [pathname filename];
if filename == 0
return;
end
end
% info should be a structure. If not, assume this is name of info file
if ischar(info)
% read info strucure from file name
info = metaImageInfo(info, varargin{:});
end
if ~isstruct(info)
error('First argument must be a metaimage info structure');
end
%% Pre-compute variables
% determines pixel type
[pixelType isArrayType] = parseMetaType(info.ElementType);
% in the case of array type, need number of channels
nChannels = 1;
if isArrayType
nChannels = info.ElementNumberOfChannels;
end
% compute size of resulting array
% (in the case of multi-channel image, use dim=3 for channel dimension).
dims = info.DimSize;
if isArrayType
dims = [nChannels dims];
end
% allocate memory for data
img = zeros(dims, pixelType);
% Specify little- or big-endian ordering
byteOrder = determineByteOrder(info);
%% Read data file(s)
if ischar(info.ElementDataFile)
% open data file
f = fopen(info.ElementDataFile, 'rb');
if f == -1
error(['Unable to open data file: ' info.ElementDataFile]);
end
% skip header
fread(f, info.HeaderSize*nChannels, ['*' pixelType]);
% read data
img(:) = fread(f, prod(dims), ['*' pixelType], byteOrder);
% convert order of elements
if isArrayType
% for color images, replace channel dim at third position
img = permute(img, [3 2 1 4:length(dims)]);
else
% permute dims 1 and 2
img = permute(img, [2 1 3:length(dims)]);
end
% close file
fclose(f);
elseif iscell(info.ElementDataFile)
% filename is given as a cell array containing name of each file
% check dimension are consistent
if length(info.ElementDataFile) ~= info.DimSize(3)
error('Number of files does not match image third dimension');
end
% iterate over the elements in ElementDataFile, extract filename, erad
% image and add corresponding data to the img array.
for i = 1:length(info.ElementDataFile)
filename = info.ElementDataFile{i};
data = imread(filename);
% use different processing for grayscale and color images
if isArrayType
img(:,:,:,i) = data;
else
img(:,:,i) = data;
end
end
else
error('Unknown type of filename');
end
function [type isArray] = parseMetaType(string)
% determines if the data type is an array or a scalar
isArray = false;
ind = findstr(string, '_ARRAY');
if ~isempty(ind)
isArray = true;
string = string(1:ind-1);
end
% determines the base data type
switch string
case 'MET_UCHAR'
type = 'uint8';
case 'MET_CHAR'
type = 'int8';
case 'MET_USHORT'
type = 'uint16';
case 'MET_SHORT'
type = 'int16';
case 'MET_UINT'
type = 'uint32';
case 'MET_INT'
type = 'int32';
case 'MET_FLOAT'
type = 'single';
case 'MET_DOUBLE'
type = 'double';
otherwise
error('Unknown element type in metaimage header: %s', string);
end
function byteOrder = determineByteOrder(info)
% Return a character that can be used by fread function
% default byte order given by system
byteOrder = 'n';
% first check the ElementByteOrderMSB field
if isfield(info, 'ElementByteOrderMSB')
if info.ElementByteOrderMSB
byteOrder = 'b';
else
byteOrder = 'l';
end
end
% also check the BinaryDataByteOrderMSB field
if isfield(info, 'BinaryDataByteOrderMSB')
if info.BinaryDataByteOrderMSB
byteOrder = 'b';
else
byteOrder = 'l';
end
end