MatrixTDepthGetRows Method |
http://www.emgu.com
Return the matrix corresponding to a specified row span of the input array
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic Matrix<TDepth> GetRows(
int startRow,
int endRow,
int deltaRow
)
Public Function GetRows (
startRow As Integer,
endRow As Integer,
deltaRow As Integer
) As Matrix(Of TDepth)
public:
Matrix<TDepth>^ GetRows(
int startRow,
int endRow,
int deltaRow
)
member GetRows :
startRow : int *
endRow : int *
deltaRow : int -> Matrix<'TDepth>
Parameters
- startRow
- Type: SystemInt32
Zero-based index of the starting row (inclusive) of the span - endRow
- Type: SystemInt32
Zero-based index of the ending row (exclusive) of the span - deltaRow
- Type: SystemInt32
Index step in the row span. That is, the function extracts every delta_row-th row from start_row and up to (but not including) end_row
Return Value
Type:
MatrixTDepthA matrix corresponding to a specified row span of the input array
See Also