mne.io.read_raw_cnt(input_fname, montage, eog=(), misc=(), ecg=(), emg=(), data_format=’auto’, date_format=’mm/dd/yy’, preload=False, verbose=None)[source]¶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 | tuple
ecg : list | tuple | ‘auto’
emg : list | tuple
data_format : ‘auto’ | ‘int16’ | ‘int32’
date_format : str
preload : bool | str (default False)
verbose : bool, str, int, or None
|
|---|---|
| Returns: | raw : instance of RawCNT.
|
See also
mne.io.RawNotes
New in version 0.12.