CudaInvokeMagnitudeSqr Method |
http://www.emgu.com
Computes squared magnitude of each (x(i), y(i)) vector
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void MagnitudeSqr(
IInputArray x,
IInputArray y,
IOutputArray magnitude,
Stream stream = null
)
Public Shared Sub MagnitudeSqr (
x As IInputArray,
y As IInputArray,
magnitude As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void MagnitudeSqr(
IInputArray^ x,
IInputArray^ y,
IOutputArray^ magnitude,
Stream^ stream = nullptr
)
static member MagnitudeSqr :
x : IInputArray *
y : IInputArray *
magnitude : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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 - 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