Click or drag to resize

ImageAlignmentExtensionMethodsEstimateDisplacement Method

Modifies the value of warpMatrix to contain a more accurate estimate of the transformation which maps templateIntensity onto inputIntensity.

Namespace: LynceeTec.API.Compositing
Assembly: LynceeTec.API.Compositing (in LynceeTec.API.Compositing.dll) Version: 10.2.3317.0 , built 2025-03-17 14:55:37 UTC
Syntax
public static bool EstimateDisplacement(
	this ImageAlignment value,
	Mat warpMatrix,
	Mat inputIntensity,
	Mat templateIntensity
)

Parameters

value  ImageAlignment
 
warpMatrix  Mat
A 2x3 floating-point matrix containing an initial transform.
inputIntensity  Mat
The source matrix for the transform.
templateIntensity  Mat
The source matrix for the transform. Must be the same type and size as inputIntensity.

Return Value

Boolean
True if the estimate succeeded.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ImageAlignment. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also