Method Split
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Split(Mat, out Mat[])
Copies each plane of a multi-channel array to a dedicated array
public static void Split(Mat src, out Mat[] mv)
Parameters
srcMatThe source multi-channel array
mvMat[]The destination array or vector of arrays; The number of arrays must match mtx.channels() . The arrays themselves will be reallocated if needed
Split(Mat)
Copies each plane of a multi-channel array to a dedicated array
public static Mat[] Split(Mat src)
Parameters
srcMatThe source multi-channel array
Returns
- Mat[]
The number of arrays must match mtx.channels() . The arrays themselves will be reallocated if needed