Deymed TruScan montage file (.ced file)
See original GitHub issueHi guys, firstly, thanks again for mne which allowed me to successfully finish my PhD 🥇🎉
My new workplace has a 128 channels TruScan Deymed system, from which I’ve been trying to get usable data.
However, the montage is not supported natively by mne. The customer service sent me a .txt file (deymed_layout_128.txt), in which there are columns related to channel names, Phi, Theta, and x y z coordinates (attached). They also sent a .ced file, which contains the same info, which I cannot attach (but can send it via email).
Unfortunately, using the mne.channels.read_montage("deymed_layout_128", path = ".") doesn’t work:
mne.channels.read_montage("deymed_layout_128", path = ".")
Traceback (most recent call last):
File "<ipython-input-22-265da416e197>", line 1, in <module>
mne.channels.read_montage("deymed_layout_128", path = ".")
File "C:\Users\Dom\Desktop\WPy-3710\python-3.7.1.amd64\lib\site-packages\mne\channels\montage.py", line 281, in read_montage
pol = np.deg2rad(data[:, 1].astype(float))
ValueError: could not convert string to float: 'Fp1'
How can I read this montage? Thanks again!
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:7 (7 by maintainers)
Top Results From Across the Web
TruScan EEG - DEYMED Diagnostic
TruScan family of EEG systems offers state of the art functionality for clinical ... The values are saved to the EEG file for...
Read more >Operating User Manual for the Deymed Brainfeedback 3 System
The following user's manual will guide you through the functions and applications of the various software features. Deymed reserves the right to make...
Read more >TruScan LT-RS EEG rev TSLTRS-BD211.pdf
The values are saved to the EEG file ... the TruScan Explorer Keyboard was developed to speed up and ... Visual drag and...
Read more >DEYMED Diagnostic - Neurodiagnostic EEG, EMG, PSG ...
Deymed Diagnostic is manufacturer of innovative neurological medical devices with complete solution for EEG, EMG, TMS, PSG and neurofeedback.
Read more >TruScan LT Neurofeedback - DEYMED Diagnostic
Featuring high sample rates, continuous on-line impedance monitoring and an intuitive user-friendly interface, the Deymed TruScan Neurofeedback is the only ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

you can get it from template. You can also infer it from where the ears are on the cap.
see for example https://mne.tools/stable/auto_tutorials/source-modeling/plot_eeg_no_mri.html to see how it should look like on fsaverage.
it’s the convention of the head coord system in MNE. See: https://mne.tools/dev/auto_tutorials/source-modeling/plot_source_alignment.html#coordinate-frame-definitions
@agramfort Thanks!
May I know if these fiducial points are information that I can obtain from the vendor (i.e., fixed values for the cap) or is it something acquired for each individual subject using, for instance, their MRI?
And out of curiosity, why is the coordinates array specified as yxz (I would have expected xyz)?