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.1062 (2.2.1.1062)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void SplitInto(
	GpuMat<TDepth>[] gpuMats
)
Public Sub SplitInto ( _
	gpuMats As GpuMat(Of TDepth)() _
)
public:
void SplitInto(
	array<GpuMat<TDepth>^>^ gpuMats
)

Parameters

gpuMats
array<GpuMat<(Of <(<'TDepth>)>)>>[]()[][]
An array of single channel GpuMat where each item in the array represent a single channel of the original GpuMat

See Also