Calculates the matrix of an affine transform such that: (x'_i,y'_i)^T=map_matrix (x_i,y_i,1)^T where dst(i)=(x'_i,y'_i), src(i)=(x_i,y_i), i=0..2.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvGetAffineTransform(
	PointF[] src,
	PointF[] dst,
	IntPtr mapMatrix
)
Public Shared Function cvGetAffineTransform ( _
	src As PointF(), _
	dst As PointF(), _
	mapMatrix As IntPtr _
) As IntPtr
public:
static IntPtr cvGetAffineTransform(
	array<PointF>^ src, 
	array<PointF>^ dst, 
	IntPtr mapMatrix
)

Parameters

src
array< PointF >[]()[]
Coordinates of 3 triangle vertices in the source image.
dst
array< PointF >[]()[]
Coordinates of the 3 corresponding triangle vertices in the destination image
mapMatrix
IntPtr
Pointer to the destination 2x3 matrix

Return Value

Pointer to the destination 2x3 matrix

See Also