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
Syntaxpublic static void EstimateTransformation(
this IShapeTransformer transformer,
IInputArray transformingShape,
IInputArray targetShape,
VectorOfDMatch matches
)
<ExtensionAttribute>
Public Shared Sub EstimateTransformation (
transformer As IShapeTransformer,
transformingShape As IInputArray,
targetShape As IInputArray,
matches As VectorOfDMatch
)
public:
[ExtensionAttribute]
static void EstimateTransformation(
IShapeTransformer^ transformer,
IInputArray^ transformingShape,
IInputArray^ targetShape,
VectorOfDMatch^ matches
)
[<ExtensionAttribute>]
static member EstimateTransformation :
transformer : IShapeTransformer *
transformingShape : IInputArray *
targetShape : IInputArray *
matches : VectorOfDMatch -> unit
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