CudaImageTColor, TDepthClone Method (Stream) |
http://www.emgu.com
Create a clone of this CudaImage
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaImage<TColor, TDepth> Clone(
Stream stream
)
Public Function Clone (
stream As Stream
) As CudaImage(Of TColor, TDepth)
public:
CudaImage<TColor, TDepth>^ Clone(
Stream^ stream
)
member Clone :
stream : Stream -> CudaImage<'TColor, 'TDepth>
Parameters
- stream
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
Return Value
Type:
CudaImageTColor,
TDepthA clone of this CudaImage
See Also