Click or drag to resize
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.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public Matrix<TDepth> ConcateHorizontal(
	Matrix<TDepth> otherMatrix
)

Parameters

otherMatrix
Type: Emgu.CVMatrixTDepth
The other matrix to concate

Return Value

Type: MatrixTDepth
A matrix that is the horizontal concatening of this matrix and otherMatrix
See Also