Click or drag to resize

ShapeInvokeEstimateTransformation Method

http://www.emgu.com
Estimate the transformation parameters of the current transformer algorithm, based on point matches.

Namespace:  Emgu.CV.Shape
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void EstimateTransformation(
	this IShapeTransformer transformer,
	IInputArray transformingShape,
	IInputArray targetShape,
	VectorOfDMatch matches
)

Parameters

transformer
Type: Emgu.CV.ShapeIShapeTransformer
The shape transformer
transformingShape
Type: Emgu.CVIInputArray
Contour defining first shape.
targetShape
Type: Emgu.CVIInputArray
Contour defining second shape (Target).
matches
Type: Emgu.CV.UtilVectorOfDMatch
Standard vector of Matches between points.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IShapeTransformer. 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