MatMatExprIndexerItem Property (Range, Range)
|
Extracts a rectangular submatrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic override MatExpr this[
Range rowRange,
Range colRange
] { get; set; }
Public Overrides Default Property Item (
rowRange As Range,
colRange As Range
) As MatExpr
Get
Set
public:
virtual property MatExpr^ default[Range rowRange, Range colRange] {
MatExpr^ get (Range rowRange, Range colRange) override;
void set (Range rowRange, Range colRange, MatExpr^ value) override;
}
abstract Item : MatExpr with get, set
override Item : MatExpr with get, set
function get_Item(rowRange, colRange);
function set_Item(value);
Parameters
- rowRange
- Type: OpenCvSharpRange
Start and end row of the extracted submatrix. The upper boundary is not included.
To select all the rows, use Range.All(). - colRange
- Type: OpenCvSharpRange
Start and end column of the extracted submatrix.
The upper boundary is not included. To select all the columns, use Range.All().
Return Value
Type:
MatExpr
See Also