Transforms source image using the specified matrix

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvWarpPerspective(
	IntPtr src,
	IntPtr dst,
	IntPtr mapMatrix,
	int flags,
	MCvScalar fillval
)
Public Shared Sub cvWarpPerspective ( _
	src As IntPtr, _
	dst As IntPtr, _
	mapMatrix As IntPtr, _
	flags As Integer, _
	fillval As MCvScalar _
)
public:
static void cvWarpPerspective(
	IntPtr src, 
	IntPtr dst, 
	IntPtr mapMatrix, 
	int flags, 
	MCvScalar fillval
)

Parameters

src
IntPtr
Source image
dst
IntPtr
Destination image
mapMatrix
IntPtr
3? transformation matrix
flags
Int32

[Missing <param name="flags"/> documentation for "M:Emgu.CV.CvInvoke.cvWarpPerspective(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32,Emgu.CV.Structure.MCvScalar)"]

fillval
MCvScalar
A value used to fill outliers

See Also