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.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic GpuMat[] Split(
Stream stream = null
)
Public Function Split (
Optional stream As Stream = Nothing
) As GpuMat()
public:
array<GpuMat^>^ Split(
Stream^ stream = nullptr
)
member Split :
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> GpuMat[]
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