Returns a value to the specified array element.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic T At<T>(
	params int[] idx
)
where T : struct, new()
Public Function At(Of T As {Structure, New}) ( 
	ParamArray idx As Integer()
) As Tpublic:
generic<typename T>
where T : value class, gcnew()
T At(
	... array<int>^ idx
)
member At : 
        idx : int[] -> 'T  when 'T : struct, new()
JavaScript does not support generic types or methods.
Parameters
- idx
- Type: SystemInt32
 Array of Mat::dims indices.
Type Parameters
- T
Return Value
Type: 
TA value to the specified array element.
 See Also
See Also