| 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
)
Public Shared Sub VConcat (
src1 As InputArray,
src2 As InputArray,
dst As OutputArray
)
public:
static void VConcat(
InputArray^ src1,
InputArray^ src2,
OutputArray^ dst
)
static member VConcat :
src1 : InputArray *
src2 : InputArray *
dst : OutputArray -> unit
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