forked from MRtrix3/mrtrix3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread_mrtrix_tracks.m
More file actions
95 lines (81 loc) · 2.63 KB
/
read_mrtrix_tracks.m
File metadata and controls
95 lines (81 loc) · 2.63 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
% 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 tracks = read_mrtrix_tracks (filename)
% function: tracks = read_mrtrix_tracks (filename)
%
% returns a structure containing the header information and data for the MRtrix
% format track file 'filename' (i.e. files with the extension '.tck').
% The track data will be stored as a cell array in the 'data' field of the
% return variable.
f = fopen (filename, 'r');
assert(f ~= -1, 'error opening %s', filename);
L = fgetl(f);
if ~strncmp(L, 'mrtrix tracks', 13)
fclose(f);
error('%s is not in MRtrix format', filename);
end
tracks = struct();
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, 'file')
file = value;
elseif strcmp(key, 'datatype')
tracks.datatype = value;
else
tracks = add_field (tracks, key, value);
end
end
end
fclose(f);
assert(exist('file') && isfield(tracks, 'datatype'), ...
'critical entries missing in header - aborting');
[ file, offset ] = strtok(file);
assert(strcmp(file, '.'), ...
'unexpected file entry (should be set to current ''.'') - aborting');
assert(~isempty(offset), 'no offset specified - aborting');
offset = str2num(char(offset));
datatype = lower(tracks.datatype);
byteorder = datatype(end-1:end);
if strcmp(byteorder, 'le')
f = fopen (filename, 'r', 'l');
datatype = datatype(1:end-2);
elseif strcmp(byteorder, 'be')
f = fopen (filename, 'r', 'b');
datatype = datatype(1:end-2);
else
error('unexpected data type - aborting');
end
assert(f ~= -1, 'error opening %s', filename);
fseek (f, offset, -1);
data = fread(f, inf, datatype);
fclose (f);
N = floor(prod(size(data))/3);
data = reshape (data, 3, N)';
k = find (~isfinite(data(:,1)));
tracks.data = {};
pk = 1;
for n = 1:(prod(size(k))-1)
tracks.data{end+1} = data(pk:(k(n)-1),:);
pk = k(n)+1;
end