"2D disc" topography for ICA decomposition of MEG

Hello everone,

I am using brainstorm for MEG data and studying the spatial topography maps created by 20 component ICA.

I am not loading any MRI scan or any other anatomy.

I am trying to build a classifier using these images. The problem I have is that the background of the topography maps (ear, nose) are not constant between subjects. Sometimes the nose moves up, and the head moves down. Furthermore, the shape of the head also changes significantly. I have attached 2 sample figures to illustrate what I am trying to say. (Why is there this change?)

According to this link, what I need is a “2D disc” topography, which creates a more uniform circle.
However, I do not know how to create such images for ICA active projectors. The default here seems to be “2D sensor cap” and there is no option of changing it.

Alternatively, is there a way for me to just work with the actual topography, ie, without any background elements (nose, ears)?

Thank you for your help in this manner,
Sincerely,
drgarg

Hello,

You can list all the graphic objects from a Matlab figure with something like this:
findobj(gcf)

To delete the objects labeled “RefTopo” from the current figure (nose and ears):
delete(findobj(gcf, ‘Tag’, ‘RefTopo’))

You can also hack the display function…
brainstorm3/toolbox/gui/panel_ssp_selection.m, lines 487 and 491: replace the first [] with ‘2DDisc’

Cheers,
Francois

2 Likes