====== PointCloud clustering ====== The [[:01_user_documentation:05_object:01_geometric:02_3d:01_primitive:12_point_cloud|PointClouds]] objects can be clustered. ===== Algorithms ===== ==== K-means ==== Basic K-means clustering === GUI === after selecting a point cloud and clustering it, the new created point clouds are added to the graph. === RGG === public void Kcluster(){ BoundedCloud c = (BoundedCloud) first((* pc:de.grogra.pointcloud.groimp.PointCloud, (pc.getCloud() instanceof BoundedCloud) *)).getCloud(); Cloud[] res = de.grogra.pointcloud.tools.KMeans.cluster(c,2,4); for(Cloud y : res){ [ ==>>^y; ] } } ==== DBSCAN ==== same