Table of Contents

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

src Mat

The source multi-channel array

mv Mat[]

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

src Mat

The source multi-channel array

Returns

Mat[]

The number of arrays must match mtx.channels() . The arrays themselves will be reallocated if needed