Copies each plane of a multi-channel array to a dedicated array

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1106 (2.2.1.1106)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void gpuMatSplit(
	IntPtr src,
	IntPtr dstArray,
	IntPtr stream
)
Public Shared Sub gpuMatSplit ( _
	src As IntPtr, _
	dstArray As IntPtr, _
	stream As IntPtr _
)
public:
static void gpuMatSplit(
	IntPtr src, 
	IntPtr dstArray, 
	IntPtr stream
)

Parameters

src
IntPtr
The multi-channel gpuMat
dstArray
IntPtr
Pointer to an array of single channel GpuMat pointers
stream
IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).

See Also