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