You are here: Start » FIL.NET » Invoke.NormalizeLocalBrightness_Mean
Normalizes local brightness of the image. Internally uses Mean smoothing.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void NormalizeLocalBrightness_Mean ( Fil.Image inImage, Optional<Fil.Region> inRoi, int inRadiusX, Optional<int> inRadiusY, float inTargetMean, float inGammaValue, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inRadiusX | int | <0, INF> | 10 | Nearly half of the kernel's width (2*R+1). Default value: 10. |
![]() | inRadiusY | Ftl.Optional<int> | <0, INF> | Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: ftl::NIL. | |
![]() | inTargetMean | float | 128.0f | Target mean brightness. Default value: 128.0f. | |
![]() | inGammaValue | float | <0.01f, 8.0f> | 1.0f | Gamma coefficient, where 1.0 is neutral. Default value: 1.0f. |
![]() | outImage | Fil.Image | Output image. |