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