http://www.emgu.com
Downloads data from device to host memory.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic void Download(
IOutputArray arr,
Stream stream = null
)
Public Sub Download (
arr As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Download(
IOutputArray^ arr,
Stream^ stream = nullptr
)
member Download :
arr : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- arr
- Type: Emgu.CVIOutputArray
The destination CvArray where the GpuMat data will be downloaded to. - 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