[FieldTrip] EEG source localization beamformer
Sina Makhdoomi Kaviri
sinam1 at umbc.edu
Sun Nov 3 21:35:10 CET 2024
To whom it may concern,
I am working with a dataset related to reach and grasp tasks involving
six distinct motor tasks. I have divided the data based on event
markers and am using DICS Beamforming for source localization. Here is
an overview of the analysis steps I am following:
I am using a multitaper method for frequency analysis (mtmfft with
DPSS tapers) to compute the power and cross-spectral density (CSD) for
frequencies ranging from 0 to 100 Hz. Subsequently, I perform DICS
beamforming on the frequency-domain data to localize the sources in
the brain.
After obtaining the source estimates, I visualize the results using
orthogonal views. The problem I'm encountering is that, instead of
locating the main sources in the motor cortex as expected for the
reach and grasp tasks, the beamforming results show activation in the
parietal and occipital lobes. This is inconsistent with the expected
motor activity. Could you please help me identify any issues with my
approach or the code that might be causing this discrepancy?
cfg = [];
cfg.method = 'mtmfft';
cfg.taper = 'dpss';
cfg.output = 'powandcsd';
cfg.foi = 0:5:100; % or when I use 18
cfg.tapsmofrq = 2;
powcsd_all = ft_freqanalysis(cfg, EEG_avg);
cfg = [];
cfg.method = 'dics';
cfg.frequency = 18;
cfg.grid = leadfield;
cfg.headmodel = headmodel_eeg;
cfg.channel = matching_channels;
cfg.senstype = 'EEG';
cfg.dics.keepfilter = 'yes';
cfg.dics.lambda = '15%';
source = ft_sourceanalysis(cfg, powcsd_all);
%% Plot DICS Beamforming Results
cfg = [];
cfg.parameter = 'avg.pow';
sourceint = ft_sourceinterpolate(cfg, source, mri_resliced);
cfg = [];
cfg.method = 'ortho';
cfg.funparameter = 'pow';
cfg.funcolorlim = 'zeromax';
ft_sourceplot(cfg, sourceint);
Best regards,
Sina Makhdoomi Kaviri
PhD Candidate & Graduate Research Assistant
Sensorimotor Control Lab/Vinjamuri Lab
Department of Computer Science and Electrical Engineering
University of Maryland, Baltimore County
-------------- next part --------------
A non-text attachment was scrubbed...
Name: task4_trial1_subjectG01_BF.png
Type: image/png
Size: 174391 bytes
Desc: not available
URL: <http://mailman.science.ru.nl/pipermail/fieldtrip/attachments/20241103/8987efd3/attachment-0001.png>
More information about the fieldtrip
mailing list