Click or drag to resize

CudaInvokeCartToPolar Method

http://www.emgu.com
Converts Cartesian coordinates to polar

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public static void CartToPolar(
	IInputArray x,
	IInputArray y,
	IOutputArray magnitude,
	IOutputArray angle,
	bool angleInDegrees = false,
	Stream stream = null
)

Parameters

x
Type: Emgu.CVIInputArray
The source GpuMat. Supports only floating-point type
y
Type: Emgu.CVIInputArray
The source GpuMat. Supports only floating-point type
magnitude
Type: Emgu.CVIOutputArray
The destination GpuMat. Supports only floating-point type
angle
Type: Emgu.CVIOutputArray
The destination GpuMat. Supports only floating-point type
angleInDegrees (Optional)
Type: SystemBoolean
If true, the output angle is in degrees, otherwise in radian
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