MatIndexerTItem Property (Int32)
|
n-dimensional indexer
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic abstract T this[
params int[] idx
] { get; set; }
Public MustOverride Default Property Item (
ParamArray idx As Integer()
) As T
Get
Set
public:
virtual property T default[... array<int>^ idx] {
T get (... array<int>^ idx) abstract;
void set (... array<int>^ idx, T value) abstract;
}
abstract Item : 'T with get, set
function get_Item(... idx);
function set_Item(value);
Parameters
- idx
- Type: SystemInt32
Array of Mat::dims indices.
Return Value
Type:
TA value to the specified array element.
See Also