www.emgu.com/wiki
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.

Declaration Syntax
public Matrix<TDepth> ConcateVertical(
Matrix<TDepth> otherMatrix
)
Public Function ConcateVertical ( _
otherMatrix As Matrix(Of TDepth) _
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ ConcateVertical(
Matrix<TDepth>^ otherMatrix
)

Parameters
- otherMatrix (Matrix<(Of <(TDepth>)>))
- The other matrix to concate

Return Value
A new matrix that is the vertical concatening of this matrix and otheMatrix
Assembly:
Emgu.CV (Module: Emgu.CV) Version: 1.3.0.0 (1.3.0.0)