CvInvokeHConcat Method (Mat, IOutputArray) |
http://www.emgu.com
Horizontally concatenate two images
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic static void HConcat(
Mat[] srcs,
IOutputArray dst
)
Public Shared Sub HConcat (
srcs As Mat(),
dst As IOutputArray
)
public:
static void HConcat(
array<Mat^>^ srcs,
IOutputArray^ dst
)
static member HConcat :
srcs : Mat[] *
dst : IOutputArray -> unit
Parameters
- srcs
- Type: Emgu.CVMat
Input array or vector of matrices. all of the matrices must have the same number of rows and the same depth. - dst
- Type: Emgu.CVIOutputArray
output array. It has the same number of rows and depth as the src, and the sum of cols of the src. same depth.
See Also