[This is preliminary documentation and is subject to change.]

Get the specific row of the matrix

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

Syntax

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

Parameters

row
Int32
the index of the row to be reterived

Return Value

the specific row of the matrix

See Also