-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathft_read_headmodel.m
More file actions
186 lines (159 loc) · 6.21 KB
/
ft_read_headmodel.m
File metadata and controls
186 lines (159 loc) · 6.21 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
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
function [headmodel] = ft_read_headmodel(filename, varargin)
% FT_READ_HEADMODEL reads a head model (or volume conduction model of the head) from
% various manufacturer specific files. Currently supported are ASA, CTF, Neuromag,
% MBFYS, MATLAB and SimNIBS. The volume conduction model is represented as a
% structure with fields that depend on the type of model.
%
% Use as
% headmodel = ft_read_headmodel(filename, ...)
%
% Additional options should be specified in key-value pairs and can be
% 'fileformat' = string
%
% If the fileformat is 'simnibs', an additional options can be used to specify the
% type of model that is to be returned.
% 'meshtype' = string, 'volume' or 'surface' (default is automatic)
%
% See also FT_DATATYPE_HEADMODEL, FT_PREPARE_HEADMODEL, FT_READ_HEADMODEL,
% FT_PREPARE_VOL_SENS, FT_COMPUTE_LEADFIELD
% Copyright (C) 2008-2024, Robert Oostenveld
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% for the documentation and details.
%
% FieldTrip is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% FieldTrip is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
% optionally get the data from the URL and make a temporary local copy
filename = fetch_url(filename);
% test whether the file exists
if ~exist(filename, 'file')
ft_error('file ''%s'' does not exist', filename);
end
% get the options
fileformat = ft_getopt(varargin, 'fileformat', ft_filetype(filename));
meshtype = ft_getopt(varargin, 'meshtype'); % the default is handled further down
switch fileformat
case 'matlab'
headmodel = loadvar(filename, 'headmodel');
case 'ctf_hdm'
headmodel = read_ctf_hdm(filename);
headmodel.coordsys = 'ctf';
case 'asa_vol'
headmodel = read_asa_vol(filename);
headmodel.type = 'asa';
case 'mbfys_ama'
ama = loadama(filename);
headmodel = ama2headmodel(ama);
case 'neuromag_fif'
ft_hastoolbox('mne', 1);
global FIFF
bem = mne_read_bem_surfaces(filename);
headmodel.bnd.pos = bem.rr;
headmodel.bnd.tri = bem.tris;
headmodel.coordsys = fif2coordsys(bem.coord_frame);
case 'gmsh_binary'
ft_error('this could be a simnibs headmodel, please specify ''fileformat'' to be ''simnibs'' if this is the case');
case {'simnibs' 'simnibs_v3' 'simnibs_v4'}
ft_hastoolbox('simnibs', 1);
standard = standard_cond;
mesh = ft_read_headshape(filename, 'meshtype', meshtype); % this will automatically detect ascii or binary
hastri = isfield(mesh, 'tri');
hastet = isfield(mesh, 'tet');
hashex = isfield(mesh, 'hex');
if (hastri+hastet+hashex)>1
ft_error('multiple mesh types are not supported in a single head model');
end
if hastri
% convert the long list of triangles into multiple surfaces
% this also prunes unused vertices
[bnd, bndtissue] = tri2bnd(mesh.pos, mesh.tri, mesh.tissue);
headmodel.bnd = bnd;
headmodel.tissuelabel = mesh.tissuelabel(bndtissue);
headmodel.cond = nan(size(headmodel.tissuelabel));
for i=1:numel(headmodel.tissuelabel)
for j=1:numel(standard)
if strcmpi(standard(j).type, 'COND') && ~isempty(standard(j).name) && strcmpi(standard(j).name, headmodel.tissuelabel{i})
headmodel.cond(i) = standard(j).value;
break
end
end
end
elseif hastet
% prune unused vertices
[headmodel.pos, headmodel.tet] = remove_unused_vertices(mesh.pos, mesh.tet);
% renumber the tissues to remove unused tissue types
tag = mesh.tissue(:);
utag = unique(tag);
tissue = zeros(size(tag));
tissuelabel = cell(numel(utag),1);
cond = zeros(1,numel(utag));
for k = 1:numel(utag)
tissue(tag==utag(k)) = k;
tissuelabel{k} = lower(standard(utag(k)).name);
cond(k) = standard(utag(k)).value;
end
headmodel.tissue = tissue;
headmodel.tissuelabel = tissuelabel;
headmodel.cond = cond;
elseif hashex
% prune unused vertices
[headmodel.pos, headmodel.hex] = remove_unused_vertices(mesh.pos, mesh.hex);
% renumber the tissues to remove unused tissue types
tag = mesh.tissue(:);
utag = unique(tag);
tissue = zeros(size(tag));
tissuelabel = cell(numel(utag),1);
cond = zeros(1,numel(utag));
for k = 1:numel(utag)
tissue(tag==utag(k)) = k;
tissuelabel{k} = lower(standard(utag(k)).name);
cond(k) = standard(utag(k)).value;
end
headmodel.tissue = tissue;
headmodel.tissuelabel = tissuelabel;
headmodel.cond = cond;
end % if tri, tet or hex
otherwise
ft_error('unknown fileformat for volume conductor model');
end % switch fileformat
% this will ensure that the structure is up to date, e.g. that the type is correct and that it has units
headmodel = ft_datatype_headmodel(headmodel);
headmodel = ft_determine_units(headmodel);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% SUBFUNCTION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function coordsys = fif2coordsys(coord_frame)
ft_hastoolbox('mne', 1);
global FIFF
switch coord_frame
case FIFF.FIFFV_COORD_DEVICE
coordsys = 'device';
case FIFF.FIFFV_COORD_HPI
coordsys = 'hpi';
case FIFF.FIFFV_COORD_HEAD
coordsys = 'head';
case FIFF.FIFFV_COORD_MRI
coordsys = 'mri';
case FIFF.FIFFV_COORD_MRI_SLICE
coordsys = 'mri_slice';
case FIFF.FIFFV_COORD_MRI_DISPLAY
coordsys = 'mri_display';
case FIFF.FIFFV_COORD_DICOM_DEVICE
coordsys = 'dicom_device';
case FIFF.FIFFV_COORD_IMAGING_DEVICE
coordsys = 'imaging_device';
otherwise
error('unrecognized coord_frame')
end