You are here: Start » FIL.NET » Invoke.AddNoiseToImage
Adds random noise to the image.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void AddNoiseToImage ( Fil.RandomState ioState, Fil.Image inImage, float inMinValue, float inMaxValue, float inNoiseStrength, bool inColorNoise, Optional<int> inSeed, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
ioState | Fil.RandomState | State of generator. | |||
![]() | inImage | Fil.Image | Input image. | ||
![]() | inMinValue | float | 0.0f | Minimum value of noise pixel, inclusive. Default value: 0.0f. | |
![]() | inMaxValue | float | 256.0f | Maximum value of noise pixel, exclusive. Default value: 256.0f. | |
![]() | inNoiseStrength | float | <0.0f, 1.0f> | 0.5f | Noise strength. Default value: 0.5f. |
![]() | inColorNoise | bool | If 'True', noise will be generated separately for each channel. | ||
![]() | inSeed | Ftl.Optional<int> | Random seed used to generate noise. Default value: ftl::NIL. | ||
![]() | outImage | Fil.Image | Output image. |