Exemple #1
0
 public static HomographyMatrix <double> Find(ReadOnlySpan <Point2 <double> > srcPoints, ReadOnlySpan <Point2 <double> > dstPoints)
 => DoubleHomography.Find(srcPoints, dstPoints);
Exemple #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));
Exemple #3
0
 public static HomographyMatrix <double> Find(IReadOnlyList <Point2 <double> > srcPoints, IReadOnlyList <Point2 <double> > dstPoints)
 => DoubleHomography.Find(srcPoints, dstPoints);