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.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public GpuMat<TDepth>[] Split(
	Stream stream
)
Public Function Split ( _
	stream As Stream _
) As GpuMat(Of TDepth)()
public:
array<GpuMat<TDepth>^>^ Split(
	Stream^ stream
)

Parameters

stream
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