You are here: Start » FIL.NET » Function Reference » Profile » Profile Local Transforms » FIL.SmoothProfile_Gauss
Smooths a profile by averaging points within a kernel using gaussian-weighted average.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void SmoothProfile_Gauss ( FilNet.Profile inProfile, FilNet.Range? inRange, float inStdDev, float inKernelRelativeSize, bool inCyclic, FilNet.Profile outProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inProfile | FilNet.Profile | Input profile. | ||
![]() | inRange | FilNet.Range? | |||
![]() | inStdDev | float | <0.0f, INF> | 0.6f | Standard deviation of the gaussian kernel. Default value: 0.6f. |
![]() | inKernelRelativeSize | float | <0.0f, INF> | 3.0f | A multiple of the standard deviation determining the size of the kernel. Default value: 3.0f. |
![]() | inCyclic | bool | Defines whether the first element should be considered adjacent to the last element. | ||
![]() | outProfile | FilNet.Profile | Output profile. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Range exceeds the input profile in SmoothProfile_Gauss. |