MatrixTDepthConcateVertical Method |
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.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic 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
)
member ConcateVertical :
otherMatrix : Matrix<'TDepth> -> Matrix<'TDepth>
Parameters
- otherMatrix
- Type: Emgu.CVMatrixTDepth
The other matrix to concate
Return Value
Type:
MatrixTDepthA new matrix that is the vertical concatening of this matrix and
otherMatrix
See Also