I need to access montage files from a Brainproduct device (32 electrodes, LiveAmp amplifier). And by now I might access their montage files only by mne.channels.read_montage (mne.channels.read_montage — MNE 0.15.dev0 documentation).
Our data format is .xdf for EEG data and .rwksp or .bvef for electrode locations.
Unfortunately this is available only in the last version which is not stable.
Which are possible alternative solutions to acess the montage files from such device? Thank everyone in advance!
@FrancescoChiossi, it seems to me like you used an “EasyCap” electrode cap (these are the standard caps that BrainProducts uses for their equipment) with standard 10-20 positions (i.e., you did not record your own electrode locations; let me know if I get this wrong).
import mne
montage = mne.channels.make_standard_montage(kind="easycap-M1")
# check how it looks
montage.plot()
# apply to your data "raw" and see how it looks
raw.set_montage(montage)
raw.plot_sensors()
Hi Stefan,
Is it the only way to do source localization when we don’t record the location of electrodes?
We do have the bvef file to find the location and the size of the CAP. We are missing nasion, lpa, rpa information.
I am new to this.
Thank you
I believe for source localization you do need the anatomical landmarks / fiducials (nasion, lpa, rpa), but I have never done that myself, so I hope that others can provide some input here.
Dear Stefan,
Thank you so much for your reply. I was missing this reply. Sorry for the late response.
I compared the default EASYCAP-M1 montage and the electrode location file I was using. I think the fiducials/landmarks for the similar type (same company, similar distribution) could be estimated by the size of the cap. I tried this on EASYCAP-M1.txt in the system. It worked. I am repeating this on my EASPCAP 64 channel.
I got a new problem.
I generated the mne.channels.DigMontage with fiducial and loaded into the coreg GUI. The fiducial landmark could be fitted with MRI fiducials, but the location of the electrode is not showing, which is odd.
Could you tell me if I did something wrong?
Hey @yourmaverick – please open a new thread for each distinct issue that you are facing. That will help to keep the forum clean: Users can more easily search for similar issues if they are in separate topics.
PS: I have never used the coreg GUI, so I won’t be able to help here, but I am sure somebody else will.