You are here: Start » FIL.NET » Invoke.LerpImages
Interpolates two images linearly pixel by pixel.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void LerpImages ( Fil.Image inImage1, Fil.Image inImage2, Optional<Fil.Region> inRoi, float inLambda, Fil.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage1 | Fil.Image | First input image. | ||
![]() | inImage2 | Fil.Image | Second input image. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inLambda | float | <0.0f, 1.0f> | 0.5f | Interpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2. Default value: 0.5f. |
![]() | outImage | Fil.Image | Output image. |