You are here: Start » AVL.NET » Invoke.LerpImages

Invoke.LerpImages

Interpolates two images linearly pixel by pixel.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void LerpImages
(
	Avl.Image inImage1,
	Avl.Image inImage2,
	Optional<Avl.Region> inRoi,
	float inLambda,
	Avl.Image outImage
)

Parameters

Name Type Range Default Description
inImage1Avl.ImageFirst input image.
inImage2Avl.ImageSecond input image.
inRoiAtl.Optional<Avl.Region>Range of pixels to be processed. Default value: atl::NIL.
inLambdafloat<0.0f, 1.0f>0.5fInterpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2. Default value: 0.5f.
outImageAvl.ImageOutput image.

See also