http://www.emgu.com
Concate the current matrix with another matrix horizontally. If this matrix is n x m1 and otherMatrix is n x m2, the resulting matrix is n x (m1 + m2).
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Matrix<TDepth> ConcateHorizontal(
Matrix<TDepth> otherMatrix
) |
Visual Basic |
---|
Public Function ConcateHorizontal ( _
otherMatrix As Matrix(Of TDepth) _
) As Matrix(Of TDepth) |
Visual C++ |
---|
public:
Matrix<TDepth>^ ConcateHorizontal(
Matrix<TDepth>^ otherMatrix
) |
Return Value
A matrix that is the horizontal concatening of this matrix and
otherMatrix
See Also