forked from MRtrix3/mrtrix3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread_mrtrix.m
More file actions
133 lines (110 loc) · 3.48 KB
/
read_mrtrix.m
File metadata and controls
133 lines (110 loc) · 3.48 KB
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
% Copyright (c) 2008-2019 the MRtrix3 contributors.
%
% This Source Code Form is subject to the terms of the Mozilla Public
% License, v. 2.0. If a copy of the MPL was not distributed with this
% file, You can obtain one at http://mozilla.org/MPL/2.0/.
%
% Covered Software is provided under this License on an "as is"
% basis, without warranty of any kind, either expressed, implied, or
% statutory, including, without limitation, warranties that the
% Covered Software is free of defects, merchantable, fit for a
% particular purpose or non-infringing.
% See the Mozilla Public License v. 2.0 for more details.
%
% For more details, see http://www.mrtrix.org/.
function image = read_mrtrix (filename)
% function: image = read_mrtrix (filename)
%
% returns a structure containing the header information and data for the MRtrix
% format image 'filename' (i.e. files with the extension '.mif' or '.mih').
f = fopen (filename, 'r');
assert(f ~= -1, 'error opening %s', filename);
L = fgetl(f);
if ~strncmp(L, 'mrtrix image', 12)
fclose(f);
error('%s is not in MRtrix format', filename);
end
transform = [];
dw_scheme = [];
while 1
L = fgetl(f);
if ~ischar(L), break, end;
L = strtrim(L);
if strcmp(L, 'END'), break, end;
d = strfind (L,':');
if isempty(d)
disp (['invalid line in header: ''' L ''' - ignored']);
else
key = lower(strtrim(L(1:d(1)-1)));
value = strtrim(L(d(1)+1:end));
if strcmp(key, 'dim')
image.dim = str2num(char(split_strings (value, ',')))';
elseif strcmp(key, 'vox')
image.vox = str2num(char(split_strings (value, ',')))';
elseif strcmp(key, 'layout')
image.layout = value;
elseif strcmp(key, 'datatype')
image.datatype = value;
elseif strcmp(key, 'transform')
transform(end+1,:) = str2num(char(split_strings (value, ',')))';
elseif strcmp(key, 'file')
file = value;
elseif strcmp(key, 'dw_scheme')
dw_scheme(end+1,:) = str2num(char(split_strings (value, ',')))';
else
image = add_field (image, key, value);
end
end
end
fclose(f);
if ~isempty(transform)
image.transform = transform;
image.transform(4,:) = [ 0 0 0 1 ];
end
if ~isempty(dw_scheme)
image.dw_scheme = dw_scheme;
end
if ~isfield (image, 'dim') || ~exist ('file') || ...
~isfield (image, 'layout') || ~isfield (image, 'datatype')
error('critical entries missing in header - not reading data');
end
layout = split_strings(image.layout, ',');
order = (abs(str2num (char(layout)))+1)';
[ file, offset ] = strtok(file);
if isempty(offset), offset = 0; else offset = str2num(char(offset)); end
[f,g] = fileparts(filename);
if strcmp(file,'.'), file = filename; else file = fullfile (f, file); end
datatype = lower(image.datatype);
byteorder = datatype(end-1:end);
if strcmp(byteorder, 'le')
f = fopen (file, 'r', 'l');
datatype = datatype(1:end-2);
elseif strcmp(byteorder, 'be')
f = fopen (file, 'r', 'b');
datatype = datatype(1:end-2);
else
if strcmp(datatype, 'bit')
datatype = 'bit1';
f = fopen(file, 'r', 'b');
else
f = fopen(file, 'r');
end
end
assert(f ~= -1, 'error opening %s', filename);
fseek (f, offset, -1);
image.data = fread (f, inf, datatype);
fclose (f);
order(order)= 1:size(order,2);
image.data = reshape (image.data, image.dim(order));
image.data = ipermute (image.data, order);
for i=1:size(order,2)
if layout{i}(1) == '-'
image.data = flip(image.data, i);
end
end
function S = split_strings (V, delim)
S = {};
while size(V,2) > 0
[R, V] = strtok(V,delim);
S{end+1} = R;
end