http://www.emgu.com
Copies each plane of a multi-channel GpuMat to a dedicated GpuMat
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Split(
IInputArray src,
VectorOfGpuMat dstArray,
Stream stream = null
)
Public Shared Sub Split (
src As IInputArray,
dstArray As VectorOfGpuMat,
Optional stream As Stream = Nothing
)
public:
static void Split(
IInputArray^ src,
VectorOfGpuMat^ dstArray,
Stream^ stream = nullptr
)
static member Split :
src : IInputArray *
dstArray : VectorOfGpuMat *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The multi-channel gpuMat - dstArray
- Type: Emgu.CV.CudaVectorOfGpuMat
Pointer to an array of single channel GpuMat pointers - 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