Closed dsim174 closed 3 years ago
Not a solution to your problem, but to say I had the same issue. By running some tests, I realized that, when doing inference, if a pointcloud is not shuffled/randomly sampled and has some structure, the results are much worse.
I am also very interested in hearing about the reason, as Pointnet++ is invariant in order.
@tsakelliou My problem was caused by data augmentation. When I trained the model with sorted points, I closely got the original accuracy (57.9 mIoU). In my opinion, Pointnet++ is invariant in order if it is well trained.
Hi,
I try to follow the votenet code, but I have a question in line 192-194 of sunrgbd_detection_data.py.
I trained the model with the original code,
Then, I evaluated the model with sorted points,
But, I got only 32.6 mIoU (The original evaluation accuracy was 58.2 mIoU)
Why did accuracy drop? Did I mistake?
Or, is the votenet model not invariant in point order?
Thank you.