This is an old revision of the document!
DBSCAN (Density-Based Spatial Clustering of Applications with Noise) employs density measures to mark points in high-density regions and those in low-density regions – the noise. Because of this natural behaviour of the algorithm, it is particularly useful in signal processing and similar application domains. 1).
One of the essential concepts is the point's p neighbourhood, which is the set of points reachable within the user-defined distance eps (epsilon):
, where:
The algorithm treats different points differently depending on density and neighbouring points distribution around the point – its neighbourhood:
DBSCAN is great for discovering clusters in data with noise, especially when clusters are not circular or spherical.
Some application examples:
A typical application in signal processing: