mixChannels function
Copies specified channels from input arrays to the specified channels of output arrays.
For further details, please see: https://docs.opencv.org/master/d2/de8/group__core__array.html#ga51d768c270a1cdd3497255017c4504be
Implementation
VecMat mixChannels(VecMat src, VecMat dst, VecI32 fromTo) {
cvRun(() => ccore.Mat_MixChannels(src.ref, dst.ref, fromTo.ref));
return dst;
}