CvToolboxGetMatrixFromArraysT Method |
http://www.emgu.com
Convert arrays of data to matrix
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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
- The data type of the matrix
Return Value
Type:
MatrixTA two dimension matrix that represent the array
See Also