Closed alecjacobson closed 1 year ago
The chamfer distance op calculates two-sided / symmetrical / bidirectional chamfer distance, so it's looking at the distance from each point in each cloud to its nearest point in the other cloud. If the two clouds each have one point, then yes, you'll get their distance twice.
🐛 Bugs / Unexpected behaviors
Squared distance between (0,0) and (3,0) should be 9 not 18.
Instructions To Reproduce the Issue:
produces
In general,
chamfer_distance
appears to be computing 2*mean-squared-distance.