Click or drag to resize

CvInvokeWarpAffine Method

http://www.emgu.com
Applies an affine transformation to an image.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntax
public static void WarpAffine(
	IInputArray src,
	IOutputArray dst,
	IInputArray mapMatrix,
	Size dsize,
	Inter interpMethod = 1,
	Warp warpMethod = 0,
	BorderType borderMode = 0,
	MCvScalar borderValue = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source image
dst
Type: Emgu.CVIOutputArray
Destination image
mapMatrix
Type: Emgu.CVIInputArray
2x3 transformation matrix
dsize
Type: System.DrawingSize
Size of the output image.
interpMethod (Optional)
Type: Emgu.CV.CvEnumInter
Interpolation method
warpMethod (Optional)
Type: Emgu.CV.CvEnumWarp
Warp method
borderMode (Optional)
Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method
borderValue (Optional)
Type: Emgu.CV.StructureMCvScalar
A value used to fill outliers
See Also