Locate EOG artifacts.
Note
To control true-positive and true-negative detection rates, you
may adjust the thresh parameter.
RawThe raw data.
intThe index to assign to found events.
floatLow cut-off frequency to apply to the EOG channel in Hz.
floatHigh cut-off frequency to apply to the EOG channel in Hz.
str | int | NoneNumber of taps to use for filtering.
str | list of str | NoneThe name of the channel(s) to use for EOG peak detection. If a string,
can be an arbitrary channel. This doesn’t have to be a channel of
eog type; it could, for example, also be an ordinary EEG channel
that was placed close to the eyes, like Fp1 or Fp2.
Multiple channel names can be passed as a list of strings.
If None (default), use the channel(s) in raw with type eog.
floatStart detection after tstart seconds.
Whether to omit data that is annotated as bad.
float | NoneThreshold to trigger the detection of an EOG event. This controls the
thresholding of the underlying peak-finding algorithm. Larger values
mean that fewer peaks (i.e., fewer EOG events) will be detected.
If None, use the default of (max(eog) - min(eog)) / 4,
with eog being the filtered EOG signal.
str | int | NoneControl verbosity of the logging output. If None, use the default
verbosity level. See the logging documentation and
mne.verbose() for details. Should only be passed as a keyword
argument.
arrayEvents.
See also
mne.preprocessing.find_eog_events#