Point Cloud Library (PCL)  1.11.1-dev
octree_key.h
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Point Cloud Library (PCL) - www.pointclouds.org
5  * Copyright (c) 2010-2012, Willow Garage, Inc.
6  *
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * * Redistributions of source code must retain the above copyright
14  * notice, this list of conditions and the following disclaimer.
15  * * Redistributions in binary form must reproduce the above
16  * copyright notice, this list of conditions and the following
17  * disclaimer in the documentation and/or other materials provided
18  * with the distribution.
19  * * Neither the name of Willow Garage, Inc. nor the names of its
20  * contributors may be used to endorse or promote products derived
21  * from this software without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34  * POSSIBILITY OF SUCH DAMAGE.
35  *
36  */
37 
38 #pragma once
39 
40 #include <cstdint>
41 #include <cstring> // for memcpy
42 
43 namespace pcl {
44 namespace octree {
45 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
46 /** \brief @b Octree key class
47  * \note Octree keys contain integer indices for each coordinate axis in order to
48  * address an octree leaf node.
49  * \author Julius Kammerl (julius@kammerl.de)
50  */
51 //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
52 class OctreeKey {
53 public:
54  /** \brief Empty constructor. */
55  OctreeKey() : x(0), y(0), z(0) {}
56 
57  /** \brief Constructor for key initialization. */
58  OctreeKey(unsigned int keyX, unsigned int keyY, unsigned int keyZ)
59  : x(keyX), y(keyY), z(keyZ)
60  {}
61 
62  /** \brief Copy constructor. */
63  OctreeKey(const OctreeKey& source) { std::memcpy(key_, source.key_, sizeof(key_)); }
64 
65  OctreeKey&
66  operator=(const OctreeKey&) = default;
67 
68  /** \brief Operator== for comparing octree keys with each other.
69  * \return "true" if leaf node indices are identical; "false" otherwise.
70  * */
71  bool
72  operator==(const OctreeKey& b) const
73  {
74  return ((b.x == this->x) && (b.y == this->y) && (b.z == this->z));
75  }
76 
77  /** \brief Inequal comparison operator
78  * \param[in] other OctreeIteratorBase to compare with
79  * \return "true" if the current and other iterators are different ; "false"
80  * otherwise.
81  */
82  bool
83  operator!=(const OctreeKey& other) const
84  {
85  return !operator==(other);
86  }
87 
88  /** \brief Operator<= for comparing octree keys with each other.
89  * \return "true" if key indices are not greater than the key indices of b ; "false"
90  * otherwise.
91  * */
92  bool
93  operator<=(const OctreeKey& b) const
94  {
95  return ((b.x >= this->x) && (b.y >= this->y) && (b.z >= this->z));
96  }
97 
98  /** \brief Operator>= for comparing octree keys with each other.
99  * \return "true" if key indices are not smaller than the key indices of b ; "false"
100  * otherwise.
101  * */
102  bool
103  operator>=(const OctreeKey& b) const
104  {
105  return ((b.x <= this->x) && (b.y <= this->y) && (b.z <= this->z));
106  }
107 
108  /** \brief push a child node to the octree key
109  * \param[in] childIndex index of child node to be added (0-7)
110  * */
111  inline void
112  pushBranch(unsigned char childIndex)
113  {
114  this->x = (this->x << 1) | (!!(childIndex & (1 << 2)));
115  this->y = (this->y << 1) | (!!(childIndex & (1 << 1)));
116  this->z = (this->z << 1) | (!!(childIndex & (1 << 0)));
117  }
118 
119  /** \brief pop child node from octree key
120  * */
121  inline void
123  {
124  this->x >>= 1;
125  this->y >>= 1;
126  this->z >>= 1;
127  }
128 
129  /** \brief get child node index using depthMask
130  * \param[in] depthMask bit mask with single bit set at query depth
131  * \return child node index
132  * */
133  inline unsigned char
134  getChildIdxWithDepthMask(unsigned int depthMask) const
135  {
136  return static_cast<unsigned char>(((!!(this->x & depthMask)) << 2) |
137  ((!!(this->y & depthMask)) << 1) |
138  (!!(this->z & depthMask)));
139  }
140 
141  /* \brief maximum depth that can be addressed */
142  static const unsigned char maxDepth =
143  static_cast<unsigned char>(sizeof(std::uint32_t) * 8);
144 
145  // Indices addressing a voxel at (X, Y, Z)
146 
147  union {
148  struct {
149  std::uint32_t x;
150  std::uint32_t y;
151  std::uint32_t z;
152  };
153  std::uint32_t key_[3];
154  };
155 };
156 } // namespace octree
157 } // namespace pcl
pcl
Definition: convolution.h:46
pcl::octree::OctreeKey::pushBranch
void pushBranch(unsigned char childIndex)
push a child node to the octree key
Definition: octree_key.h:112
pcl::octree::OctreeKey::OctreeKey
OctreeKey(unsigned int keyX, unsigned int keyY, unsigned int keyZ)
Constructor for key initialization.
Definition: octree_key.h:58
pcl::octree::OctreeKey::maxDepth
static const unsigned char maxDepth
Definition: octree_key.h:142
pcl::octree::OctreeKey::OctreeKey
OctreeKey(const OctreeKey &source)
Copy constructor.
Definition: octree_key.h:63
pcl::octree::OctreeKey::popBranch
void popBranch()
pop child node from octree key
Definition: octree_key.h:122
pcl::octree::OctreeKey
Octree key class
Definition: octree_key.h:52
pcl::octree::OctreeKey::operator!=
bool operator!=(const OctreeKey &other) const
Inequal comparison operator.
Definition: octree_key.h:83
pcl::octree::OctreeKey::operator>=
bool operator>=(const OctreeKey &b) const
Operator>= for comparing octree keys with each other.
Definition: octree_key.h:103
pcl::octree::OctreeKey::operator=
OctreeKey & operator=(const OctreeKey &)=default
pcl::octree::OctreeKey::z
std::uint32_t z
Definition: octree_key.h:151
pcl::octree::OctreeKey::OctreeKey
OctreeKey()
Empty constructor.
Definition: octree_key.h:55
pcl::octree::OctreeKey::operator==
bool operator==(const OctreeKey &b) const
Operator== for comparing octree keys with each other.
Definition: octree_key.h:72
pcl::octree::OctreeKey::getChildIdxWithDepthMask
unsigned char getChildIdxWithDepthMask(unsigned int depthMask) const
get child node index using depthMask
Definition: octree_key.h:134
pcl::octree::OctreeKey::x
std::uint32_t x
Definition: octree_key.h:149
pcl::octree::OctreeKey::y
std::uint32_t y
Definition: octree_key.h:150
pcl::octree::OctreeKey::operator<=
bool operator<=(const OctreeKey &b) const
Operator<= for comparing octree keys with each other.
Definition: octree_key.h:93
pcl::octree::OctreeKey::key_
std::uint32_t key_[3]
Definition: octree_key.h:153