MaxPointCount.cpp
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 #include "MaxPointCount.h"
36 
37 // MaxPointCountDataPointsFilter
38 // Constructor
39 template<typename T>
41  PointMatcher<T>::DataPointsFilter("MaxPointCountDataPointsFilter",
42  MaxPointCountDataPointsFilter::availableParameters(), params),
43  maxCount(Parametrizable::get<size_t>("maxCount"))
44 {
45  try
46  {
47  seed = this->template get<size_t>("seed");
48  }
49  catch (const InvalidParameter& e)
50  {
51  seed = static_cast<size_t>(1); // rand default seed number
52  }
53 }
54 
55 // Compute
56 template<typename T>
59 {
60  DataPoints output(input);
61  inPlaceFilter(output);
62  return output;
63 }
64 
65 // In-place filter
66 template<typename T>
68 {
69  const size_t N = static_cast<size_t> (cloud.features.cols() - 1);
70 
71  if (maxCount <= N)
72  {
73  //Re-init seed at each call, to ensure same results
74  std::srand(seed);
75 
76  for(size_t j=0; j<maxCount; ++j)
77  {
78  //Get a random index in [j; N]
79  const size_t idx = j + static_cast<size_t>((N-j)*(static_cast<float>(std::rand()/static_cast<float>(RAND_MAX))));
80 
81  //Switch columns j and idx
82  const auto feat = cloud.features.col(j);
83  cloud.features.col(j) = cloud.features.col(idx);
84  cloud.features.col(idx) = feat;
85 
86  if (cloud.descriptors.cols() > 0)
87  {
88  const auto desc = cloud.descriptors.col(j);
89  cloud.descriptors.col(j) = cloud.descriptors.col(idx);
90  cloud.descriptors.col(idx) = desc;
91  }
92  if (cloud.times.cols() > 0)
93  {
94  const auto time = cloud.times.col(j);
95  cloud.times.col(j) = cloud.times.col(idx);
96  cloud.times.col(idx) = time;
97  }
98  }
99  //Resize the cloud
100  cloud.conservativeResize(maxCount);
101  }
102 }
103 
106 
MaxPointCountDataPointsFilter::inPlaceFilter
virtual void inPlaceFilter(DataPoints &cloud)
Apply these filters to a point cloud without copying.
Definition: MaxPointCount.cpp:67
MaxPointCountDataPointsFilter::seed
size_t seed
Definition: MaxPointCount.h:66
PointMatcher
Functions and classes that are dependant on scalar type are defined in this templatized class.
Definition: PointMatcher.h:130
PointMatcher::DataPoints
A point cloud.
Definition: PointMatcher.h:207
MaxPointCountDataPointsFilter::filter
virtual DataPoints filter(const DataPoints &input)
Apply filters to input point cloud. This is the non-destructive version and returns a copy.
Definition: MaxPointCount.cpp:58
PointMatcher::DataPoints::descriptors
Matrix descriptors
descriptors of points in the cloud, might be empty
Definition: PointMatcher.h:333
PointMatcherSupport::Parametrizable::InvalidParameter
An exception thrown when one tries to fetch the value of an unexisting parameter.
Definition: Parametrizable.h:101
PointMatcher::DataPoints::features
Matrix features
features of points in the cloud
Definition: PointMatcher.h:331
MaxPointCountDataPointsFilter::Parameters
Parametrizable::Parameters Parameters
Definition: MaxPointCount.h:45
PointMatcher::DataPoints::times
Int64Matrix times
time associated to each points, might be empty
Definition: PointMatcher.h:335
PointMatcherSupport::Parametrizable
The superclass of classes that are constructed using generic parameters. This class provides the para...
Definition: Parametrizable.h:98
PointMatcherSupport::get
const M::mapped_type & get(const M &m, const typename M::key_type &k)
Definition: Bibliography.cpp:57
MaxPointCountDataPointsFilter::MaxPointCountDataPointsFilter
MaxPointCountDataPointsFilter(const Parameters &params=Parameters())
Definition: MaxPointCount.cpp:40
PointMatcher::DataPoints::conservativeResize
void conservativeResize(Index pointCount)
Resize the cloud to pointCount points, conserving existing ones.
Definition: pointmatcher/DataPoints.cpp:327
MaxPointCountDataPointsFilter
Maximum number of points.
Definition: MaxPointCount.h:41
MaxPointCount.h


mrpt_local_obstacles
Author(s): Jose-Luis Blanco-Claraco
autogenerated on Mon Aug 14 2023 02:09:03