Click or drag to resize

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
Syntax
public static void WarpImage(
	this IShapeTransformer transformer,
	IInputArray transformingImage,
	IOutputArray output,
	Inter flags = Inter.Linear,
	BorderType boarderMode = BorderType.Constant,
	MCvScalar borderValue = null
)

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