how to save a 3D Mayani scene in Windows

External Email - Use Caution

Hello,
I was wondering if anyone knows how to save a 3D Mayani scene in Windows.
The scenes were created with:

eeg_map = mne.sensitivity_map(fwd, ch_type='eeg', mode='fixed')
eeg_map.plot(time_label='EEG sensitivity', subjects_dir=subjects_dir, clim=dict(lims=[0, 50, 100]))

mne.viz.plot_alignment(epochs.info, src=src, eeg=['original', 'projected'], trans=trans,show_axes=True, mri_fiducials=True, dig='fiducials')

Thank you.

Best wishes,
Federica

[University of Central Lancashire]
Please consider the environment before printing
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.nmr.mgh.harvard.edu/pipermail/mne_analysis/attachments/20200303/2a4470e3/attachment.html

External Email - Use Caution

hi,

what you mean save a scene? a screen shot?

if you are using mayavi you can do:

fig = mne.viz.plot_alignment(...)
from mayavi import mlab
mlab.savefig('test.png', figure=fig)

HTH
Alex