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

Invoke.LerpImages_ByImage

Interpolates two images linearly pixel by pixel according to another image values.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void LerpImages_ByImage
(
	Fil.Image inImage1,
	Fil.Image inImage2,
	Optional<Fil.Region> inRoi,
	Fil.Image inLambdaImage,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inImage1Fil.ImageFirst input image.
inImage2Fil.ImageSecond input image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inLambdaImageFil.ImageValues of interpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2.
outImageFil.ImageOutput image.

See also