charlesq34 / pointnet

PointNet: Deep Learning on Point Sets for 3D Classification and Segmentation
Other
4.64k stars 1.44k forks source link

Input transform and point cloud with features on the points #311

Open adosar opened 2 months ago

adosar commented 2 months ago

Hello and congrats for this excellent work!

I want to use PointNet but I don't know whether I should remove the first T-Net from the architecture. In my task, only rigid transformations are meaningful but this is not guaranteed by the T-Net, since it predicts a 3x3 affine transformation. Moreover, my input includes additional feature channels, i.e. the input has shape (N, 3+F).

Does it make sense to remove the first T-Net and just increase the number of input channels in the next layer to take account the additional features?