Click or drag to resize

CvInvokeWarpPerspective Method

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

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void WarpPerspective(
	IInputArray src,
	IOutputArray dst,
	IInputArray mapMatrix,
	Size dsize,
	Inter interpolationType = Inter.Linear,
	Warp warpType = 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
3x3 transformation matrix
dsize
Type: System.DrawingSize
Size of the output image
interpolationType (Optional)
Type: Emgu.CV.CvEnumInter
Interpolation method
warpType (Optional)
Type: Emgu.CV.CvEnumWarp
Warp method
borderMode (Optional)
Type: Emgu.CV.CvEnumBorderType
Pixel extrapolation method
borderValue (Optional)
Type: Emgu.CV.StructureMCvScalar
value used in case of a constant border
See Also