CudaImageTColor, TDepthClone Method (Stream) |
http://www.emgu.com
Create a clone of this CudaImage
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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