Click or drag to resize

Cv2Transform Method

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

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

Parameters

src
Type: OpenCvSharpInputArray
The source array; must have as many channels (1 to 4) as mtx.cols or mtx.cols-1
dst
Type: OpenCvSharpOutputArray
The destination array; will have the same size and depth as src and as many channels as mtx.rows
m
Type: OpenCvSharpInputArray
The transformation matrix
See Also