Table of Contents

Method HConcat

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

HConcat(ReadOnlySpan<Mat>, OutputArray)

Applies horizontal concatenation to given matrices.

public static void HConcat(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 rows and the same depth.

dst OutputArray

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

HConcat(InputArray, InputArray, OutputArray)

Applies horizontal concatenation to given matrices.

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

Parameters

src1 InputArray

first input array to be considered for horizontal concatenation.

src2 InputArray

second input array to be considered for horizontal concatenation.

dst OutputArray

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