Click or drag to resize

CudaInvokeMagnitudeSqr Method

http://www.emgu.com
Computes squared magnitude of each (x(i), y(i)) vector

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public static void MagnitudeSqr(
	IInputArray x,
	IInputArray y,
	IOutputArray magnitude,
	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
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