-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Distance Not Normalized #14
Comments
Same issue here |
The chamfer distance defined here is not normalized and is squared. I think it depends on which kind of formulation you used. |
For this issue, if each data(target and source) have 100 points, |
This was referenced Jun 27, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
a = torch.zeros(21).view(1,-1,3)
b = a + 1
dist = chamferDist(a, b)
The expected distance between a and b should be sqrt(3), however, chamferDist(a,b) returns 21. Is it because the distance not divided by the number of points?
The text was updated successfully, but these errors were encountered: