public static HomographyMatrix <double> Find(ReadOnlySpan <Point2 <double> > srcPoints, ReadOnlySpan <Point2 <double> > dstPoints) => DoubleHomography.Find(srcPoints, dstPoints);
public static HomographyMatrix <double> Find(Point2 <double>[] srcPoints, Point2 <double>[] dstPoints) => DoubleHomography.Find(new ReadOnlySpan <Point2 <double> >(srcPoints), new ReadOnlySpan <Point2 <double> >(dstPoints));
public static HomographyMatrix <double> Find(IReadOnlyList <Point2 <double> > srcPoints, IReadOnlyList <Point2 <double> > dstPoints) => DoubleHomography.Find(srcPoints, dstPoints);