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 (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax
public static void WarpAffine(
	IInputArray src,
	IOutputArray dst,
	IInputArray mapMatrix,
	Size dsize,
	Inter interpMethod = Inter.Linear,
	Warp warpMethod = Warp.Default,
	BorderType borderMode = BorderType.Constant,
	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