DBSCAN (Density-Based Spatial Clustering of Applications with Noise) is a data clustering algorithm proposed by Martin Ester, Hans-Peter Kriegel, Jörg Sander and Xiaowei Xu in 1996. The algorithm had implemented with pseudocode described in wiki, but it is not optimised.
You can test this DBSCAN algorithm with example code(main.cpp) & sample data(benchmark_hepta.dat).
Clustering performance was tesed via clustering-benchmark dataset and real-world dataset.
Artificial dataset was used to test clustering algorithm which can be obtained here. Following parameters were used:
- Minimum number of points: 4
- Epsilon: 0.75