mne.io.
read_raw_cnt
(input_fname, montage, eog=(), misc=(), ecg=(), emg=(), preload=False, verbose=None)¶Read CNT data as raw object.
Note
If montage is not provided, the x and y coordinates are read from the
file header. Channels that are not assigned with keywords eog
,
ecg
, emg
and misc
are assigned as eeg channels. All the eeg
channel locations are fit to a sphere when computing the z-coordinates
for the channels. If channels assigned as eeg channels have locations
far away from the head (i.e. x and y coordinates don’t fit to a
sphere), all the channel locations will be distorted. If you are not
sure that the channel locations in the header are correct, it is
probably safer to use a (standard) montage. See
mne.channels.read_montage()
Parameters: | input_fname : str
montage : str | None | instance of montage
eog : list | tuple | ‘auto’ | ‘header’
misc : list or tuple
ecg : list or tuple | ‘auto’
emg : list or tuple
preload : bool or str (default False)
verbose : bool, str, int, or None
|
---|---|
Returns: | raw : instance of RawCNT.
|
See also
mne.io.Raw
Notes
New in version 0.12.