1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
"""
============================================
Plot a label generated at an activation foci
============================================
Plot a spheroid at a position on the surface manifold
according to an MNI coordinate, generate a label
around it and plot it.
"""
print __doc__
import os
from surfer import Brain, utils
subject_id = "fsaverage"
subjects_dir = os.environ["SUBJECTS_DIR"]
"""
Bring up the visualization.
"""
brain = Brain(subject_id, "lh", "inflated")
"""
First we'll get a set of stereotaxic foci in the MNI
coordinate system. These might be peak activations from
a volume based analysis.
"""
coord = [-43, 25, 24]
utils.coord_to_label(subject_id, coord, label='coord', hemi='lh', n_steps=50,
map_surface="white")
brain.add_label('coord-lh.label')
"""
Now we plot the foci on the inflated surface. We will map
the foci onto the surface by finding the vertex on the "white"
mesh that is closest to the coordinate of the point we want
to display.
"""
brain.add_foci([coord], map_surface="white", color="gold")
"""
or using a vertex index
"""
coord = 0
utils.coord_to_label(subject_id, coord, label='coord', hemi='lh', n_steps=50,
map_surface="white", coord_as_vert=True)
brain.add_label('coord-lh.label', color='blue')
"""
Now we plot the foci on the inflated surface. We will map
the foci onto the surface by finding the vertex on the "white"
mesh that is closest to the coordinate of the point we want
to display.
"""
brain.add_foci([coord], map_surface="white", color="red", coords_as_verts=True)
|