| Cv2GetAffineTransform Method (InputArray, InputArray) |
Calculates an affine transform from three pairs of the corresponding points.
The function calculates the 2×3 matrix of an affine transform.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static Mat GetAffineTransform(
InputArray src,
InputArray dst
)
Public Shared Function GetAffineTransform (
src As InputArray,
dst As InputArray
) As Mat
public:
static Mat^ GetAffineTransform(
InputArray^ src,
InputArray^ dst
)
static member GetAffineTransform :
src : InputArray *
dst : InputArray -> Mat
Parameters
- src
- Type: OpenCvSharpInputArray
Coordinates of triangle vertices in the source image. - dst
- Type: OpenCvSharpInputArray
Coordinates of the corresponding triangle vertices in the destination image.
Return Value
Type:
Mat[Missing <returns> documentation for "M:OpenCvSharp.Cv2.GetAffineTransform(OpenCvSharp.InputArray,OpenCvSharp.InputArray)"]
See Also