CvMixChannels Method OpenCvSharp Class Library
Copies several channels from input arrays to certain channels of output arrays

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static void MixChannels(
	CvArr[] src,
	CvArr[] dst,
	int[] fromTo
)

Parameters

src
Type: OpenCvSharpCvArr
The array of input arrays.
dst
Type: OpenCvSharpCvArr
The array of output arrays.
fromTo
Type: SystemInt32
The array of pairs of indices of the planes copied. from_to[k*2] is the 0-based index of the input plane, and from_to[k*2+1] is the index of the output plane, where the continuous numbering of the planes over all the input and over all the output arrays is used. When from_to[k*2] is negative, the corresponding output plane is filled with 0's.
See Also

Reference