Method Get
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Get<T>(int)
Returns a value to the specified array element.
public T Get<T>(int i0) where T : struct
Parameters
i0intIndex along the dimension 0
Returns
- T
A value to the specified array element.
Type Parameters
T
Get<T>(int, int)
Returns a value to the specified array element.
public T Get<T>(int i0, int i1) where T : struct
Parameters
Returns
- T
A value to the specified array element.
Type Parameters
T
Get<T>(int, int, int)
Returns a value to the specified array element.
public T Get<T>(int i0, int i1, int i2) where T : struct
Parameters
i0intIndex along the dimension 0
i1intIndex along the dimension 1
i2intIndex along the dimension 2
Returns
- T
A value to the specified array element.
Type Parameters
T
Get<T>(params int[])
Returns a value to the specified array element.
public T Get<T>(params int[] idx) where T : struct
Parameters
idxint[]Array of Mat::dims indices.
Returns
- T
A value to the specified array element.
Type Parameters
T