Click or drag to resize
GpuMatCopyTo Method
http://www.emgu.com
Copy the source GpuMat to destination GpuMat, using an optional mask.

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

Parameters

dst
Type: Emgu.CVIOutputArray
The output array to be copied to
mask (Optional)
Type: Emgu.CVIInputArray
The optional mask, use IntPtr.Zero if not needed.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).
See Also