surf.sphere.gaussianweights | R Documentation |
Compute Gaussian weights
surf.sphere.gaussianweights(spherical_surface, sphere_dists, gstd)
spherical_surface |
an fs.surface instance representing the spherical version ( |
sphere_dists |
list of vectors, as returned by surf.sphere.dist |
gstd |
double, Gaussian standard deviation, can be computed from the FWHM as |
vector of Gaussian weights for vertices
## Not run:
fwhm = 20.0; truncfactor = 3.5; sjd = fsaverage.path();
gstd = fwhm / sqrt(log(256.0)); maxdist = truncfactor * gstd;
spherical_surface = subject.surface(sjd, "fsaverage3", surface="sphere", hemi="lh");
sphere_dists = surf.sphere.dist(spherical_surface, maxdist = maxdist);
gaussian_weights = fsbrain:::surf.sphere.gaussianweights(spherical_surface,
sphere_dists, gstd);
morph_data = rep(NA, nrow(spherical_surface$vertices));
morph_data[sphere_dists$neigh[[500]]] = gaussian_weights[[500]];
vis.data.on.subject(sjd, "fsaverage3", morph_data_lh=morph_data);
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.