point-cloud-clustering
v1.0.0
Published
A collection of density-based point clustering implementations written in modern web standard
Downloads
1
Readme
Point Cloud Clustering
Usage
import { dbscan } from "point-cloud-clustering";
const points = [
[1, 2, 3],
[2, 3, 4],
[-2, -42, 3],
[-21, -3, 3],
[4332, -323, 2345],
] as [number, number, number][];
const clusters = dbscan(points, { epsilon: 1.5, minPts: 4 });