Click or drag to resize
GpuMatSplit Method
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.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public GpuMat[] Split(
	Stream stream = null
)

Parameters

stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).

Return Value

Type: GpuMat
An array of single channel GpuMat where each element in the array represent a single channel of the original GpuMat
See Also