MatRowExprIndexerItem Property (Int32, Int32)
|
Creates a matrix header for the specified row span. (Mat::rowRange)
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic override MatExpr this[
int startRow,
int endRow
] { get; set; }
Public Overrides Default Property Item (
startRow As Integer,
endRow As Integer
) As MatExpr
Get
Set
public:
virtual property MatExpr^ default[int startRow, int endRow] {
MatExpr^ get (int startRow, int endRow) override;
void set (int startRow, int endRow, MatExpr^ value) override;
}
abstract Item : MatExpr with get, set
override Item : MatExpr with get, set
function get_Item(startRow, endRow);
function set_Item(value);
Parameters
- startRow
- Type: SystemInt32
An inclusive 0-based start index of the row span. - endRow
- Type: SystemInt32
An exclusive 0-based ending index of the row span.
Return Value
Type:
MatExpr
See Also