MatItem Property (Range, Range)
|
Extracts a rectangular submatrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic Mat this[
Range rowRange,
Range colRange
] { get; set; }
Public Default Property Item (
rowRange As Range,
colRange As Range
) As Mat
Get
Set
public:
property Mat^ default[Range rowRange, Range colRange] {
Mat^ get (Range rowRange, Range colRange);
void set (Range rowRange, Range colRange, Mat^ value);
}
member Item : Mat 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:
Mat
See Also