RotationMatrix2D Constructor (PointF, Double, Double) |
http://www.emgu.com
Create a (2x3) 2D rotation matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic 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
)
new :
center : PointF *
angle : float *
scale : float -> RotationMatrix2D
Parameters
- center
- Type: System.DrawingPointF
Center of the rotation in the source image - angle
- Type: SystemDouble
The rotation angle in degrees. Positive values mean couter-clockwise rotation (the coordiate origin is assumed at top-left corner). - scale
- Type: SystemDouble
Isotropic scale factor.
See Also