CvToolboxGetMatrixFromArraysT Method |
http://www.emgu.com
Convert arrays of data to matrix
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static Matrix<T> GetMatrixFromArrays<T>(
T[][] data
)
where T : struct, new()
Public Shared Function GetMatrixFromArrays(Of T As {Structure, New}) (
data As T()()
) As Matrix(Of T)
public:
generic<typename T>
where T : value class, gcnew()
static Matrix<T>^ GetMatrixFromArrays(
array<array<T>^>^ data
)
static member GetMatrixFromArrays :
data : 'T[][] -> Matrix<'T> when 'T : struct, new()
Parameters
- data
- Type: T
Arrays of data
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Emgu.CV.Util.CvToolbox.GetMatrixFromArrays``1(``0[][])"]
Return Value
Type:
MatrixTA two dimension matrix that represent the array
See Also