Transforms source image using the specified matrix

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

Syntax

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

Parameters

src
Type: System..::.IntPtr
Source image
dst
Type: System..::.IntPtr
Destination image
mapMatrix
Type: System..::.IntPtr
2x3 transformation matrix
flags
Type: System..::.Int32
flags
fillval
Type: Emgu.CV.Structure..::.MCvScalar
A value used to fill outliers

See Also