Get the specific column of the matrix

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Matrix<TDepth> GetCol(
	int col
)
Visual Basic (Declaration)
Public Function GetCol ( _
	col As Integer _
) As Matrix(Of TDepth)
Visual C++
public:
Matrix<TDepth>^ GetCol(
	int col
)

Parameters

col
Type: System..::.Int32
the index of the column to be reterived

Return Value

the specific column of the matrix

See Also