tianweiy / MVP

MIT License
273 stars 38 forks source link

semantic information different between PointPainting and MVP #28

Closed yangyt37 closed 1 year ago

yangyt37 commented 1 year ago

I read the code of pointpainting which is based openpcdet.It use segmentation score which is added to one to be paint point semantic information. But virtual_gen.py use one-hot encoded and classification confidence as semantic information.Is my understanding of the code right? Which is better and why?

yangyt37 commented 1 year ago

I use mvp to be my undergraduate graduation project baseline, however, I don't have enough computing resource, so I have to use mvp in only 1/10 nuscenes, the result is amazing! The centerpoint is only 30 map train by 1/10 nuscenes data, but mvp can get the mvp of 52. And I find if only concat virtualpoint2 can get the map of 55, and if change the max number points of a pillar can get the map of nearly 57.

tianweiy commented 1 year ago

Which is better and why?

I don't know which is better. The reason I use instance segmentation (one-hot encode + confidence) is because there are only instance segmentation pretrained models on nuScenes back then.

yangyt37 commented 1 year ago

Thank you very much!