http://www.emgu.com
Convert an array of descriptors to row by row matrix
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static Matrix<T> GetMatrixFromDescriptors<T>(
T[][] descriptors
)
where T : struct, new()
|
Visual Basic |
---|
Public Shared Function GetMatrixFromDescriptors(Of T As {Structure, New}) ( _
descriptors As T()() _
) As Matrix(Of T) |
Visual C++ |
---|
public:
generic<typename T>
where T : value class, gcnew()
static Matrix<T>^ GetMatrixFromDescriptors(
array<array<T>^>^ descriptors
) |
Parameters
- descriptors
- Type: array<array<T>[]()[][]>[]()[][]
An array of descriptors
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Emgu.CV.Util.CvToolbox.GetMatrixFromDescriptors``1(``0[][])"]
Return Value
A matrix where each row is a descriptor
See Also