iMoonLab / PVRNet

PVRNet: Point-View Relation Neural Network for 3D Shape Recognition (AAAI 2019)
MIT License
44 stars 7 forks source link

the dimensional transformation of the input point cloud #8

Closed 16619884724 closed 4 years ago

16619884724 commented 4 years ago

Hello, your work is excellent, I have a question to be solved, the input point cloud dimension should be BXNXdim, why not see the dimension transformation in your code, but in the defined functions like [gather_neighbor] and [get_neighbor_feature], There is batch_size = x.size()[0] ;num_dim = x.size()[1] ; num_point = x.size()[2], the input is BXdimXN?why? I am very confused.I am looking forward to your answer.

Hxyou commented 4 years ago

Our input point cloud data dimension is indeed Bx3xN (also in .npy data). 3 means exactly XYZ coordinates.