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