Esempio n. 1
0
 public static HomographyMatrix <double> Find(ReadOnlySpan <Point2 <double> > srcPoints, ReadOnlySpan <Point2 <double> > dstPoints)
 => DoubleHomography.Find(srcPoints, dstPoints);
Esempio n. 2
0
 public static HomographyMatrix <double> Find(Point2 <double>[] srcPoints, Point2 <double>[] dstPoints)
 => DoubleHomography.Find(new ReadOnlySpan <Point2 <double> >(srcPoints), new ReadOnlySpan <Point2 <double> >(dstPoints));
Esempio n. 3
0
 public static HomographyMatrix <double> Find(IReadOnlyList <Point2 <double> > srcPoints, IReadOnlyList <Point2 <double> > dstPoints)
 => DoubleHomography.Find(srcPoints, dstPoints);