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 
11 #include <mrpt/img/TColor.h>
12 #include <mrpt/math/geometry.h>
14 #include <mrpt/random.h>
15 #include <iostream>
16 
17 using namespace std;
18 using namespace mrpt;
19 using namespace mrpt::gui;
20 using namespace mrpt::opengl;
21 using namespace mrpt::math;
22 using namespace mrpt::img;
23 
25  const size_t N, opengl::CPointCloud::Ptr& gl, const TPoint3D& p_min,
26  const TPoint3D& p_max)
27 {
28  auto& rnd = random::getRandomGenerator();
29  for (size_t i = 0; i < N; i++)
30  gl->insertPoint(
31  rnd.drawUniform<float>(p_min.x, p_max.x),
32  rnd.drawUniform<float>(p_min.y, p_max.y),
33  rnd.drawUniform<float>(p_min.z, p_max.z));
34 }
35 
37  const size_t N, opengl::CPointCloud::Ptr& gl, const TPoint3D& p_start,
38  const TPoint3D& p_end)
39 {
40  TPoint3D d = p_end - p_start;
41  d *= 1.0 / N;
42 
43  TPoint3D up(0, 0, 1);
44  TPoint3D lat;
46  lat *= 1.0 / lat.norm();
47 
48  TPoint3D p = p_start;
49  for (size_t i = 0; i < N; i++)
50  {
51  const double ang = i * 0.01;
52  TPoint3D pp = p + up * 30 * cos(ang) + lat * 30 * sin(ang);
53  const auto ppf = TPoint3Df(pp);
54  gl->insertPoint(ppf.x, ppf.y, ppf.z);
55  p += d;
56  }
57 }
58 
60  const size_t N, opengl::CPointCloud::Ptr& gl, const TPoint3D& p_mean,
61  const TPoint3D& p_stddevs)
62 {
63  auto& rnd = random::getRandomGenerator();
64  for (size_t i = 0; i < N; i++)
65  gl->insertPoint(
66  rnd.drawGaussian1D<float>(p_mean.x, p_stddevs.x),
67  rnd.drawGaussian1D<float>(p_mean.y, p_stddevs.y),
68  rnd.drawGaussian1D<float>(p_mean.z, p_stddevs.z));
69 }
70 
71 // ------------------------------------------------------
72 // TestOctreeRenderHugePointCloud
73 // ------------------------------------------------------
75 {
76  // Change this in your program as needed:
77  // mrpt::global_settings::OCTREE_RENDER_MAX_DENSITY_POINTS_PER_SQPIXEL(0.1f);
78 
79  CDisplayWindow3D win("Demo of MRPT's octree pointclouds", 640, 480);
80 
81  COpenGLScene::Ptr& theScene = win.get3DSceneAndLock();
82 
83  // CPointCloud
84  opengl::CPointCloud::Ptr gl_pointcloud = opengl::CPointCloud::Create();
85  theScene->insert(gl_pointcloud);
86 
87  gl_pointcloud->setPointSize(3.0);
88  gl_pointcloud->enableColorFromZ();
89 
90  // Set the list of all points:
91 
92  const double L = 1e3;
93 
94  cout << "Building point cloud...";
95  cout.flush();
96 
97  for (int XX = -10; XX <= 10; XX++)
98  {
99  const double off_x = XX * 2 * L;
100 
101  for (int YY = -10; YY <= 10; YY++)
102  {
103  const double off_y = YY * 2 * L;
104 
106  1e4, gl_pointcloud, TPoint3D(off_x + 0, off_y + 0, 0),
107  TPoint3D(off_x + L, off_y + 0, 500));
108 
110  1e4, gl_pointcloud, TPoint3D(off_x + L, off_y + 0, 500),
111  TPoint3D(off_x + L, off_y + L, -500));
112 
114  1e4, gl_pointcloud, TPoint3D(off_x + L, off_y + L, -500),
115  TPoint3D(off_x + 0, off_y + L, 500));
116 
118  1e4, gl_pointcloud, TPoint3D(off_x + 0, off_y + L, 500),
119  TPoint3D(off_x + 0, off_y + 0, 0));
120  }
121  }
122 
123  cout << "Done.\n";
124  cout.flush();
125 
126  printf("Point count: %e\n", (double)gl_pointcloud->size());
127 
128  // Draw the octree bounding boxes:
131  gl_pointcloud->octree_get_graphics_boundingboxes(*gl_bb);
132  theScene->insert(gl_bb);
133 
134  // gl_pointcloud->octree_debug_dump_tree(std::cout);
135 
136  win.setCameraZoom(600);
137  {
138  mrpt::opengl::COpenGLViewport::Ptr view = theScene->getViewport("main");
139  view->setViewportClipDistances(0.1f, 1e6f);
140  }
141 
142  // IMPORTANT!!! IF NOT UNLOCKED, THE WINDOW WILL NOT BE UPDATED!
143  win.unlockAccess3DScene();
144  win.repaint();
145 
146  cout << "Close the window or press any key to end.\n";
147  bool end = false;
148  while (win.isOpen() && !end)
149  {
150  std::this_thread::sleep_for(5ms);
151 
152  if (win.keyHit())
153  {
154  switch (win.getPushedKey())
155  {
156  case 'q':
157  end = true;
158  break;
159  case 'b':
160  gl_bb->setVisibility(!gl_bb->isVisible());
161  break;
162  };
163  }
164 
165  // Update the texts on the gl display:
166  string s = mrpt::format(
167  "FPS=%5.02f | Rendered points=%.02e/%.02e (%.02f%%) | "
168  "Visib.oct.nodes: %u/%u",
169  win.getRenderingFPS(), (double)gl_pointcloud->getActuallyRendered(),
170  (double)gl_pointcloud->size(),
171  100 * double(gl_pointcloud->getActuallyRendered()) /
172  double(gl_pointcloud->size()),
173  (unsigned int)gl_pointcloud->octree_get_visible_nodes(),
174  (unsigned int)gl_pointcloud->octree_get_node_count());
175 
176  win.get3DSceneAndLock();
177  win.addTextMessage(5, 5, s, 0);
178  win.addTextMessage(
179  5, 35, "'b': switch bounding-boxes visible, 'q': quit", 1);
180  win.unlockAccess3DScene();
181  win.repaint();
182  }
183 }
184 
185 // ------------------------------------------------------
186 // MAIN
187 // ------------------------------------------------------
188 int main()
189 {
190  try
191  {
193 
194  std::this_thread::sleep_for(500ms);
195 
196  return 0;
197  }
198  catch (const std::exception& e)
199  {
200  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
201  return -1;
202  }
203  catch (...)
204  {
205  printf("Untyped exception!!");
206  return -1;
207  }
208 }
void TestOctreeRenderHugePointCloud()
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
void insertRandomPoints_gauss(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_mean, const TPoint3D &p_stddevs)
STL namespace.
static Ptr Create(Args &&... args)
Definition: CSetOfObjects.h:28
void crossProduct3D(const T &v0, const U &v1, V &vOut)
Computes the cross product of two 3D vectors, returning a vector normal to both.
Definition: geometry.h:765
This base provides a set of functions for maths stuff.
double lat
[deg], [deg], hgt over sea level[m]
TPoint3D_< double > TPoint3D
Lightweight 3D point.
Definition: TPoint3D.h:268
mrpt::gui::CDisplayWindow3D::Ptr win
void insertRandomPoints_uniform(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_min, const TPoint3D &p_max)
T x
X,Y,Z coordinates.
Definition: TPoint3D.h:29
const_iterator end() const
Definition: ts_hash_map.h:246
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
TPoint3D_< float > TPoint3Df
Definition: TPoint3D.h:269
void insertRandomPoints_screw(const size_t N, opengl::CPointCloud::Ptr &gl, const TPoint3D &p_start, const TPoint3D &p_end)
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.



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