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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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