-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathplot_morphometry.py
41 lines (33 loc) · 989 Bytes
/
plot_morphometry.py
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
"""
Overlay Morphometry Data
========================
Display morphometry files generated during
the cortical reconstruction process.
"""
from surfer import Brain
print(__doc__)
brain = Brain("fsaverage", "both", "pial",
background="dimgray")
if not brain.patch_mode:
brain.show_view("frontal")
"""
Because the morphometry files generated by
recon-all live in a predicatble location,
all you need to call the add_morphometry
method with is the name of the measure you want.
Here, we'll look at cortical curvatuve values,
and plot them for both hemispheres.
"""
brain.add_morphometry("curv")
"""
Each of the possible values is displayed in an
appropriate full-color map, but you can also
display in grayscale. Here we only plot the
left hemisphere.
"""
brain.add_morphometry("sulc", hemi='lh', grayscale=True)
"""
You can also use a custom colormap and tweak its range.
"""
brain.add_morphometry("thickness",
colormap="PuBuGn", min=1, max=4)