Click or drag to resize

Cv2HConcat Method (InputArray, InputArray, OutputArray)

Applies horizontal concatenation to given matrices.

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void HConcat(
	InputArray src1,
	InputArray src2,
	OutputArray dst
)

Parameters

src1
Type: OpenCvSharpInputArray
first input array to be considered for horizontal concatenation.
src2
Type: OpenCvSharpInputArray
second input array to be considered for horizontal concatenation.
dst
Type: OpenCvSharpOutputArray
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.
See Also