|
oevislib_net
0.14.3.0
|
Functions | |
| Histogram | oevislib_net.Histogram.GaussianSmooth (Optional< Range > inRange=null, float inStdDev=0.6f, float inKernelRelativeSize=3.0f, bool inCyclic=false) |
| Smooths the histogram by averaging points inside a kernel using Gaussian-weighted average. | |
| Histogram | oevislib_net.Histogram.Smooth (Optional< Range > inRange=null, int inKernelRadius=3, bool inCyclic=false) |
| Smooths the histogram by averaging points inside a kernel. | |
|
inline |
Smooths the histogram by averaging points inside a kernel using Gaussian-weighted average.
| inRange | Range to which apply smooth. |
| inStdDev | Standard deviation. Range: [0, +inf). |
| inKernelRelativeSize | Kernel size relative to the standard deviation (the obtained kernel radius is the product of the two). Range: [0, +inf). |
| inCyclic | Whether to consider the histogram as cyclic. |
|
inline |
Smooths the histogram by averaging points inside a kernel.
| inRange | Range to which apply smooth. |
| inKernelRadius | Width of the kernel (the final size will be 2 * inKernelRadius + 1). Range: [1, +inf). |
| inCyclic | Whether to consider the histogram as cyclic. |