Back to FabImage Library website
You are here: Start » Function Reference » Profile » Profile Local Transforms » SmoothProfile_Gauss

SmoothProfile_Gauss
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationPro |
Smooths a profile by averaging points within a kernel using gaussian-weighted average.
Applications: Noise removal.
Syntax
C++
C#
void fil::SmoothProfile_Gauss ( const fil::Profile& inProfile, ftl::Optional<const fil::Range&> inRange, const float inStdDev, const float inKernelRelativeSize, const bool inCyclic, fil::Profile& outProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
inProfile | const Profile& | Input profile | ||
![]() |
inRange | Optional<const Range&> | NIL | ||
![]() |
inStdDev | const float | 0.0 - ![]() |
0.6f | Standard deviation of the gaussian kernel |
![]() |
inKernelRelativeSize | const float | 0.0 - ![]() |
3.0f | A multiple of the standard deviation determining the size of the kernel |
![]() |
inCyclic | const bool | Defines whether the first element should be considered adjacent to the last element | ||
![]() |
outProfile | Profile& | Output profile |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Range exceeds the input profile in SmoothProfile_Gauss. |