Click or drag to resize

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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public Matrix<TDepth> GetRows(
	int startRow,
	int endRow,
	int deltaRow
)

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: MatrixTDepth
A matrix corresponding to a specified row span of the input array
See Also