| MatTElemItem Property (Range, Range) |
Extracts a rectangular submatrix.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public Mat<TElem> this[
Range rowRange,
Range colRange
] { get; set; }
Public Default Property Item (
rowRange As Range,
colRange As Range
) As Mat(Of TElem)
Get
Set
public:
property Mat<TElem>^ default[Range rowRange, Range colRange] {
Mat<TElem>^ get (Range rowRange, Range colRange);
void set (Range rowRange, Range colRange, Mat<TElem>^ value);
}
member Item : Mat<'TElem> with get, set
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:
MatTElemSee Also