geodesic.circles {fsbrain} | R Documentation |
Compute geodesic circles and ball stats for given vertices.
Description
Compute geodesic circles and ball stats for given vertices.
Usage
geodesic.circles(surface, vertices = NULL, scale = 5)
Arguments
surface |
an |
vertices |
positive integer vector, the vertex indices for which to compute the stats. If NULL, it is computed for all vertices. |
scale |
double, surface area to be covered by patch in percent |
Note
This takes a while for large meshes, try it with single vertices or with a surface like fsaverage3 if you want it for all vertices. This requires the optional dependency package 'pracma'.
Examples
## Not run:
sjd = fsaverage.path(TRUE);
surface = subject.surface(sjd, 'fsaverage3', hemi='lh');
gc = geodesic.circles(surface);
vis.data.on.subject(sjd, 'fsaverage3', morph_data_lh = gc$radius);
vis.data.on.subject(sjd, 'fsaverage3', morph_data_lh = gc$perimeter);
## End(Not run)
[Package fsbrain version 0.5.5 Index]