- MNE version: 1.5.1
- operating system: Windows 10
I am using ANTNeuro system with waveguard 32 channels electrode cap.
the electrode channels include :-
[βFp1β, βFpzβ, βFp2β, βF7β, βF3β, βFzβ, βF4β, βF8β, βFC5β, βFC1β, βFC2β, βFC6β, βM1β, βT7β, βC3β, βCzβ, βC4β, βT8β, βM2β, βCP5β, βCP1β, βCP2β, βCP6β, βP7β, βP3β, βPzβ, βP4β, βP8β, βPOzβ, βO1β, βOzβ, βO2β]
I am trying to set standard 1020 montage on my data, however the electrode mapping doesnt seems correct.
I tried to compare the electrode positioning using other montages. in most of the cases there were several channels which not present in the montages.
However, only M1 and M2 were missing in case of Biosemi 64, Easycap-M1 and brainproduct-RNP-BA-128.
Just to see the issue, i removed M1 and M2 from my data and used brainproduct-RNP-BA-128 montage. this time it was much better than standard 1020β¦
Here, the dotted shows the default electrode layout of waveguard cap. and the solid shows the brainproduct montage.
But i cannot use this montage as it doesnβt contains two channels available in my data.
Code:
P_Num = 2
Myfile= rβC:\Users\Data A\P{}\Session-1\Data\P{}-Ss1-X1-eeg.edfβ.format(P_Num, P_Num)
raw=mne.io.read_raw_edf(Myfile, preload=True)
#The default names of channles were like :- βEEG Fp1-CPzβ β¦ So renaming them
channel_mapping = {
βEEG Fp1-CPzβ: βFp1β,
βEEG Fpz-CPzβ: βFpzβ,
βEEG Fp2-CPzβ: βFp2β, - - - - - - - }
raw.rename_channels(channel_mapping)
standard_montage = mne.channels.make_standard_montage(βstandard_1020β)
raw.set_montage(standard_montage)
raw.plot_sensors(show_names=True)