Perfect segmentation #3697
-
I have done this tutorial https://towardsdatascience.com/how-to-automate-3d-point-cloud-segmentation-and-clustering-with-python-343c9039e4f5 to get better performance using DBSCAN method. However with my own pics I can't get a perfect segmentation as this man does. Using only DBSCAN method i get: I would like to be able to extract the chair using segmentation. Any trick? or parameter I should change? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hey, DBSCAN is sensitive to parameter settings that depend on your scene: Please check the DBSCAN paper or the Wikipedia article for help on setting these parameters. |
Beta Was this translation helpful? Give feedback.
Hey, DBSCAN is sensitive to parameter settings that depend on your scene:
min_pts
andeps
http://www.open3d.org/docs/latest/python_api/open3d.geometry.PointCloud.html#open3d.geometry.PointCloud.cluster_dbscan
Please check the DBSCAN paper or the Wikipedia article for help on setting these parameters.