This example visualizes a source space mesh used by a forward operator.
Out:
Reading a source space...
Computing patch statistics...
Patch information added...
Distance information added...
[done]
Completing triangulation info...
[done]
Completing selection triangulation info...
[done]
Reading a source space...
Computing patch statistics...
Patch information added...
Distance information added...
[done]
Completing triangulation info...
[done]
Completing selection triangulation info...
[done]
2 source spaces read
# Author: Alexandre Gramfort <alexandre.gramfort@telecom-paristech.fr>
#
# License: BSD (3-clause)
import os.path as op
import mne
from mne.datasets import sample
print(__doc__)
data_path = sample.data_path()
subjects_dir = op.join(data_path, 'subjects')
fname = op.join(subjects_dir, 'sample', 'bem', 'sample-oct-6-src.fif')
patch_stats = True # include high resolution source space
src = mne.read_source_spaces(fname, patch_stats=patch_stats)
# Plot the 3D source space (high sampling)
src.plot(subjects_dir=subjects_dir)
Total running time of the script: ( 0 minutes 2.986 seconds)