Create a (2x3) 2D rotation matrix

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public RotationMatrix2D(
	PointF center,
	double angle,
	double scale
)
Public Sub New ( _
	center As PointF, _
	angle As Double, _
	scale As Double _
)
public:
RotationMatrix2D(
	PointF center, 
	double angle, 
	double scale
)

Parameters

center
PointF
Center of the rotation in the source image
angle
Double
The rotation angle in degrees. Positive values mean couter-clockwise rotation (the coordiate origin is assumed at top-left corner).
scale
Double
Isotropic scale factor.

See Also