Note
Go to the end to download the full example code.
Plot sulci on the flatmapΒΆ
The sulci are defined in a sub-layer of the sulci layer in <filestore>/<subject>/overlays.svg.
The parameter with_sulci in quickflat.make_figure controls displaying the sulci on the surface.

Generating curvature surface info...
** (inkscape:4593): WARNING **: 21:53:20.286: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function.
** (inkscape:4606): WARNING **: 21:53:21.085: Failed to wrap object of type 'GtkRecentManager'. Hint: this error is commonly caused by failing to call a library init() function.
import cortex
import numpy as np
np.random.seed(1234)
# Create a random pycortex Volume
volume = cortex.Volume.random(subject='S1', xfmname='fullhead')
# Plot a flatmap with the data projected onto the surface
# Highlight the curvature and display the sulci
_ = cortex.quickflat.make_figure(volume,
with_curvature=True,
with_sulci=True)
Total running time of the script: (0 minutes 6.485 seconds)