1.0.0 • Published 1 year ago

point-cloud-clustering v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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 });
1.0.0

1 year ago