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