ShapeInvokeApplyTransformation Method |
http://www.emgu.com
Apply a transformation, given a pre-estimated transformation parameters.
Namespace:
Emgu.CV.Shape
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static float ApplyTransformation(
this IShapeTransformer transformer,
IInputArray input,
IOutputArray output = null
)
<ExtensionAttribute>
Public Shared Function ApplyTransformation (
transformer As IShapeTransformer,
input As IInputArray,
Optional output As IOutputArray = Nothing
) As Single
public:
[ExtensionAttribute]
static float ApplyTransformation(
IShapeTransformer^ transformer,
IInputArray^ input,
IOutputArray^ output = nullptr
)
[<ExtensionAttribute>]
static member ApplyTransformation :
transformer : IShapeTransformer *
input : IInputArray *
?output : IOutputArray
(* Defaults:
let _output = defaultArg output null
*)
-> float32
Parameters
- transformer
- Type: Emgu.CV.ShapeIShapeTransformer
The shape transformer - input
- Type: Emgu.CVIInputArray
Contour (set of points) to apply the transformation. - output (Optional)
- Type: Emgu.CVIOutputArray
Output contour.
Return Value
Type:
Single[Missing <returns> documentation for "M:Emgu.CV.Shape.ShapeInvoke.ApplyTransformation(Emgu.CV.Shape.IShapeTransformer,Emgu.CV.IInputArray,Emgu.CV.IOutputArray)"]
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