MatRowIndexerItem Property (Int32, Int32)
|
Creates a matrix header for the specified row span.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic override Mat this[
int startRow,
int endRow
] { get; set; }
Public Overrides Default Property Item (
startRow As Integer,
endRow As Integer
) As Mat
Get
Set
public:
virtual property Mat^ default[int startRow, int endRow] {
Mat^ get (int startRow, int endRow) override;
void set (int startRow, int endRow, Mat^ value) override;
}
abstract Item : Mat with get, set
override Item : Mat 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:
Mat
See Also