InputArrayCreateT Method (T, MatType)
|
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>(
T[,] array,
MatType type
)
where T : struct, new()
Public Shared Function Create(Of T As {Structure, New}) (
array As T(,),
type As MatType
) As InputArray
public:
generic<typename T>
where T : value class, gcnew()
static InputArray^ Create(
array<T,2>^ array,
MatType type
)
static member Create :
array : 'T[,] *
type : MatType -> InputArray when 'T : struct, new()
JavaScript does not support generic types or methods.
Parameters
- array
- Type: T
Array object - type
- Type: OpenCvSharpMatType
Matrix depth and channels for converting array to cv::Mat
Type Parameters
- T
Return Value
Type:
InputArray
See Also