I found that I need to call the method in a different way, first I needed to initialize the class and only then call it, so this works:
dist1, dist2, idx1, idx2 = chamfer_dist()(p1,p2)
while the example in the readme does not work and produces an error ... = chamfer_dist(p1,p2) (without the class parenthesis)
Is it just me?
Thank you for this package in any case.
I found that I need to call the method in a different way, first I needed to initialize the class and only then call it, so this works:
while the example in the readme does not work and produces an error
... = chamfer_dist(p1,p2)(without the class parenthesis)Is it just me?
Thank you for this package in any case.