MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
14 #include <mrpt/obs/CRawlog.h>
16 #include <mrpt/random.h>
17 #include <mrpt/system/CTicTac.h>
18 #include <iostream>
19 
20 using namespace mrpt;
21 using namespace mrpt::maps;
22 using namespace mrpt::obs;
23 using namespace mrpt::random;
24 using namespace mrpt::poses;
25 using namespace mrpt::system;
26 using namespace std;
27 
28 #include <mrpt/examples_config.h>
29 string myDataDir(
30  MRPT_EXAMPLES_BASE_DIRECTORY + string("maps_gridmap_benchmark/"));
31 
32 // Default .ini file:
33 string iniFile(myDataDir + string("benchmark-options.ini"));
34 
35 // ------------------------------------------------------
36 // BenchmarkGridmaps
37 // ------------------------------------------------------
38 void BenchmarkGridmaps()
39 {
41 
42  CMultiMetricMap metricMap;
44 
45  // Create gridmap:
46  mapInit.loadFromConfigFile(
47  mrpt::config::CConfigFile(iniFile), "METRIC_MAPS");
48  metricMap.setListOfMaps(mapInit);
49 
50  // prepare the laser scan:
53 
54  COccupancyGridMap2D::Ptr gridMap =
55  metricMap.mapByClass<COccupancyGridMap2D>();
56  ASSERT_(gridMap);
57  COccupancyGridMap2D gridMapCopy(*gridMap);
58 
59  int i, N;
60  CTicTac tictac;
61 
62  // test 1: getcell
63  // ----------------------------------------
64  if (true)
65  {
66  N = 10000000;
67 
68  cout << "Running test #1: getCell... ";
69  cout.flush();
70 
71  // COccupancyGridMap2D::cellType cell;
72  float p = 0;
73 
74  tictac.Tic();
75  for (i = 0; i < N; i++)
76  {
77  p += gridMap->getCell(0, 0);
78  }
79  double T = tictac.Tac();
80  cout << "-> " << 1e9 * T / N << " ns/iter. p=" << p
81  << endl; // the "p" is to avoid optimizing out the entire loop!
82  }
83 
84  // test 2: setcell
85  // ----------------------------------------
86  if (true)
87  {
88  N = 10000000;
89 
90  cout << "Running test #2: setCell... ";
91  cout.flush();
92 
93  float p = 0.8f;
94 
95  tictac.Tic();
96  for (i = 0; i < N; i++)
97  {
98  gridMap->setCell(0, 0, p);
99  }
100  double T = tictac.Tac();
101  cout << "-> " << 1e9 * T / N << " ns/iter."
102  << endl; // the "p" is to avoid optimizing out the entire loop!
103  }
104 
105  // test 3: updateCell
106  // ----------------------------------------
107  if (true)
108  {
109  N = 1000000;
110 
111  cout << "Running test #3: updateCell... ";
112  cout.flush();
113 
114  float p = 0.57f;
115 
116  tictac.Tic();
117  for (i = 0; i < N; i++)
118  {
119  gridMap->updateCell(0, 0, p);
120  }
121  double T = tictac.Tac();
122  cout << "-> " << 1e9 * T / N << " ns/iter."
123  << endl; // the "p" is to avoid optimizing out the entire loop!
124  }
125 
126  // test 4: updateCell_fast
127  // ----------------------------------------
128  if (true)
129  {
130  N = 10000000;
131 
132  cout << "Running test #4: updateCell_fast... ";
133  cout.flush();
134 
135  float p = 0.57f;
137  // float p_1 = 1-p;
138 
139  COccupancyGridMap2D::cellType* theMapArray = gridMap->getRow(0);
140  unsigned theMapSize_x = gridMap->getSizeX();
141  COccupancyGridMap2D::cellType logodd_thres_occupied =
143 
144  tictac.Tic();
145  for (i = 0; i < N; i++)
146  {
148  2, 2, logodd_obs, logodd_thres_occupied, theMapArray,
149  theMapSize_x);
150  }
151  double T = tictac.Tac();
152  cout << "-> " << 1e9 * T / N << " ns/iter."
153  << endl; // the "p" is to avoid optimizing out the entire loop!
154  }
155 
156 #if 0
157  for (i=50;i<51;i++)
158  {
159  CPose3D pose3D(0.21,0.34,0,-2);
160  //scan1.validRange.assign(scan1.validRange.size(), false);
161  //scan1.getScanRangeValidity(i)=true;
162 
163  gridMap->clear();
164  gridMap->resizeGrid(-5,20,-15,15);
165  gridMap->insertObservation( &scan1, &pose3D );
166  gridMap->saveAsBitmapFile(format("./gridmap_with_widening_%04i.png",i));
167  }
168 #endif
169 
170  // test 5: Laser insertion
171  // ----------------------------------------
172  if (true)
173  {
174  gridMap->insertionOptions.wideningBeamsWithDistance = false;
175  N = 3000;
176  cout << "Running test #5: Laser insert. w/o widen... ";
177  cout.flush();
178  tictac.Tic();
179  for (i = 0; i < N; i++)
180  {
181 #if 1
182  CPose2D pose(
183  getRandomGenerator().drawUniform(-1.0, 1.0),
184  getRandomGenerator().drawUniform(-1.0, 1.0),
185  getRandomGenerator().drawUniform(-M_PI, M_PI));
186  CPose3D pose3D(pose);
187 #else
188  CPose3D pose3D;
189 #endif
190 
191  gridMap->insertObservation(scan1, &pose3D);
192  }
193  double T = tictac.Tac();
194  cout << "-> " << 1000 * T / N << " ms/iter, scans/sec:" << N / T
195  << endl;
196 
197  CPose3D pose3D;
198  gridMap->clear();
199  gridMap->insertObservation(scan1, &pose3D);
200  gridMap->saveAsBitmapFile("./gridmap_without_widening.png");
201  }
202 
203  // test 6: Laser insertion without widening
204  // --------------------------------------------------
205  if (true)
206  {
207  gridMap->insertionOptions.wideningBeamsWithDistance = true;
208  N = 3000;
209  cout << "Running test #6: Laser insert. widen... ";
210  cout.flush();
211  tictac.Tic();
212  for (i = 0; i < N; i++)
213  {
214 #if 1
215  CPose2D pose(
216  getRandomGenerator().drawUniform(-1.0, 1.0),
217  getRandomGenerator().drawUniform(-1.0, 1.0),
218  getRandomGenerator().drawUniform(-M_PI, M_PI));
219  CPose3D pose3D(pose);
220 #else
221  CPose3D pose3D;
222 #endif
223  gridMap->insertObservation(scan1, &pose3D);
224  }
225  double T = tictac.Tac();
226  cout << "-> " << 1000 * T / N << " ms/iter, scans/sec:" << N / T
227  << endl;
228 
229  CPose3D pose3D;
230  gridMap->clear();
231  gridMap->insertObservation(scan1, &pose3D);
232  gridMap->saveAsBitmapFile("./gridmap_with_widening.png");
233  }
234 
235  // test 7: Grid resize
236  // ----------------------------------------
237  if (true)
238  {
239  N = 400;
240  cout << "Running test #7: Grid resize... ";
241  cout.flush();
242  tictac.Tic();
243  for (i = 0; i < N; i++)
244  {
245  *gridMap = gridMapCopy;
246  gridMap->resizeGrid(-30, 30, -40, 40);
247  }
248  double T = tictac.Tac();
249  cout << "-> " << 1000 * T / N << " ms/iter" << endl;
250  }
251 
252  // test 8: Likelihood computation
253  // ----------------------------------------
254  if (true)
255  {
256  N = 5000;
257 
258  *gridMap = gridMapCopy;
259  CPose3D pose3D(0, 0, 0);
260  gridMap->insertObservation(scan1, &pose3D);
261 
262  cout << "Running test #8: Likelihood... ";
263  cout.flush();
264  double R = 0;
265  tictac.Tic();
266  for (i = 0; i < N; i++)
267  {
268  CPose2D pose(
269  getRandomGenerator().drawUniform(-1.0, 1.0),
270  getRandomGenerator().drawUniform(-1.0, 1.0),
271  getRandomGenerator().drawUniform(-M_PI, M_PI));
272  R += gridMap->computeObservationLikelihood(scan1, pose);
273  }
274  double T = tictac.Tac();
275  cout << "-> " << 1000 * T / N << " ms/iter" << endl;
276  }
277 }
278 
279 int main(int argc, char** argv)
280 {
281  try
282  {
283  // optional argument: a different ini file
284  if (argc > 1) iniFile = string(argv[1]);
285 
287  return 0;
288  }
289  catch (exception& e)
290  {
291  cout << "MRPT exception caught: " << e.what() << endl;
292  return -1;
293  }
294  catch (...)
295  {
296  printf("Another exception!!");
297  return -1;
298  }
299 }
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
static constexpr cellType OCCGRID_CELLTYPE_MIN
Discrete to float conversion factors: The min/max values of the integer cell type, eg.
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
This class allows loading and storing values and vectors of different types from ".ini" files easily.
A high-performance stopwatch, with typical resolution of nanoseconds.
std::string myDataDir
void example2DRangeScan(mrpt::obs::CObservation2DRangeScan &s, int i=0)
Example 2D lidar scans (form a venerable SICK LMS200).
STL namespace.
T::Ptr mapByClass(size_t ith=0) const
Returns the i&#39;th map of a given class (or of a derived class), or empty smart pointer if there is no ...
A set of TMetricMapInitializer structures, passed to the constructor CMultiMetricMap::CMultiMetricMap...
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string &sectionName) override
Loads the configuration for the set of internal maps from a textual definition in an INI-like file...
This namespace contains representation of robot actions and observations.
string iniFile(myDataDir+string("benchmark-options.ini"))
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
A class for storing an occupancy grid map.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
A "CObservation"-derived class that represents a 2D range scan measurement (typically from a laser sc...
static cellType p2l(const float p)
Scales a real valued probability in [0,1] to an integer representation of: log(p)-log(1-p) in the val...
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
Definition: CPose2D.h:39
const float R
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
OccGridCellTraits::cellType cellType
The type of the map cells:
const int argc
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
This class stores any customizable set of metric maps.
void BenchmarkGridmaps()
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
void setListOfMaps(const mrpt::maps::TSetOfMetricMapInitializers &init)
Sets the list of internal map according to the passed list of map initializers (current maps will be ...
static void updateCell_fast_occupied(const unsigned x, const unsigned y, const cell_t logodd_obs, const cell_t thres, cell_t *mapArray, const unsigned _size_x)
Performs the Bayesian fusion of a new observation of a cell, without checking for grid limits nor upd...



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020