MatrixTDepthConcateHorizontal Method |
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.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic Matrix<TDepth> ConcateHorizontal(
Matrix<TDepth> otherMatrix
)
Public Function ConcateHorizontal (
otherMatrix As Matrix(Of TDepth)
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ ConcateHorizontal(
Matrix<TDepth>^ otherMatrix
)
member ConcateHorizontal :
otherMatrix : Matrix<'TDepth> -> Matrix<'TDepth>
Parameters
- otherMatrix
- Type: Emgu.CVMatrixTDepth
The other matrix to concate
Return Value
Type:
MatrixTDepthA matrix that is the horizontal concatening of this matrix and
otherMatrix
See Also