Click or drag to resize

Cv2VConcat Method (InputArray, InputArray, OutputArray)

Applies vertical concatenation to given matrices.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void VConcat(
	InputArray src1,
	InputArray src2,
	OutputArray dst
)

Parameters

src1
Type: OpenCvSharpInputArray
first input array to be considered for vertical concatenation.
src2
Type: OpenCvSharpInputArray
second input array to be considered for vertical concatenation.
dst
Type: OpenCvSharpOutputArray
output 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.
See Also