Returns array row span
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static CvMat GetRows( CvArr arr, out CvMat submat, int startRow, int endRow, int deltaRow )
Parameters
- arr
- Type: OpenCvSharpCvArr
Input array. - submat
- Type: OpenCvSharpCvMat
Reference to the resulting sub-array header. - 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: CvMat[Missing <returns> documentation for "M:OpenCvSharp.Cv.GetRows(OpenCvSharp.CvArr,OpenCvSharp.CvMat@,System.Int32,System.Int32,System.Int32)"]
See Also