You are here: Start » FIL.NET » Invoke.ResaturateImage

Invoke.ResaturateImage

Sets pixels below the low value to minimum, above the high value to maximum, and interpolates the rest.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ResaturateImage
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	float inLowValue,
	float inHighValue,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inLowValuefloat64.0fThe value that will be changed to minimum (usually 0). Default value: 64.0f.
inHighValuefloat192.0fThe value that will be changed to maximum (usually 255). Default value: 192.0f.
outImageFil.ImageOutput image.

See also