Open mbendjilali opened 3 months ago
Hey, I had the same problem. In my case, it was because my point cloud coordinates were too big to be encoded with only 16 bits (depth) during serialization. Consider normalizing your point cloud coordinates. Hope it will help !
Hello, I have encountered similar problems in training nuScenes and SemanticKITTI datasets. Have you solved this problem?
Hey, I had the same problem. In my case, it was because my point cloud coordinates were too big to be encoded with only 16 bits (depth) during serialization. Consider normalizing your point cloud coordinates. Hope it will help !
For real-word point cloud, I suggest not normalizing the coordinates. Just increase the grid_size
or cropping your point cloud.
Hello, I'm trying to run PTv3 on a custom dataset, but I unfortunately run into the assertion error mentioned in the title, in the
serialization
function, line 74 of thestructure.py
script. Could you explain what it means, and also how to alleviate it please ? :)