ShapeInvokeWarpImage Method |
http://www.emgu.com
Apply a transformation, given a pre-estimated transformation parameters, to an Image.
Namespace:
Emgu.CV.Shape
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void WarpImage(
this IShapeTransformer transformer,
IInputArray transformingImage,
IOutputArray output,
Inter flags = Inter.Linear,
BorderType boarderMode = BorderType.Constant,
MCvScalar borderValue = null
)
<ExtensionAttribute>
Public Shared Sub WarpImage (
transformer As IShapeTransformer,
transformingImage As IInputArray,
output As IOutputArray,
Optional flags As Inter = Inter.Linear,
Optional boarderMode As BorderType = BorderType.Constant,
Optional borderValue As MCvScalar = Nothing
)
public:
[ExtensionAttribute]
static void WarpImage(
IShapeTransformer^ transformer,
IInputArray^ transformingImage,
IOutputArray^ output,
Inter flags = Inter::Linear,
BorderType boarderMode = BorderType::Constant,
MCvScalar borderValue = nullptr
)
[<ExtensionAttribute>]
static member WarpImage :
transformer : IShapeTransformer *
transformingImage : IInputArray *
output : IOutputArray *
?flags : Inter *
?boarderMode : BorderType *
?borderValue : MCvScalar
(* Defaults:
let _flags = defaultArg flags Inter.Linear
let _boarderMode = defaultArg boarderMode BorderType.Constant
let _borderValue = defaultArg borderValue null
*)
-> unit
Parameters
- transformer
- Type: Emgu.CV.ShapeIShapeTransformer
The shape transformer - transformingImage
- Type: Emgu.CVIInputArray
Input image. - output
- Type: Emgu.CVIOutputArray
Output image. - flags (Optional)
- Type: Emgu.CV.CvEnumInter
Image interpolation method. - boarderMode (Optional)
- Type: Emgu.CV.CvEnumBorderType
border style. - borderValue (Optional)
- Type: Emgu.CV.StructureMCvScalar
border value.
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