You are here: Start » FIL.NET » Function Reference » Image » Image Combinators » FIL.LerpImages_ByImage
Interpolates two images linearly pixel by pixel according to another image values.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void LerpImages_ByImage ( FilNet.Image inImage1, FilNet.Image inImage2, FilNet.Image inLambdaImage, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage1 | FilNet.Image | First input image. | ||
![]() | inImage2 | FilNet.Image | Second input image. | ||
![]() | inLambdaImage | FilNet.Image | Values of interpolation between the input images where 0.0 value is equal to inImage1 and 1.0 to inImage2. | ||
![]() | outImage | FilNet.Image | Output image. |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Image formats are not the same in LerpImages_ByImage. |
DomainError | Image sizes are not equal in LerpImages_ByImage. |
DomainError | Region exceeds an input image in LerpImages_ByImage. |
DomainError | Not supported inLambdaImage pixel format in LerpImages_ByImage. Supported formats: 1xReal. |