MatGetT Method (Int32, Int32, Int32)
|
Returns a value to the specified array element.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic T Get<T>(
int i0,
int i1,
int i2
)
where T : struct, new()
Public Function Get(Of T As {Structure, New}) (
i0 As Integer,
i1 As Integer,
i2 As Integer
) As T
public:
generic<typename T>
where T : value class, gcnew()
T Get(
int i0,
int i1,
int i2
)
member Get :
i0 : int *
i1 : int *
i2 : int -> 'T when 'T : struct, new()
JavaScript does not support generic types or methods.
Parameters
- i0
- Type: SystemInt32
Index along the dimension 0 - i1
- Type: SystemInt32
Index along the dimension 1 - i2
- Type: SystemInt32
Index along the dimension 2
Type Parameters
- T
Return Value
Type:
TA value to the specified array element.
See Also