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
srcReadOnlySpan<Mat>input array or vector of matrices. all of the matrices must have the same number of rows and the same depth.
dstOutputArrayoutput 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
src1InputArrayfirst input array to be considered for horizontal concatenation.
src2InputArraysecond input array to be considered for horizontal concatenation.
dstOutputArrayoutput 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.