forked from fieldtrip/fileio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_read_headmodel.m
106 lines (92 loc) · 3.23 KB
/
ft_read_headmodel.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
function [headmodel] = ft_read_headmodel(filename, varargin)
% FT_READ_HEADMODEL reads a volume conduction model from various manufacturer
% specific files. Currently supported are ASA, CTF, Neuromag, MBFYS
% and Matlab.
%
% Use as
% headmodel = ft_read_headmodel(filename, ...)
%
% Additional options should be specified in key-value pairs and can be
% 'fileformat' string
%
% The volume conduction model is represented as a structure with fields
% that depend on the type of model.
%
% See also FT_DATATYPE_HEADMODEL, FT_PREPARE_VOL_SENS, FT_COMPUTE_LEADFIELD
% Copyright (C) 2008-2018 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));
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);
otherwise
ft_error('unknown fileformat for volume conductor model');
end
% 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);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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