charlesq34 / pointnet

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

Question about how you pick the point in your training data #79

Open Zhangsihao-Yang opened 6 years ago

Zhangsihao-Yang commented 6 years ago

You are using 2048 points in each of your training data. How could you pick them?

charlesq34 commented 6 years ago

Hi @Zhangsihao-Yang

We used mesh sampling code from here to overly sample more than 10k points and then use farthest point sampling to pick the 2048 points.

amiltonwong commented 6 years ago

Hi, @charlesq34 , Would you also point the code of farthest point sampling? Where could we find the code for FRS?

charlesq34 commented 6 years ago

Hi @amiltonwong

You can check it here: https://github.com/charlesq34/pointnet2/blob/master/tf_ops/sampling/tf_sampling.py

amiltonwong commented 6 years ago

Thanks @charlesq34