CvToolboxGetMatrixFromPoints Method |
http://www.emgu.com
Convert arrays of points to matrix
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static Matrix<double> GetMatrixFromPoints(
MCvPoint2D64f[][] points
)
Public Shared Function GetMatrixFromPoints (
points As MCvPoint2D64f()()
) As Matrix(Of Double)
public:
static Matrix<double>^ GetMatrixFromPoints(
array<array<MCvPoint2D64f>^>^ points
)
static member GetMatrixFromPoints :
points : MCvPoint2D64f[][] -> Matrix<float>
Parameters
- points
- Type: Emgu.CV.StructureMCvPoint2D64f
Arrays of points
Return Value
Type:
MatrixDoubleA two dimension matrix that represent the points
See Also