Click or drag to resize

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
Syntax
public static void VConcat(
	IInputArrayOfArrays srcs,
	IOutputArray dst
)

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