|
Point Cloud Library (PCL)
1.4.0
|
Octree leaf node iterator class. More...
#include <pcl/octree/octree_iterator.h>


Public Member Functions | |
| OctreeLeafNodeIterator (const OctreeT &octree_arg) | |
| Constructor. | |
| virtual | ~OctreeLeafNodeIterator () |
| Empty deconstructor. | |
| OctreeLeafNodeIterator & | operator++ () |
| Preincrement operator. | |
| OctreeLeafNodeIterator | operator++ (int) |
| Postincrement operator. | |
| const LeafT * | operator* () const |
| *operator. | |
| virtual void | getData (const DataT *&data_arg) const |
| Method for retrieving a single DataT element from the octree leaf node. | |
| virtual void | getData (std::vector< DataT > &dataVector_arg) const |
| Method for retrieving a vector of DataT elements from the octree laef node. | |
| void | reset () |
| Reset the iterator to the root node of the octree. | |
| const OctreeKey & | getCurrentOctreeKey () const |
| Get octree key for the current iterator octree node. | |
| unsigned int | getCurrentOctreeDepth () const |
| Get the current depth level of octree. | |
| const OctreeNode * | getCurrentOctreeNode () const |
| Get the current octree node. | |
| void | getVoxelBounds (Eigen::Vector3f &min_pt, Eigen::Vector3f &max_pt) const |
| Generate bounds of the current octree voxel. | |
| bool | operator== (const OctreeNodeIterator &right_arg) const |
| Equality operator. | |
| bool | operator!= (const OctreeNodeIterator &right_arg) const |
| Inequality operator. | |
| void | skipChildVoxels () |
| Skip all child voxels of current node and return to parent node. | |
Octree leaf node iterator class.
Definition at line 200 of file octree_iterator.h.
| pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::OctreeLeafNodeIterator | ( | const OctreeT & | octree_arg | ) | [inline, explicit] |
Constructor.
| [in] | octree_arg | Octree to be iterated. Initially the iterator is set to its root node. |
Definition at line 207 of file octree_iterator.h.
| virtual pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::~OctreeLeafNodeIterator | ( | ) | [inline, virtual] |
Empty deconstructor.
Definition at line 214 of file octree_iterator.h.
| unsigned int pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::getCurrentOctreeDepth | ( | ) | const [inline, inherited] |
Get the current depth level of octree.
Definition at line 99 of file octree_iterator.h.
| const OctreeKey& pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::getCurrentOctreeKey | ( | ) | const [inline, inherited] |
Get octree key for the current iterator octree node.
Definition at line 90 of file octree_iterator.h.
| const OctreeNode* pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::getCurrentOctreeNode | ( | ) | const [inline, inherited] |
Get the current octree node.
Definition at line 108 of file octree_iterator.h.
| virtual void pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::getData | ( | const DataT *& | data_arg | ) | const [inline, virtual] |
Method for retrieving a single DataT element from the octree leaf node.
| [in] | data_arg | reference to return pointer of leaf node DataT element. |
Definition at line 261 of file octree_iterator.h.
| virtual void pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::getData | ( | std::vector< DataT > & | dataVector_arg | ) | const [inline, virtual] |
Method for retrieving a vector of DataT elements from the octree laef node.
| [out] | dataVector_arg | reference to DataT vector that is extended with leaf node DataT elements. |
Definition at line 277 of file octree_iterator.h.
| void pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::getVoxelBounds | ( | Eigen::Vector3f & | min_pt, |
| Eigen::Vector3f & | max_pt | ||
| ) | const [inline, inherited] |
Generate bounds of the current octree voxel.
| [out] | min_pt | lower bound of voxel |
| [out] | max_pt | upper bound of voxel |
Definition at line 118 of file octree_iterator.h.
| bool pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::operator!= | ( | const OctreeNodeIterator< DataT, LeafT, OctreeT > & | right_arg | ) | const [inline, inherited] |
Inequality operator.
Definition at line 145 of file octree_iterator.h.
| const LeafT* pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::operator* | ( | ) | const [inline] |
*operator.
Reimplemented from pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >.
Definition at line 247 of file octree_iterator.h.
| OctreeLeafNodeIterator& pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::operator++ | ( | ) | [inline] |
Preincrement operator.
Reimplemented from pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >.
Definition at line 222 of file octree_iterator.h.
| OctreeLeafNodeIterator pcl::octree::OctreeLeafNodeIterator< DataT, LeafT, OctreeT >::operator++ | ( | int | ) | [inline] |
Postincrement operator.
Reimplemented from pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >.
Definition at line 236 of file octree_iterator.h.
| bool pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::operator== | ( | const OctreeNodeIterator< DataT, LeafT, OctreeT > & | right_arg | ) | const [inline, inherited] |
Equality operator.
Definition at line 136 of file octree_iterator.h.
| void pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::reset | ( | ) | [inline, inherited] |
Reset the iterator to the root node of the octree.
Definition at line 78 of file octree_iterator.hpp.
| void pcl::octree::OctreeNodeIterator< DataT, LeafT, OctreeT >::skipChildVoxels | ( | ) | [inherited] |
Skip all child voxels of current node and return to parent node.
Definition at line 95 of file octree_iterator.hpp.
1.7.6.1