|
Point Cloud Library (PCL)
1.8.1
|
Octree container class that does store a vector of point indices. More...
#include <pcl/octree/octree_container.h>
Inheritance diagram for pcl::octree::OctreeContainerPointIndices:Public Member Functions | |
| OctreeContainerPointIndices () | |
| Empty constructor. More... | |
| OctreeContainerPointIndices (const OctreeContainerPointIndices &source) | |
| Empty constructor. More... | |
| virtual | ~OctreeContainerPointIndices () |
| Empty deconstructor. More... | |
| virtual OctreeContainerPointIndices * | deepCopy () const |
| Octree deep copy method. More... | |
| virtual bool | operator== (const OctreeContainerBase &other) const |
| Equal comparison operator. More... | |
| void | addPointIndex (int data_arg) |
| Add point index to container memory. More... | |
| int | getPointIndex () const |
| Retrieve point index from container. More... | |
| void | getPointIndices (std::vector< int > &data_vector_arg) const |
| Retrieve point indices from container. More... | |
| std::vector< int > & | getPointIndicesVector () |
| Retrieve reference to point indices vector. More... | |
| size_t | getSize () const |
| Get size of container (number of indices) More... | |
| virtual void | reset () |
| Reset leaf node. More... | |
Public Member Functions inherited from pcl::octree::OctreeContainerBase | |
| OctreeContainerBase () | |
| Empty constructor. More... | |
| OctreeContainerBase (const OctreeContainerBase &) | |
| Empty constructor. More... | |
| virtual | ~OctreeContainerBase () |
| Empty deconstructor. More... | |
| bool | operator!= (const OctreeContainerBase &other) const |
| Inequal comparison operator. More... | |
| void | addPointIndex (const int &) |
| Empty addPointIndex implementation. More... | |
| void | getPointIndex (int &) const |
| Empty getPointIndex implementation as this leaf node does not store any point indices. More... | |
| void | getPointIndices (std::vector< int > &) const |
| Empty getPointIndices implementation as this leaf node does not store any data. More... | |
Protected Attributes | |
| std::vector< int > | leafDataTVector_ |
| Leaf node DataT vector. More... | |
Octree container class that does store a vector of point indices.
Definition at line 300 of file octree_container.h.
|
inline |
Empty constructor.
Definition at line 304 of file octree_container.h.
|
inline |
Empty constructor.
Definition at line 310 of file octree_container.h.
|
inlinevirtual |
Empty deconstructor.
Definition at line 317 of file octree_container.h.
|
inline |
Add point index to container memory.
This container stores a vector of point indices.
| [in] | data_arg | index to be stored within leaf node. |
Definition at line 343 of file octree_container.h.
|
inlinevirtual |
Octree deep copy method.
Definition at line 323 of file octree_container.h.
|
inline |
Retrieve point index from container.
This container stores a vector of point indices.
Definition at line 352 of file octree_container.h.
|
inline |
Retrieve point indices from container.
This container stores a vector of point indices.
| [out] | data_vector_arg | vector of point indices to be stored within data vector |
Definition at line 361 of file octree_container.h.
|
inline |
Retrieve reference to point indices vector.
This container stores a vector of point indices.
Definition at line 370 of file octree_container.h.
|
inlinevirtual |
Get size of container (number of indices)
Reimplemented from pcl::octree::OctreeContainerBase.
Definition at line 379 of file octree_container.h.
|
inlinevirtual |
Equal comparison operator.
| [in] | other | OctreeContainerDataTVector to compare with |
Reimplemented from pcl::octree::OctreeContainerBase.
Definition at line 332 of file octree_container.h.
References leafDataTVector_.
|
inlinevirtual |
Reset leaf node.
Clear DataT vector.
Implements pcl::octree::OctreeContainerBase.
Definition at line 386 of file octree_container.h.
|
protected |
Leaf node DataT vector.
Definition at line 393 of file octree_container.h.
Referenced by operator==().