I got poor performance on Semantic3D dataset with dense point clouds and RGB information.
I made the following changes, any advice is greatly appreciated!!
I changed the dimension of the input SparseTensor like this:
pc = torch.IntTensor(1000, 4) # (x, y, z, batch)
feat = torch.FloatTensor(1000, 6) #(x, y, z, r, g, b)
lidar = SparseTensor(feat, pc)
Thanks for the great work!
I got poor performance on Semantic3D dataset with dense point clouds and RGB information. I made the following changes, any advice is greatly appreciated!!
I'm wondering, is SPVCNN inappropriate for this kind of dense scan point cloud, or is there something wrong with my steps?
Thanks for your guidance.