CudaInvokePolarToCart Method |
http://www.emgu.com
Converts polar coordinates to Cartesian
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void PolarToCart(
IInputArray magnitude,
IInputArray angle,
IOutputArray x,
IOutputArray y,
bool angleInDegrees = false,
Stream stream = null
)
Public Shared Sub PolarToCart (
magnitude As IInputArray,
angle As IInputArray,
x As IOutputArray,
y As IOutputArray,
Optional angleInDegrees As Boolean = false,
Optional stream As Stream = Nothing
)
public:
static void PolarToCart(
IInputArray^ magnitude,
IInputArray^ angle,
IOutputArray^ x,
IOutputArray^ y,
bool angleInDegrees = false,
Stream^ stream = nullptr
)
static member PolarToCart :
magnitude : IInputArray *
angle : IInputArray *
x : IOutputArray *
y : IOutputArray *
?angleInDegrees : bool *
?stream : Stream
(* Defaults:
let _angleInDegrees = defaultArg angleInDegrees false
let _stream = defaultArg stream null
*)
-> unit
Parameters
- magnitude
- Type: Emgu.CVIInputArray
The source GpuMat. Supports only floating-point type - angle
- Type: Emgu.CVIInputArray
The source GpuMat. Supports only floating-point type - x
- Type: Emgu.CVIOutputArray
The destination GpuMat. Supports only floating-point type - y
- Type: Emgu.CVIOutputArray
The destination GpuMat. Supports only floating-point type - angleInDegrees (Optional)
- Type: SystemBoolean
If true, the input 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