You are here: Start » FIL.NET » Invoke.SmoothImage_Bilateral
Smooths an image while preserving sharp edges.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SmoothImage_Bilateral ( Fil.Image inImage, Optional<Fil.Image> inEdgesImage, Optional<Fil.Region> inRoi, float inDistanceSigma, float inColorSigma, Fil.BilateralSamplingMethod inSamplingMethod, int inIterationCount, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inEdgesImage | Ftl.Optional<Fil.Image> | Image to be used for edge detection. Default value: ftl::NIL. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inDistanceSigma | float | <0.0f, 128.0f> | 5.0f | Sigma used when calculating the gaussian difference two pixel positions. Default value: 5.0f. |
![]() | inColorSigma | float | <0.0f, INF> | 35.0f | Sigma used when calculating the gaussian difference between two colors. Default value: 35.0f. |
![]() | inSamplingMethod | Fil.BilateralSamplingMethod | Poisson | Whether to use a naive (full) or a subsampling method. Default value: Poisson. | |
![]() | inIterationCount | int | <1, INF> | 1 | Determines how many times the bilateral filter will be run. Default value: 1. |
![]() | outImage | Fil.Image | Output image. |