CvInvokeGetAffineTransform Method (IInputArray, IOutputArray) |
http://www.emgu.com
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.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static Mat GetAffineTransform(
IInputArray src,
IOutputArray dst
)
Public Shared Function GetAffineTransform (
src As IInputArray,
dst As IOutputArray
) As Mat
public:
static Mat^ GetAffineTransform(
IInputArray^ src,
IOutputArray^ dst
)
static member GetAffineTransform :
src : IInputArray *
dst : IOutputArray -> Mat
Parameters
- src
- Type: Emgu.CVIInputArray
Pointer to an array of PointF, Coordinates of 3 triangle vertices in the source image. - dst
- Type: Emgu.CVIOutputArray
Pointer to an array of PointF, Coordinates of the 3 corresponding triangle vertices in the destination image
Return Value
Type:
MatThe destination 2x3 matrix
See Also