CvInvokeVConcat Method (IInputArrayOfArrays, 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(
IInputArrayOfArrays srcs,
IOutputArray dst
)
Public Shared Sub VConcat (
srcs As IInputArrayOfArrays,
dst As IOutputArray
)
public:
static void VConcat(
IInputArrayOfArrays^ srcs,
IOutputArray^ dst
)
static member VConcat :
srcs : IInputArrayOfArrays *
dst : IOutputArray -> unit
Parameters
- srcs
- Type: Emgu.CVIInputArrayOfArrays
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