Convert a collection of N Points to an (N x k) matrix, k is determined by the dimension of the first point

C# | Visual Basic | Visual C++ |
public static Matrix<D> ToMatrix<D>( IEnumerable<Point<D>> points ) where D : new(), IComparable
Public Shared Function ToMatrix(Of D As {New, IComparable}) ( _ points As IEnumerable(Of Point(Of D)) _ ) As Matrix(Of D)
public: generic<typename D> where D : gcnew(), IComparable static Matrix<D>^ ToMatrix( IEnumerable<Point<D>^>^ points )

- D
[Missing <typeparam name="D"/> documentation for "M:Emgu.CV.PointCollection.ToMatrix``1(System.Collections.Generic.IEnumerable{Emgu.CV.Point{``0}})"]

- points (IEnumerable<(Of <(Point<(Of <(D>)>)>)>))
- The points which will be converted to matrix

the matrix representing the collection of points