charlesq34 / pointnet

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

Detection pipeline for scene segmentation #21

Closed ashishk008 closed 7 years ago

ashishk008 commented 7 years ago

Hi Charles, How exactly are you building the graph for BFS search to get the connected components in the detection pipeline? I could not find the code for detection pipeline in the repo. Are you planning to add it in near future? Thanks.

charlesq34 commented 7 years ago

Hi @ashishk008

I randomly select a point as seed point and try to find connected component. When no more points within a certain radius can be found, I will select a new seed point from the remaining points and repeat the process.

There is currently no plan to release that code. Hopefully someone will build a more robust 3D object detector upon current framework