Fundamental() public static method

Creates the fundamental matrix between two images from a set of points from each image.
public static Fundamental ( PointF points1, PointF points2 ) : ].float[
points1 System.Drawing.PointF
points2 System.Drawing.PointF
return ].float[
        /// <summary>
        ///   Estimates a fundamental matrix with the given points.
        /// </summary>
        ///
        private float[,] fundamental(int[] points)
        {
            // Retrieve the original points
            PointF[] x1 = this.pointSet1.Submatrix(points);
            PointF[] x2 = this.pointSet2.Submatrix(points);

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