smooth,SurfaceGeometry-method | R Documentation |
This method applies smoothing to a brain surface geometry object of class SurfaceGeometry
using various algorithms. Smoothing is useful for removing noise and creating a more continuous surface.
## S4 method for signature 'SurfaceGeometry'
smooth(
x,
type = c("taubin", "laplace", "HClaplace", "fujiLaplace", "angWeight",
"surfPreserveLaplace"),
lambda = 0.7,
mu = -0.53,
delta = 0.1,
iteration = 5
)
x |
A |
type |
A character string specifying the smoothing algorithm to use. Available options are:
|
lambda |
A numeric value that controls the amount of smoothing. Higher values lead to more aggressive smoothing. This parameter is particularly relevant for Taubin and Laplacian smoothing methods. |
mu |
A numeric value used in Taubin smoothing to control shrinkage. A value close to zero reduces shrinkage, while a negative value can help in shape preservation. |
delta |
A numeric value used in certain smoothing algorithms to adjust the influence of smoothing (e.g., in surface-preserving methods). |
iteration |
An integer specifying the number of smoothing iterations to apply. More iterations result in a smoother surface but can also lead to excessive flattening. |
The function returns the smoothed SurfaceGeometry
object with the updated mesh.
vcgSmooth
for more details on the underlying smoothing algorithms.
## Not run:
# Example of applying Taubin smoothing to a brain surface
smoothed_surface <- smooth(white_surf, type="taubin", lambda=0.5, mu=-0.5, iteration=10)
# Example of using surface-preserving Laplacian smoothing
smoothed_surface <- smooth(white_surf, type="surfPreserveLaplace", iteration=5)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.