Accord.Imaging.RansacHomographyEstimator.homography C# (CSharp) Method

homography() private method

Estimates a homography with the given points.
private homography ( int points ) : MatrixH
points int
return MatrixH
        private MatrixH homography(int[] points)
        {
            // Retrieve the original points
            PointF[] x1 = this.pointSet1.Get(points);
            PointF[] x2 = this.pointSet2.Get(points);

            // Compute the homography
            return Tools.Homography(x1, x2);
        }