Click or drag to resize

CudaInvokeRotate Method

http://www.emgu.com
Rotates an image around the origin (0,0) and then shifts it.

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void Rotate(
	IInputArray src,
	IOutputArray dst,
	Size dSize,
	double angle,
	double xShift = 0,
	double yShift = 0,
	Inter interpolation = Inter.Linear,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source image. Supports 1, 3 or 4 channels images with Byte, UInt16 or float depth
dst
Type: Emgu.CVIOutputArray
Destination image with the same type as src. Must be pre-allocated
dSize
Type: System.DrawingSize
The size of the destination image
angle
Type: SystemDouble
Angle of rotation in degrees
xShift (Optional)
Type: SystemDouble
Shift along the horizontal axis
yShift (Optional)
Type: SystemDouble
Shift along the verticle axis
interpolation (Optional)
Type: Emgu.CV.CvEnumInter
Interpolation method. Only INTER_NEAREST, INTER_LINEAR, and INTER_CUBIC are supported.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also