Thanks for the great work! I've been using pt-v3m1-0-image and noticed a potential training-time alignment issue:
image configs (e.g. configs/nuscenes/semseg-pt-v3m1-0-image.py) apply RandomRotate and RandomFlip on point cloud, which only modify coord without updating image_coord.
image_coord is pre-computed in Dataset.get_data() before the transform pipeline.
this should silently break the alignment.
If this is true, a large fraction of training samples carry misaligned image features, which hurts classes relying on precise spatial correspondence.
Thanks for the great work! I've been using
pt-v3m1-0-imageand noticed a potential training-time alignment issue:image configs (e.g.
configs/nuscenes/semseg-pt-v3m1-0-image.py) applyRandomRotateandRandomFlipon point cloud, which only modifycoordwithout updatingimage_coord.image_coordispre-computedinDataset.get_data()before the transform pipeline.this should silently break the alignment.
If this is true, a large fraction of training samples carry misaligned image features, which hurts classes relying on precise spatial correspondence.