Octree class for DataPoints spatial representation. More...
#include <octree.h>
Octree class for DataPoints spatial representation.
Octree/Quadtree implementation for decomposing point cloud. The current implementation use the data structure PointMatcher<T>::DataPoints. It ensures that each node has either (8/4) or 0 childs.
Can create an octree with the 2 following crieterions:
After construction, we can apply a process by creating a Visitor, implementing the following method: ```cpp template<typename T> struct Visitor { bool operator()(Octree<T>& oc); }; ```
Remark: