You are here: Start » AVL.NET » Invoke.NormalizeLocalBrightness_Mean
Normalizes local brightness of the image. Internally uses Mean smoothing.
Namespace: | Avl |
---|---|
Assembly: | AvlNet.dll |
Syntax
C++
C#
public static void NormalizeLocalBrightness_Mean ( Avl.Image inImage, Optional<Avl.Region> inRoi, int inRadiusX, Optional<int> inRadiusY, 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. | ||
![]() | inRadiusX | int | <0, INF> | 10 | Nearly half of the kernel's width (2*R+1). Default value: 10. |
![]() | inRadiusY | Atl.Optional<int> | <0, INF> | Nearly half of the kernel's height (2*R+1), or same as inRadiusX. 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. |