Calculating the similarity of 2 sets of convex polygons?
问题 I have generated 2 sets of convex polygons from with different algorithms. Every polygon in each set is described by an array of coordinates[n_points, xy_coords], so a square is described by an array [4,2] but a pentagon with rounded corners has [80,2], with the extra 75 points being used to describe the curvatures. My goal is to quantify how similar the two sets of geometries are. Can anyone recommend any methods of doing so? So far I've come across: Hamming Distance Hausdorff distance I