CvInvokeVConcat Method (Mat, IOutputArray) |
http://www.emgu.com
The function vertically concatenates two or more matrices
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void VConcat(
Mat[] srcs,
IOutputArray dst
)
Public Shared Sub VConcat (
srcs As Mat(),
dst As IOutputArray
)
public:
static void VConcat(
array<Mat^>^ srcs,
IOutputArray^ dst
)
static member VConcat :
srcs : Mat[] *
dst : IOutputArray -> unit
Parameters
- srcs
- Type: Emgu.CVMat
Input array or vector of matrices. all of the matrices must have the same number of cols and the same depth - dst
- Type: Emgu.CVIOutputArray
Output array. It has the same number of cols and depth as the src, and the sum of rows of the src. same depth.
See Also