Click or drag to resize

Cv2HConcat Method (IEnumerableMat, OutputArray)

Applies horizontal concatenation to given matrices.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void HConcat(
	IEnumerable<Mat> src,
	OutputArray dst
)

Parameters

src
Type: System.Collections.GenericIEnumerableMat
input array or vector of matrices. all of the matrices must have the same number of rows and the same depth.
dst
Type: OpenCvSharpOutputArray
output array. It has the same number of rows and depth as the src, and the sum of cols of the src.
See Also