Split current Image into an array of gray scale images where each element in the array represent a single color channel of the original image

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 GpuImage<Gray, TDepth>[] Split(
	Stream stream
)
Public Function Split ( _
	stream As Stream _
) As GpuImage(Of Gray, TDepth)()
public:
array<GpuImage<Gray, 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 gray scale images where each element in the array represent a single color channel of the original image

See Also