Reshape operation in Local_op
shift9172 opened this issue · 1 comments
shift9172 commented
In Local_op module, it seems like you reshaped the 4-dimension feature from sample_and_group module [batch, npoint, nsample, features] to [batch * npoint, features, nsample]. Then feed it into 1d convolution. After that, you keep the biggst feature as [batch * npoint, features, 1], and reshape it to [batch, features, npoint].
In my opinion, this is the most significant difference between you and other pointnet series articles. Could you explain the effectiveness of this?
MenghaoGuo commented
Comparing with other point cloud related papers, I think it is the different implementations of same method.