Exemplo n.º 1
0
 public static HomographyMatrix <float> Find(Vector2[] srcPoints, Vector2[] dstPoints)
 => SingleHomography.Find(new ReadOnlySpan <Vector2>(srcPoints), new ReadOnlySpan <Vector2>(dstPoints));
Exemplo n.º 2
0
 public static HomographyMatrix <float> Find(Point2 <float>[] srcPoints, Point2 <float>[] dstPoints)
 => SingleHomography.Find(new ReadOnlySpan <Point2 <float> >(srcPoints), new ReadOnlySpan <Point2 <float> >(dstPoints));
Exemplo n.º 3
0
 public static HomographyMatrix <float> Find(ReadOnlySpan <Vector2> srcPoints, ReadOnlySpan <Vector2> dstPoints)
 => SingleHomography.Find(srcPoints, dstPoints);
Exemplo n.º 4
0
 public static HomographyMatrix <float> Find(IReadOnlyList <Point2 <float> > srcPoints, IReadOnlyList <Point2 <float> > dstPoints)
 => SingleHomography.Find(srcPoints, dstPoints);