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 | |
|---|---|---|---|---|
![]() |
inImage1 | Image | First input image | |
![]() |
inImage2 | Image | Second input image | |
![]() |
inRoi | Region | None | None | Range of pixels to be processed |
![]() |
inLambdaImage | Image | Values of interpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2 | |
![]() |
outImage | Image | Output image |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.


