Point Cloud Library (PCL)  1.14.1-dev
convolution_3d.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 the copyright holder(s) 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  * $Id$
37  *
38  */
39 
40 #pragma once
41 
42 #include <pcl/pcl_base.h>
43 #include <boost/optional.hpp>
44 #include <pcl/search/search.h>
45 
46 namespace pcl
47 {
48  namespace filters
49  {
50  /** \brief Class ConvolvingKernel base class for all convolving kernels
51  * \ingroup filters
52  */
53  template<typename PointInT, typename PointOutT>
55  {
56  public:
57  using Ptr = shared_ptr<ConvolvingKernel<PointInT, PointOutT> >;
58  using ConstPtr = shared_ptr<const ConvolvingKernel<PointInT, PointOutT> >;
59 
61 
62  /// \brief empty constructor
64 
65  /// \brief empty destructor
66  virtual ~ConvolvingKernel() = default;
67 
68  /** \brief Set input cloud
69  * \param[in] input source point cloud
70  */
71  void
72  setInputCloud (const PointCloudInConstPtr& input) { input_ = input; }
73 
74  /** \brief Convolve point at the center of this local information
75  * \param[in] indices indices of the point in the source point cloud
76  * \param[in] distances euclidean distance squared from the query point
77  * \return the convolved point
78  */
79  virtual PointOutT
80  operator() (const Indices& indices, const std::vector<float>& distances) = 0;
81 
82  /** \brief Must call this method before doing any computation
83  * \note make sure to override this with at least
84  * \code
85  * bool initCompute ()
86  * {
87  * return (true);
88  * }
89  * \endcode
90  * in your kernel interface, else you are going nowhere!
91  */
92  virtual bool
93  initCompute () { return false; }
94 
95  /** \brief Utility function that annihilates a point making it fail the \ref pcl::isFinite test
96  * \param p point to annihilate
97  */
98  static void
99  makeInfinite (PointOutT& p)
100  {
101  p.x = p.y = p.z = std::numeric_limits<float>::quiet_NaN ();
102  }
103 
104  protected:
105  /// source cloud
107  };
108 
109  /** \brief Gaussian kernel implementation interface
110  * Use this as implementation reference
111  * \ingroup filters
112  */
113  template<typename PointInT, typename PointOutT>
114  class GaussianKernel : public ConvolvingKernel <PointInT, PointOutT>
115  {
116  public:
121  using Ptr = shared_ptr<GaussianKernel<PointInT, PointOutT> >;
122  using ConstPtr = shared_ptr<GaussianKernel<PointInT, PointOutT> >;
123 
124  /** Default constructor */
126  : ConvolvingKernel <PointInT, PointOutT> ()
127  , sigma_ (0)
128  , threshold_ (std::numeric_limits<float>::infinity ())
129  {}
130 
131  /** Set the sigma parameter of the Gaussian
132  * \param[in] sigma
133  */
134  inline void
135  setSigma (float sigma) { sigma_ = sigma; }
136 
137  /** Set the distance threshold relative to a sigma factor i.e. points such as
138  * ||pi - q|| > sigma_coefficient^2 * sigma^2 are not considered.
139  */
140  inline void
141  setThresholdRelativeToSigma (float sigma_coefficient)
142  {
143  sigma_coefficient_.reset (sigma_coefficient);
144  }
145 
146  /** Set the distance threshold such as pi, ||pi - q|| > threshold are not considered. */
147  inline void
148  setThreshold (float threshold) { threshold_ = threshold; }
149 
150  /** Must call this method before doing any computation */
151  bool initCompute ();
152 
153  virtual PointOutT
154  operator() (const Indices& indices, const std::vector<float>& distances);
155 
156  protected:
157  float sigma_;
158  float sigma_sqr_;
159  float threshold_;
160  boost::optional<float> sigma_coefficient_;
161  };
162 
163  /** \brief Gaussian kernel implementation interface with RGB channel handling
164  * Use this as implementation reference
165  * \ingroup filters
166  */
167  template<typename PointInT, typename PointOutT>
168  class GaussianKernelRGB : public GaussianKernel <PointInT, PointOutT>
169  {
170  public:
177  using Ptr = shared_ptr<GaussianKernelRGB<PointInT, PointOutT> >;
178  using ConstPtr = shared_ptr<GaussianKernelRGB<PointInT, PointOutT> >;
179 
180  /** Default constructor */
182  : GaussianKernel <PointInT, PointOutT> ()
183  {}
184 
185  PointOutT
186  operator() (const Indices& indices, const std::vector<float>& distances);
187  };
188 
189  /** Convolution3D handles the non organized case where width and height are unknown or if you
190  * are only interested in convolving based on local neighborhood information.
191  * The convolving kernel MUST be a radial symmetric and implement \ref ConvolvingKernel
192  * interface.
193  */
194  template <typename PointIn, typename PointOut, typename KernelT>
195  class Convolution3D : public pcl::PCLBase <PointIn>
196  {
197  public:
201  using KdTreePtr = typename KdTree::Ptr;
203  using Ptr = shared_ptr<Convolution3D<PointIn, PointOut, KernelT> >;
204  using ConstPtr = shared_ptr<Convolution3D<PointIn, PointOut, KernelT> >;
205 
208 
209  /** \brief Constructor */
210  Convolution3D ();
211 
212  /** \brief Initialize the scheduler and set the number of threads to use.
213  * \param nr_threads the number of hardware threads to use (0 sets the value back to automatic)
214  */
215  inline void
216  setNumberOfThreads (unsigned int nr_threads = 0) { threads_ = nr_threads; }
217 
218  /** \brief Set convolving kernel
219  * \param[in] kernel convolving element
220  */
221  inline void
222  setKernel (const KernelT& kernel) { kernel_ = kernel; }
223 
224  /** \brief Provide a pointer to the input dataset that we need to estimate features at every point for.
225  * \param cloud the const boost shared pointer to a PointCloud message
226  */
227  inline void
228  setSearchSurface (const PointCloudInConstPtr &cloud) { surface_ = cloud; }
229 
230  /** \brief Get a pointer to the surface point cloud dataset. */
231  inline PointCloudInConstPtr
232  getSearchSurface () { return (surface_); }
233 
234  /** \brief Provide a pointer to the search object.
235  * \param tree a pointer to the spatial search object.
236  */
237  inline void
238  setSearchMethod (const KdTreePtr &tree) { tree_ = tree; }
239 
240  /** \brief Get a pointer to the search method used. */
241  inline KdTreePtr
242  getSearchMethod () { return (tree_); }
243 
244  /** \brief Set the sphere radius that is to be used for determining the nearest neighbors
245  * \param radius the sphere radius used as the maximum distance to consider a point a neighbor
246  */
247  inline void
248  setRadiusSearch (double radius) { search_radius_ = radius; }
249 
250  /** \brief Get the sphere radius used for determining the neighbors. */
251  inline double
253 
254  /** Convolve point cloud.
255  * \param[out] output the convolved cloud
256  */
257  void
258  convolve (PointCloudOut& output);
259 
260  protected:
261  /** \brief initialize computation */
262  bool initCompute ();
263 
264  /** \brief An input point cloud describing the surface that is to be used for nearest neighbors estimation. */
266 
267  /** \brief A pointer to the spatial search object. */
269 
270  /** \brief The nearest neighbors search radius for each point. */
272 
273  /** \brief number of threads */
274  unsigned int threads_;
275 
276  /** \brief convlving kernel */
277  KernelT kernel_;
278  };
279  }
280 }
281 
282 #include <pcl/filters/impl/convolution_3d.hpp>
PCL base class.
Definition: pcl_base.h:70
PointCloud represents the base class in PCL for storing collections of 3D points.
Definition: point_cloud.h:173
shared_ptr< const PointCloud< PointT > > ConstPtr
Definition: point_cloud.h:414
Convolution3D handles the non organized case where width and height are unknown or if you are only in...
KdTreePtr getSearchMethod()
Get a pointer to the search method used.
void setKernel(const KernelT &kernel)
Set convolving kernel.
bool initCompute()
initialize computation
typename KdTree::Ptr KdTreePtr
KernelT kernel_
convlving kernel
double getRadiusSearch()
Get the sphere radius used for determining the neighbors.
void setNumberOfThreads(unsigned int nr_threads=0)
Initialize the scheduler and set the number of threads to use.
void setSearchSurface(const PointCloudInConstPtr &cloud)
Provide a pointer to the input dataset that we need to estimate features at every point for.
typename PointCloudIn::ConstPtr PointCloudInConstPtr
void setRadiusSearch(double radius)
Set the sphere radius that is to be used for determining the nearest neighbors.
KdTreePtr tree_
A pointer to the spatial search object.
PointCloudInConstPtr surface_
An input point cloud describing the surface that is to be used for nearest neighbors estimation.
unsigned int threads_
number of threads
shared_ptr< Convolution3D< PointIn, PointOut, KernelT > > Ptr
void setSearchMethod(const KdTreePtr &tree)
Provide a pointer to the search object.
void convolve(PointCloudOut &output)
Convolve point cloud.
pcl::PointCloud< PointOut > PointCloudOut
PointCloudInConstPtr getSearchSurface()
Get a pointer to the surface point cloud dataset.
shared_ptr< Convolution3D< PointIn, PointOut, KernelT > > ConstPtr
double search_radius_
The nearest neighbors search radius for each point.
Class ConvolvingKernel base class for all convolving kernels.
shared_ptr< ConvolvingKernel< PointInT, PointOutT > > Ptr
virtual PointOutT operator()(const Indices &indices, const std::vector< float > &distances)=0
Convolve point at the center of this local information.
ConvolvingKernel()
empty constructor
static void makeInfinite(PointOutT &p)
Utility function that annihilates a point making it fail the pcl::isFinite test.
PointCloudInConstPtr input_
source cloud
shared_ptr< const ConvolvingKernel< PointInT, PointOutT > > ConstPtr
typename PointCloud< PointInT >::ConstPtr PointCloudInConstPtr
void setInputCloud(const PointCloudInConstPtr &input)
Set input cloud.
virtual ~ConvolvingKernel()=default
empty destructor
virtual bool initCompute()
Must call this method before doing any computation.
Gaussian kernel implementation interface Use this as implementation reference.
void setThresholdRelativeToSigma(float sigma_coefficient)
Set the distance threshold relative to a sigma factor i.e.
boost::optional< float > sigma_coefficient_
virtual PointOutT operator()(const Indices &indices, const std::vector< float > &distances)
Convolve point at the center of this local information.
void setSigma(float sigma)
Set the sigma parameter of the Gaussian.
bool initCompute()
Must call this method before doing any computation.
GaussianKernel()
Default constructor.
void setThreshold(float threshold)
Set the distance threshold such as pi, ||pi - q|| > threshold are not considered.
Gaussian kernel implementation interface with RGB channel handling Use this as implementation referen...
PointOutT operator()(const Indices &indices, const std::vector< float > &distances)
Convolve point at the center of this local information.
GaussianKernelRGB()
Default constructor.
Generic search class.
Definition: search.h:75
shared_ptr< pcl::search::Search< PointT > > Ptr
Definition: search.h:81
IndicesAllocator<> Indices
Type used for indices in PCL.
Definition: types.h:133