Blame
|
1 | ## Cluster Extraction |
||||||
|
2 | |||||||
|
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 [here](https://pcl.readthedocs.io/projects/tutorials/en/master/cluster_extraction.html#theoretical-primer). |
||||||
| 6 | *[PCL]:Point Cloud Library |
|||||||
|
7 | |||||||
|
8 | --- |
||||||
| 9 | ||||||||
|
10 | ::: buttonlink |
||||||
|
11 | [View operator source](https://github.com/matth-av/pointcaster/blob/qt/src/plugins/operators/cluster_extraction/cluster_extraction_operator.cc) |
||||||
|
12 | ::: |
||||||
|
13 | |||||||
|
14 | *[AABB]: An Axis Aligned Bounding Box encloses a set of points while keeping its faces parallel to world axes. |
||||||
