http://www.emgu.com
Copy the source GpuMat to destination GpuMat, using an optional mask.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void CopyTo(
IOutputArray dst,
IInputArray mask = null,
Stream stream = null
)
Public Sub CopyTo (
dst As IOutputArray,
Optional mask As IInputArray = Nothing,
Optional stream As Stream = Nothing
)
public:
void CopyTo(
IOutputArray^ dst,
IInputArray^ mask = nullptr,
Stream^ stream = nullptr
)
member CopyTo :
dst : IOutputArray *
?mask : IInputArray *
?stream : Stream
(* Defaults:
let _mask = defaultArg mask null
let _stream = defaultArg stream null
*)
-> unit
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