Click or drag to resize

CvInvokeRotate Method

http://www.emgu.com
Rotates a 2D array in multiples of 90 degrees.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Rotate(
	IInputArray src,
	IOutputArray dst,
	RotateFlags rotateCode
)

Parameters

src
Type: Emgu.CVIInputArray
input array.
dst
Type: Emgu.CVIOutputArray
output array of the same type as src. The size is the same with ROTATE_180, and the rows and cols are switched for ROTATE_90 and ROTATE_270.
rotateCode
Type: Emgu.CV.CvEnumRotateFlags
an enum to specify how to rotate the array
See Also