InputArrayCreateT Method (IEnumerableT)
|
Creates a proxy class of the specified list
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static InputArray Create<T>(
IEnumerable<T> enumerable
)
where T : struct, new()
Public Shared Function Create(Of T As {Structure, New}) (
enumerable As IEnumerable(Of T)
) As InputArray
public:
generic<typename T>
where T : value class, gcnew()
static InputArray^ Create(
IEnumerable<T>^ enumerable
)
static member Create :
enumerable : IEnumerable<'T> -> InputArray when 'T : struct, new()
JavaScript does not support generic types or methods.
Parameters
- enumerable
- Type: System.Collections.GenericIEnumerableT
Array object
Type Parameters
- T
Return Value
Type:
InputArray
See Also