Copy the src GpuMat to dst GpuMat asyncronously

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public void Copy<TDepth>(
	GpuMat<TDepth> src,
	GpuMat<TDepth> dst
)
where TDepth : new()
Public Sub Copy(Of TDepth As New) ( _
	src As GpuMat(Of TDepth), _
	dst As GpuMat(Of TDepth) _
)
public:
generic<typename TDepth>
where TDepth : gcnew()
void Copy(
	GpuMat<TDepth>^ src, 
	GpuMat<TDepth>^ dst
)

Parameters

src
GpuMat<(Of <(<'TDepth>)>)>
The source matrix
dst
GpuMat<(Of <(<'TDepth>)>)>
The destination matrix. Must be the same size and same number of channels

Type Parameters

TDepth
The type of depth for the GpuMat

See Also