| Cv2VConcat Method (IEnumerableMat, OutputArray) |
Applies vertical concatenation to given matrices.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void VConcat(
IEnumerable<Mat> src,
OutputArray dst
)
Public Shared Sub VConcat (
src As IEnumerable(Of Mat),
dst As OutputArray
)
public:
static void VConcat(
IEnumerable<Mat^>^ src,
OutputArray^ dst
)
static member VConcat :
src : IEnumerable<Mat> *
dst : OutputArray -> unit
Parameters
- src
- Type: System.Collections.GenericIEnumerableMat
input array or vector of matrices. all of the matrices must have the same number of cols and the same depth. - dst
- Type: OpenCvSharpOutputArray
output array. It has the same number of cols and depth as the src, and the sum of rows of the src.
See Also