Click or drag to resize
CudaInvokeSqrt Method
http://www.emgu.com
Computes square root of each pixel in an image

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void Sqrt(
	IInputArray src,
	IOutputArray dst,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The source GpuMat, support depth of byte, UInt16, Int16 and float.
dst
Type: Emgu.CVIOutputArray
The resulting GpuMat
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