You are here: Start » AVL.NET » Invoke.NormalizeLocalBrightness_Gauss
Normalizes local brightness of the image. Internally uses Gauss smoothing.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void NormalizeLocalBrightness_Gauss ( Avl.Image inImage, Optional<Avl.Region> inRoi, float inStdDevX, Optional<float> inStdDevY, float inTargetMean, float inGammaValue, Avl.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Avl.Image | Input image. | ||
![]() | inRoi | Atl.Optional<Avl.Region> | Range of pixels to be processed. Default value: atl::NIL. | ||
![]() | inStdDevX | float | <0.0f, INF> | 5.0f | Horizontal smoothing standard deviation. Default value: 5.0f. |
![]() | inStdDevY | Atl.Optional<float> | <0.0f, INF> | Vertical smoothing standard deviation. Default value: atl::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 | Avl.Image | Output image. |