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

Invoke.ClipPixels

Sets pixels below the low value to the low value and above the high value to the high value.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void ClipPixels
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	Optional<float> inLowValue,
	Optional<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.
inLowValueFtl.Optional<float>64.0fThe lower threshold for the image pixel values. Default value: 64.0f.
inHighValueFtl.Optional<float>192.0fThe higher threshold for the image pixel values. Default value: 192.0f.
outImageFil.ImageOutput image.

See also