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.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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