| 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
)
Public Shared Sub HConcat (
src1 As InputArray,
src2 As InputArray,
dst As OutputArray
)
public:
static void HConcat(
InputArray^ src1,
InputArray^ src2,
OutputArray^ dst
)
static member HConcat :
src1 : InputArray *
src2 : InputArray *
dst : OutputArray -> unit
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