| geod.patches.color.overlay {fsbrain} | R Documentation | 
Generate color overlay from geodesic patches around several vertices.
Description
Works across hemispheres (for a whole brain) if you pass a hemilist of meshes as parameter 'mesh', see below.
Usage
geod.patches.color.overlay(
  mesh,
  vertex,
  color = "#FF0000",
  bg_color = "#FEFEFE",
  ...
)
Arguments
mesh | 
 a single   | 
vertex | 
 positive integer (or vector of the latter), the index of the source vertex in the mesh. If a vector, the neighborhoods for all vertices will be computed separately.  | 
color | 
 single color string like   | 
bg_color | 
 character string, the background color.  | 
... | 
 extra arguments passed to   | 
Value
vector of color strings (or a hemilist of 2 such vectors if 'mesh' is a hemilist), an overlay suitable for visualization using vis.color.on.subject.
Examples
## Not run: 
  sjd = fsaverage.path(TRUE);
  surfaces = subject.surface(sjd, 'fsaverage', surface = "white", hemi = "both");
  colors = geod.patches.color.overlay(surfaces, vertex = c(12345L, 45L),
    color = c("#FF0000", "#00FF00"), max_distance = 45.0);
  vis.color.on.subject(sjd, 'fsaverage', color_lh=colors$lh, color_rh=colors$rh);
## End(Not run)