Back to FabImage Library website
You are here: Start » Function Reference » Image » Image Point Transforms » AddNoiseToImage
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Adds random noise to the image.
Syntax
C++
C#
void fil::AddNoiseToImage ( RandomState& ioState, const fil::Image& inImage, const float inMinValue, const float inMaxValue, const float inNoiseStrength, const bool inColorNoise, ftl::Optional<int> inSeed, fil::Image& outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() |
ioState | RandomState& | Object used to maintain state of the function. | ||
![]() |
inImage | const Image& | Input image | ||
![]() |
inMinValue | const float | 0.0f | Minimum value of noise pixel, inclusive | |
![]() |
inMaxValue | const float | 256.0f | Maximum value of noise pixel, exclusive | |
![]() |
inNoiseStrength | const float | 0.0 - 1.0 | 0.5f | Noise strength |
![]() |
inColorNoise | const bool | If 'True', noise will be generated separately for each channel | ||
![]() |
inSeed | Optional<int> | NIL | Random seed used to generate noise | |
![]() |
outImage | Image& | Output image |