NormalSpace.h
Go to the documentation of this file.
1 // kate: replace-tabs off; indent-width 4; indent-mode normal
2 // vim: ts=4:sw=4:noexpandtab
3 /*
4 
5 Copyright (c) 2010--2018,
6 François Pomerleau and Stephane Magnenat, ASL, ETHZ, Switzerland
7 You can contact the authors at <f dot pomerleau at gmail dot com> and
8 <stephane at magnenat dot net>
9 
10 All rights reserved.
11 
12 Redistribution and use in source and binary forms, with or without
13 modification, are permitted provided that the following conditions are met:
14  * Redistributions of source code must retain the above copyright
15  notice, this list of conditions and the following disclaimer.
16  * Redistributions in binary form must reproduce the above copyright
17  notice, this list of conditions and the following disclaimer in the
18  documentation and/or other materials provided with the distribution.
19  * Neither the name of the <organization> nor the
20  names of its contributors may be used to endorse or promote products
21  derived from this software without specific prior written permission.
22 
23 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
24 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
25 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26 DISCLAIMED. IN NO EVENT SHALL ETH-ASL BE LIABLE FOR ANY
27 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
28 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
30 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 
34 */
35 #pragma once
36 
37 #include "PointMatcher.h"
38 
39 template<typename T>
41 {
42  // Type definitions
44  typedef typename PM::DataPoints DataPoints;
46 
53 
54  typedef typename DataPoints::Index Index;
55 
57 
58  inline static const std::string description()
59  {
60  return "Normal Space Sampling (NSS) \\cite{Rusinkiewicz2001}. Construct a set of buckets in the normal-space, then put all points of the data into buckets based on their normal direction; Finally, uniformly pick points from all the buckets until the desired number of points is selected. **Required** to compute normals as pre-step.";
61  }
62 
63  inline static const ParametersDoc availableParameters()
64  {
65  return {
66  {"nbSample", "Number of point to select.", "5000", "1", "4294967295", &P::Comp<std::size_t>},
67  {"seed", "Seed for the random generator.", "1", "0", "4294967295", &P::Comp<std::size_t>},
68  {"epsilon", "Step of discretization for the angle spaces", "0.09817477042" /* PI/32 */, "0.04908738521" /* PI/64 */, "3.14159265359" /* PI */, &P::Comp<T>}
69  };
70  }
71 
72 public:
73  const std::size_t nbSample;
74  const std::size_t seed;
75  const T epsilon;
76 
77  //Ctor, uses parameter interface
78  NormalSpaceDataPointsFilter(const Parameters& params = Parameters());
79  //NormalSpaceDataPointsFilter();
80 
81  //Dtor
83 
84  virtual DataPoints filter(const DataPoints& input);
85  virtual void inPlaceFilter(DataPoints& cloud);
86 
87 private:
88  inline std::size_t bucketIdx(T theta, T phi) const;
89 
90  const std::size_t nbBucket;
91 };
92 
93 
public interface
NormalSpaceDataPointsFilter(const Parameters &params=Parameters())
Definition: NormalSpace.cpp:47
static const ParametersDoc availableParameters()
Definition: NormalSpace.h:63
virtual void inPlaceFilter(DataPoints &cloud)
Apply these filters to a point cloud without copying.
Definition: NormalSpace.cpp:69
Matrix::Index Index
An index to a row or a column.
Definition: PointMatcher.h:218
::std::string string
Definition: gtest.h:1979
PointMatcher< T >::DataPoints::InvalidField InvalidField
Definition: NormalSpace.h:56
Parametrizable::ParameterDoc ParameterDoc
Definition: NormalSpace.h:50
const std::size_t nbSample
Definition: NormalSpace.h:73
std::size_t bucketIdx(T theta, T phi) const
PM::DataPoints DataPoints
Definition: NormalSpace.h:44
const std::size_t seed
Definition: NormalSpace.h:74
PointMatcher< T > PM
Definition: NormalSpace.h:43
std::map< std::string, Parameter > Parameters
Parameters stored as a map of string->string.
Parametrizable::Parameters Parameters
Definition: NormalSpace.h:49
Functions and classes that are dependant on scalar type are defined in this templatized class...
Definition: PointMatcher.h:130
DataPoints::Index Index
Definition: NormalSpace.h:54
virtual ~NormalSpaceDataPointsFilter()
Definition: NormalSpace.h:82
A data filter takes a point cloud as input, transforms it, and produces another point cloud as output...
Definition: PointMatcher.h:440
PointMatcherSupport::Parametrizable P
Definition: NormalSpace.h:48
The documentation of a parameter.
static const std::string description()
Definition: NormalSpace.h:58
PM::DataPointsFilter DataPointsFilter
Definition: NormalSpace.h:45
const std::size_t nbBucket
Definition: NormalSpace.h:90
The superclass of classes that are constructed using generic parameters. This class provides the para...
An exception thrown when one tries to fetch the value of an unexisting parameter. ...
std::vector< ParameterDoc > ParametersDoc
The documentation of all parameters.
Parametrizable::ParametersDoc ParametersDoc
Definition: NormalSpace.h:51
An exception thrown when one tries to access features or descriptors unexisting or of wrong dimension...
Definition: PointMatcher.h:250
Parametrizable::InvalidParameter InvalidParameter
Definition: NormalSpace.h:52
virtual DataPoints filter(const DataPoints &input)
Apply filters to input point cloud. This is the non-destructive version and returns a copy...
Definition: NormalSpace.cpp:59
PointMatcherSupport::Parametrizable Parametrizable
Definition: NormalSpace.h:47


libpointmatcher
Author(s):
autogenerated on Sat May 27 2023 02:38:02