Table of Contents

Method VConcat

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

VConcat(ReadOnlySpan<Mat>, OutputArray)

Applies vertical concatenation to given matrices.

public static void VConcat(ReadOnlySpan<Mat> src, OutputArray dst)

Parameters

src ReadOnlySpan<Mat>

input array or vector of matrices. all of the matrices must have the same number of cols and the same depth.

dst OutputArray

output array. It has the same number of cols and depth as the src, and the sum of rows of the src.

VConcat(InputArray, InputArray, OutputArray)

Applies vertical concatenation to given matrices.

public static void VConcat(InputArray src1, InputArray src2, OutputArray dst)

Parameters

src1 InputArray

first input array to be considered for vertical concatenation.

src2 InputArray

second input array to be considered for vertical concatenation.

dst OutputArray

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.