forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_artifact_eog.m
169 lines (152 loc) · 6.9 KB
/
ft_artifact_eog.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
function [cfg, artifact] = ft_artifact_eog(cfg, data)
% FT_ARTIFACT_EOG reads the data segments of interest from file and
% identifies EOG artifacts.
%
% Use as
% [cfg, artifact] = ft_artifact_eog(cfg)
% with the configuration options
% cfg.dataset
% cfg.headerfile
% cfg.datafile
%
% Alternatively you can use it as
% [cfg, artifact] = ft_artifact_eog(cfg, data)
%
% In both cases the configuration should also contain
% cfg.trl = structure that defines the data segments of interest. See FT_DEFINETRIAL
% cfg.continuous = 'yes' or 'no' whether the file contains continuous data
%
% The data is preprocessed (again) with the following configuration parameters,
% which are optimal for identifying EOG artifacts.
% cfg.artfctdef.eog.bpfilter = 'yes'
% cfg.artfctdef.eog.bpfilttype = 'but'
% cfg.artfctdef.eog.bpfreq = [1 15]
% cfg.artfctdef.eog.bpfiltord = 4
% cfg.artfctdef.eog.hilbert = 'yes'
%
% Artifacts are identified by means of thresholding the z-transformed value
% of the preprocessed data.
% cfg.artfctdef.eog.channel = Nx1 cell-array with selection of channels, see FT_CHANNELSELECTION for details
% cfg.artfctdef.eog.cutoff = z-value at which to threshold (default = 4)
% cfg.artfctdef.eog.trlpadding = 0.5
% cfg.artfctdef.eog.fltpadding = 0.1
% cfg.artfctdef.eog.artpadding = 0.1
%
% The output argument "artifact" is a Nx2 matrix comparable to the
% "trl" matrix of FT_DEFINETRIAL. The first column of which specifying the
% beginsamples of an artifact period, the second column contains the
% endsamples of the artifactperiods.
%
% To facilitate data-handling and distributed computing you can use
% cfg.inputfile = ...
% If you specify this option the input data will be read from a *.mat
% file on disk. This mat files should contain only a single variable named 'data',
% corresponding to the input structure.
%
% See also FT_REJECTARTIFACT, FT_ARTIFACT_CLIP, FT_ARTIFACT_ECG, FT_ARTIFACT_EOG,
% FT_ARTIFACT_JUMP, FT_ARTIFACT_MUSCLE, FT_ARTIFACT_THRESHOLD, FT_ARTIFACT_ZVALUE
% Undocumented local options
% cfg.method
% Copyright (C) 2003-2011, Jan-Mathijs Schoffelen & Robert Oostenveld
%
% This file is part of FieldTrip, see http://www.ru.nl/neuroimaging/fieldtrip
% 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$
revision = '$Id$';
% do the general setup of the function
ft_defaults
ft_preamble init
% ft_preamble provenance is not needed because just a call to ft_artifact_zvalue
% ft_preamble loadvar data is not needed because ft_artifact_zvalue will do this
% the abort variable is set to true or false in ft_preamble_init
if abort
return
end
% check if the input cfg is valid for this function
cfg = ft_checkconfig(cfg, 'renamed', {'datatype', 'continuous'});
cfg = ft_checkconfig(cfg, 'renamedval', {'continuous', 'continuous', 'yes'});
% set default rejection parameters
if ~isfield(cfg,'artfctdef'), cfg.artfctdef = []; end
if ~isfield(cfg.artfctdef,'eog'), cfg.artfctdef.eog = []; end
if ~isfield(cfg.artfctdef.eog,'method'), cfg.artfctdef.eog.method = 'zvalue'; end
% for backward compatibility
if isfield(cfg.artfctdef.eog,'sgn')
cfg.artfctdef.eog.channel = cfg.artfctdef.eog.sgn;
cfg.artfctdef.eog = rmfield(cfg.artfctdef.eog, 'sgn');
end
if isfield(cfg.artfctdef.eog, 'artifact')
fprintf('eog artifact detection has already been done, retaining artifacts\n');
artifact = cfg.artfctdef.eog.artifact;
return
end
if ~strcmp(cfg.artfctdef.eog.method, 'zvalue')
error('EOG artifact detection only works with cfg.method=''zvalue''');
end
% the following fields should be supported for backward compatibility
if isfield(cfg.artfctdef.eog,'pssbnd'),
cfg.artfctdef.eog.bpfreq = cfg.artfctdef.eog.pssbnd;
cfg.artfctdef.eog.bpfilter = 'yes';
cfg.artfctdef.eog = rmfield(cfg.artfctdef.eog,'pssbnd');
end;
dum = 0;
if isfield(cfg.artfctdef.eog,'pretim'),
dum = max(dum, cfg.artfctdef.eog.pretim);
cfg.artfctdef.eog = rmfield(cfg.artfctdef.eog,'pretim');
end
if isfield(cfg.artfctdef.eog,'psttim'),
dum = max(dum, cfg.artfctdef.eog.psttim);
cfg.artfctdef.eog = rmfield(cfg.artfctdef.eog,'psttim');
end
if dum
cfg.artfctdef.eog.artpadding = max(dum);
end
if isfield(cfg.artfctdef.eog,'padding'),
cfg.artfctdef.eog.trlpadding = cfg.artfctdef.eog.padding;
cfg.artfctdef.eog = rmfield(cfg.artfctdef.eog,'padding');
end
% settings for preprocessing
if ~isfield(cfg.artfctdef.eog,'bpfilter'), cfg.artfctdef.eog.bpfilter = 'yes'; end
if ~isfield(cfg.artfctdef.eog,'bpfilttype'), cfg.artfctdef.eog.bpfilttype = 'but'; end
if ~isfield(cfg.artfctdef.eog,'bpfreq'), cfg.artfctdef.eog.bpfreq = [1 15]; end
if ~isfield(cfg.artfctdef.eog,'bpfiltord'), cfg.artfctdef.eog.bpfiltord = 4; end
if ~isfield(cfg.artfctdef.eog,'hilbert'), cfg.artfctdef.eog.hilbert = 'yes'; end
% settings for the zvalue subfunction
if ~isfield(cfg.artfctdef.eog,'channel'), cfg.artfctdef.eog.channel = 'EOG'; end
if ~isfield(cfg.artfctdef.eog,'trlpadding'), cfg.artfctdef.eog.trlpadding = 0.5; end
if ~isfield(cfg.artfctdef.eog,'artpadding'), cfg.artfctdef.eog.artpadding = 0.1; end
if ~isfield(cfg.artfctdef.eog,'fltpadding'), cfg.artfctdef.eog.fltpadding = 0.1; end
if ~isfield(cfg.artfctdef.eog,'cutoff'), cfg.artfctdef.eog.cutoff = 4; end
% construct a temporary configuration that can be passed onto artifact_zvalue
tmpcfg = [];
tmpcfg.trl = cfg.trl;
tmpcfg.artfctdef.zvalue = cfg.artfctdef.eog;
if isfield(cfg, 'continuous'), tmpcfg.continuous = cfg.continuous; end
if isfield(cfg, 'dataformat'), tmpcfg.dataformat = cfg.dataformat; end
if isfield(cfg, 'headerformat'), tmpcfg.headerformat = cfg.headerformat; end
% call the zvalue artifact detection function
% the data is either passed into the function by the user or read from file with cfg.inputfile
hasdata = exist('data', 'var');
if ~hasdata
cfg = ft_checkconfig(cfg, 'dataset2files', 'yes');
cfg = ft_checkconfig(cfg, 'required', {'headerfile', 'datafile'});
tmpcfg.datafile = cfg.datafile;
tmpcfg.headerfile = cfg.headerfile;
[tmpcfg, artifact] = ft_artifact_zvalue(tmpcfg);
else
[tmpcfg, artifact] = ft_artifact_zvalue(tmpcfg, data);
end
cfg.artfctdef.eog = tmpcfg.artfctdef.zvalue;