http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Converts polar coordinates to Cartesian
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void PolarToCart( IntPtr magnitude, IntPtr angle, IntPtr x, IntPtr y, bool angleInDegrees, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub PolarToCart ( _ magnitude As IntPtr, _ angle As IntPtr, _ x As IntPtr, _ y As IntPtr, _ angleInDegrees As Boolean, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void PolarToCart( IntPtr magnitude, IntPtr angle, IntPtr x, IntPtr y, bool angleInDegrees, IntPtr stream ) |
Parameters
- magnitude
- Type: System..::..IntPtr
The source GpuMat. Supports only floating-point type
- angle
- Type: System..::..IntPtr
The source GpuMat. Supports only floating-point type
- x
- Type: System..::..IntPtr
The destination GpuMat. Supports only floating-point type
- y
- Type: System..::..IntPtr
The destination GpuMat. Supports only floating-point type
- angleInDegrees
- Type: System..::..Boolean
If true, the input angle is in degrees, otherwise in radian
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).