Copy the source GpuMat to destination GpuMat, using an optional mask.

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1106 (2.2.1.1106)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void gpuMatCopy(
	IntPtr src,
	IntPtr dst,
	IntPtr mask
)
Public Shared Sub gpuMatCopy ( _
	src As IntPtr, _
	dst As IntPtr, _
	mask As IntPtr _
)
public:
static void gpuMatCopy(
	IntPtr src, 
	IntPtr dst, 
	IntPtr mask
)

Parameters

src
IntPtr
The GpuMat to be copied from
dst
IntPtr
The GpuMat to be copied to
mask
IntPtr
The optional mask, use IntPtr.Zero if not needed.

See Also