Convert an array of descriptors to row by row matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function GetMatrixFromDescriptors ( _
descriptors As Single()() _
) As Matrix(Of Single) |
Visual C++ |
---|
public:
static Matrix<float>^ GetMatrixFromDescriptors(
array<array<float>^>^ descriptors
) |
Parameters
- descriptors
- Type: array<
array<
System..::.Single
>[]()[]
>[]()[]
An array of descriptors
Return Value
A matrix where each row is a descriptor
See Also