oevislib_net  0.14.3.0
Loading...
Searching...
No Matches
Local Transforms

Functions

Path oevislib_net.Path.Smooth (int inKernelRadius)
 Smooths a path by applying a mobile average to its points.
Path oevislib_net.Path.GaussianSmooth (float inStdDev, float inKernelRelativeSize)
 Smooths a path applying a Gaussian kernel to its points.

Detailed Description

Function Documentation

◆ GaussianSmooth()

Path oevislib_net.Path.GaussianSmooth ( float inStdDev,
float inKernelRelativeSize )
inline

Smooths a path applying a Gaussian kernel to its points.

Parameters
inStdDevGaussian distribution standard deviation. Range [0, +inf).
inKernelRelativeSizeCoefficient used in combination with the standard deviation to find the kernel size. Range [0, +inf).
Returns
The smoothed path.

◆ Smooth()

Path oevislib_net.Path.Smooth ( int inKernelRadius)
inline

Smooths a path by applying a mobile average to its points.

Parameters
inKernelRadiusSize of the averaging kernel. Range: [0, +inf).
Returns
The smoothed path.