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.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
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