Method VConcat
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
VConcat(ReadOnlySpan<Mat>, OutputArray)
Applies vertical concatenation to given matrices.
public static void VConcat(ReadOnlySpan<Mat> src, OutputArray dst)
Parameters
srcReadOnlySpan<Mat>input array or vector of matrices. all of the matrices must have the same number of cols and the same depth.
dstOutputArrayoutput array. It has the same number of cols and depth as the src, and the sum of rows of the src.
VConcat(InputArray, InputArray, OutputArray)
Applies vertical concatenation to given matrices.
public static void VConcat(InputArray src1, InputArray src2, OutputArray dst)
Parameters
src1InputArrayfirst input array to be considered for vertical concatenation.
src2InputArraysecond input array to be considered for vertical concatenation.
dstOutputArrayoutput array. It has the same number of cols and depth as the src1 and src2, and the sum of rows of the src1 and src2.