Emgu.CV.CvInvoke.cv2DRotationMatrix C# (CSharp) Метод

cv2DRotationMatrix() приватный Метод

private cv2DRotationMatrix ( PointF center, double angle, double scale, IntPtr mapMatrix ) : IntPtr
center PointF
angle double
scale double
mapMatrix IntPtr
Результат IntPtr
        public static extern IntPtr cv2DRotationMatrix(
          PointF center,
          double angle,
          double scale,
          IntPtr mapMatrix);

Usage Example

Пример #1
0
 /// <summary>
 /// Set the values of the rotation matrix
 /// </summary>
 /// <param name="center">Center of the rotation in the source image</param>
 /// <param name="angle">The rotation angle in degrees. Positive values mean couter-clockwise rotation (the coordiate origin is assumed at top-left corner). </param>
 /// <param name="scale">Isotropic scale factor.</param>
 public void SetRotation(PointF center, double angle, double scale)
 {
     CvInvoke.cv2DRotationMatrix(center, angle, scale, Ptr);
 }
CvInvoke