RotationMatrix2DSetRotation Method |
http://www.emgu.com
Set the values of the rotation matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic void SetRotation(
PointF center,
double angle,
double scale
)
Public Sub SetRotation (
center As PointF,
angle As Double,
scale As Double
)
public:
void SetRotation(
PointF center,
double angle,
double scale
)
member SetRotation :
center : PointF *
angle : float *
scale : float -> unit
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