Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 7c5866f

Browse files
author
Daniel
authored
Add files via upload
1 parent 439d3d0 commit 7c5866f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

main.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,12 +272,13 @@ void init(int argc, char** argv,bool show){
272272
}
273273

274274
/*
275-
DBSCAN algorithm requires 5 parameters - octreeResoluion, describes the length of the smallest voxels at lowest
276-
octree level. epsilon , which specifies how close points should be to each other to be considered a part of a
277-
cluster; minPtsAux and minPts >=3 , which specifies how many neighbors a point should have to be included into a
278-
cluster.
275+
DBSCAN algorithm requires 3 parameters:
276+
- octreeResolution, describes the length of the smallest voxels at lowest octree level.
277+
- epsilon, which specifies how close points should be to each other to be considered a part of a cluster
278+
- minPts, which specifies how many neighbors a point should have to be included into a cluster (must be >=3).
279279
*/
280-
//groupA.size()*0.001 -> eps
280+
281+
//groupA.size()*0.001 -> eps (you can set this param for epsilon)
281282
//----------------------------------------------------------------
282283
dbscan.init(groupA, octreeResolution, eps, minPtsAux_, minPts); /*RUN DBSCAN*/
283284
//----------------------------------------------------------------

0 commit comments

Comments
 (0)