LerpImages_ByImage


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

Syntax

C++
Python
 
def LerpImages_ByImage(
	inImage1: Image,
	inImage2: Image,
	inLambdaImage: Image,
	outImage: Image,
	/,
	*,
	inRoi: Region | None = None
)
-> None

Parameters

Name Type Default Description
Input value inImage1 Image First input image
Input value inImage2 Image Second input image
Input value inRoi Region | None None Range of pixels to be processed
Input value inLambdaImage Image Values of interpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2
Output value outImage Image Output image

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.