smooth,NeuroSurface-method | R Documentation |
This method applies smoothing to the data values associated with a NeuroSurface
object. Unlike the geometric smoothing applied to SurfaceGeometry
, this function smooths the scalar values (e.g., intensity or activation) associated with each vertex on the surface.
## S4 method for signature 'NeuroSurface'
smooth(x, sigma = 5, ...)
x |
A |
sigma |
A numeric value specifying the smoothing radius. This defines the neighborhood around each vertex used to compute the smoothed value. Default is 5. |
... |
Additional arguments passed to the smoothing function. |
The smoothing process involves averaging the data values within the neighborhood of each vertex. For each vertex on the surface, the function calculates the mean of its own value and the values of its adjacent vertices within the graph structure of the surface. The result is a smoother representation of the data, which can be useful for reducing noise or visualizing broader trends on the surface.
The smoothing is particularly useful when working with noisy data or when a smoother representation of the underlying signal is desired. It is commonly applied in neuroimaging to enhance visualization or prepare data for further analysis.
A new NeuroSurface
object with the smoothed data values. The geometry remains unchanged.
smooth,SurfaceGeometry-method
for smoothing the geometry of a surface.
## Not run:
# Example of smoothing data on a NeuroSurface object
smoothed_data_surface <- smooth(neuro_surf, sigma=3)
# The original geometry is preserved, but the data is smoothed
plot_surface(smoothed_data_surface)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.