Click or drag to resize

Cv2PerspectiveTransform Method (InputArray, OutputArray, InputArray)

performs perspective transformation of each element of multi-channel input matrix

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void PerspectiveTransform(
	InputArray src,
	OutputArray dst,
	InputArray m
)

Parameters

src
Type: OpenCvSharpInputArray
The source two-channel or three-channel floating-point array; each element is 2D/3D vector to be transformed
dst
Type: OpenCvSharpOutputArray
The destination array; it will have the same size and same type as src
m
Type: OpenCvSharpInputArray
3x3 or 4x4 transformation matrix
See Also