- MNE version: 1.9.0
- operating system: Windows 11
I tried to read an EEG sample exported from Curry (not sure about the version).
There are 3 kinds of files: .cdt
, .ceo
, .dpo
.
I tried with the following python code:
import mne
fname = "./WJTB_033/20250605033XHYA.cdt"
raw = mne.io.read_raw_curry(fname)
print(raw)
But it shows the error:
Traceback (most recent call last):
File "d:\projects\test\test.py", line 5, in <module>
raw = mne.io.read_raw_curry(fname)
File "<decorator-gen-205>", line 12, in read_raw_curry
File "D:\projects\test\.venv\lib\site-packages\mne\io\curry\curry.py", line 563, in read_raw_curry
return RawCurry(fname, preload, verbose)
File "<decorator-gen-206>", line 12, in __init__
File "D:\projects\test\.venv\lib\site-packages\mne\io\curry\curry.py", line 585, in __init__
curry_paths = _get_curry_file_structure(
File "D:\projects\test\.venv\lib\site-packages\mne\io\curry\curry.py", line 103, in _get_curry_file_structure
raise FileNotFoundError(_msg.format(np.unique(missing), fname))
FileNotFoundError: The following required files cannot be found: ['info' 'labels'].
Please make sure all required files are located in the same directory as D:\projects\test\WJTB_033\20250605033XHYA.cdt.hpi.
I don’t know where to find the .hpi
file. My colleague is in charge of the exporting of the data. And he said there is no .hpi
exported.