Blame

0056f2 Matt Hughes 2026-08-11 23:47:43
1
# Cluster Extraction
2
3a96b6 Matt Hughes 2026-08-12 14:29:55
3
The Cluster Extraction operator can reduce a point cloud to a set of AABBs that represent 'clusters' of points. It uses Euclidean Cluster Extraction, a geometric algorithm for segmenting subjects within a larger cloud. It can be used to coarsely isolate people and objects within a scene for location tracking, presence detection, or to prepare regions of interest for further processing.
4
5
The implementation of Euclidian Cluster Extraction is provided by PCL. A concise theoretical primer is provided about it [here](https://pcl.readthedocs.io/projects/tutorials/en/master/cluster_extraction.html#theoretical-primer).
321963 Matt Hughes 2026-08-12 00:05:26
6
9b7647 Matt Hughes 2026-08-12 12:01:00
7
---
8
e0bf0d Matt Hughes 2026-08-12 00:38:48
9
::: buttonlink
a2a65c Matt Hughes 2026-08-12 00:48:38
10
[View operator source](https://github.com/matth-av/pointcaster/tree/qt/src/plugins/operators/cluster_extraction)
e0bf0d Matt Hughes 2026-08-12 00:38:48
11
:::
fa8096 Matt Hughes 2026-08-12 01:21:30
12
be9e84 Matt Hughes 2026-08-12 01:36:18
13
*[AABB]: An Axis Aligned Bounding Box encloses a set of points while keeping its faces parallel to world axes.