Pointnet_Pointnet2_pytorch
Pointnet_Pointnet2_pytorch copied to clipboard
How to compute input channel of feature_propagation layer?
As mentioned in paper, we use skip connection in feature propagation layer, but I'm confused by this line in pointnet2_part_seg_msg.py : self.fp1 = PointNetFeaturePropagation(in_channel=150+additional_channel, mlp=[128, 128])
How do you get the value of 150 in this line? Thanks for your help.
Best, Xuanzhe
It's 128+the number of object classes+6 In this case, there are 16 object classes.