mymesh.register.hausdorff#

mymesh.register.hausdorff(points1, points2)[source]#

Directed hausdorff distance between two sets of points. The Hausdorff distance is the largest closest-point distance between two point sets. This is a non-symmetric measure, i.e. hausdorff(points1, points2) != hausdorff(points2, points1). This is a wrapper to scipy.spatial.distance.directed_hausdorff

Parameters:
  • points1 (array_like) – Coordinates of the first point set

  • points2 (array_like) – Coordinates of the second point set

Returns:

Hausdorff distance

Return type:

d, float