| 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
)
Public Shared Sub HConcat (
src As IEnumerable(Of Mat),
dst As OutputArray
)
public:
static void HConcat(
IEnumerable<Mat^>^ src,
OutputArray^ dst
)
static member HConcat :
src : IEnumerable<Mat> *
dst : OutputArray -> unit
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