Click or drag to resize

CudaInvokeSplit Method

http://www.emgu.com
Copies each plane of a multi-channel GpuMat to a dedicated GpuMat

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void Split(
	IInputArray src,
	VectorOfGpuMat dstArray,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The multi-channel gpuMat
dstArray
Type: Emgu.CV.CudaVectorOfGpuMat
Pointer to an array of single channel GpuMat pointers
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).
See Also