viceroypenguin / DBSCAN

Implementation of the DBSCAN clustering algorithm
MIT License
29 stars 5 forks source link

Use of minimumPointsPerCluster in the algorithm and epsilon #2

Closed riyadamr closed 3 years ago

riyadamr commented 3 years ago

Hi,

While using your library to find points cluster on an image I might have found two problems:

For example on this image i have 30 points spaced by 20px : With espsilon = 21 and minimumPointsPerCluster = 10 I find 0 clusters. When I should be finding my cluster with 30 points.

viceroypenguin commented 3 years ago

Thanks for your interest in the library.

riyadamr commented 3 years ago

Thank you for the clarification !

I think I will end up using my own algorithm, it takes 1 second for 3000 points, but I don't think I will have to go over the 10000 points use case.

viceroypenguin commented 3 years ago

Great! Glad to be of assistance.