http://www.emgu.com
Split current GpuMat into an array of single channel GpuMat where each element
in the array represent a single channel of the original GpuMat
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
Visual Basic |
---|
Public Function Split ( _
stream As Stream _
) As GpuMat(Of TDepth)() |
Visual C++ |
---|
public:
array<GpuMat<TDepth>^>^ Split(
Stream^ stream
) |
Parameters
- stream
- Type: Emgu.CV.GPU..::..Stream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
Return Value
An array of single channel GpuMat where each element
in the array represent a single channel of the original GpuMat
See Also