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 
10 /**
11  * rayTrace
12  * Ray tracing is a technique for generating an image by tracing the path of
13  * light through pixels in an image plane and simulating the effects of its
14  * encounters with virtual objects
15  *
16  */
17 
18 #include <mrpt/gui.h>
20 #include <mrpt/opengl/CAxis.h>
21 #include <mrpt/opengl/CCylinder.h>
22 #include <mrpt/opengl/CDisk.h>
26 #include <mrpt/opengl/CSphere.h>
28 #include <mrpt/poses/CPoint3D.h>
29 #include <mrpt/poses/CPose3D.h>
30 #include <mrpt/random.h>
31 #include <mrpt/system/CTicTac.h>
32 #include <iostream>
33 
34 #define COLORR 1.0f
35 #define COLORG 0.0f
36 #define COLORB 0.0f
37 
38 #define GRID_R 1.0f
39 #define GRID_G 1.0f
40 #define GRID_B 1.0f
41 
42 using namespace std;
43 using namespace mrpt;
44 using namespace mrpt::gui;
45 using namespace mrpt::opengl;
46 using namespace mrpt::poses;
47 using namespace mrpt::math;
48 using namespace mrpt::random;
49 using namespace mrpt::serialization;
50 using namespace mrpt::system;
51 
53 
54 // Increase this values to get more precision. It will also increase run time.
55 const size_t HOW_MANY_YAWS = 150;
56 const size_t HOW_MANY_PITCHS = 75;
57 
58 const float RANDOM_POSE_DISTANCE = 10;
59 
60 inline double MYRAND1()
61 {
62  // return static_cast<float>(rand()%prec)/prec;
63  return getRandomGenerator().drawUniform(0, 1);
64 }
65 
66 inline double MYRANDG(double scale, double shift = 0)
67 {
68  // return shift+(static_cast<float>(rand()%prec)/prec)*scale;
69  return shift + scale * getRandomGenerator().drawUniform(0, 1);
70 }
71 
73 {
74  return CPose3D(
78  MYRAND1(), MYRAND1());
79 }
80 
81 /**
82  * Call configRandom given the address of an object and assign random pose and
83  * color to it
84  */
85 void configRandom(const CRenderizable::Ptr& obj)
86 {
87  obj->setColor(MYRAND1(), MYRAND1(), MYRAND1(), MYRANDG(0.75, 0.25));
88  obj->setPose(randomPose());
89 }
90 
91 void guideLines(const CPose3D& base, CSetOfLines::Ptr& lines, float dist)
92 {
93  CPoint3D pDist = CPoint3D(dist, 0, 0);
94  CPoint3D pps[4];
95  pps[0] = base + pDist;
96  pps[1] = base + CPose3D(0, 0, 0, 0, -M_PI / 2, 0) + pDist;
97  pps[2] = base + CPose3D(0, 0, 0, -M_PI / 2, 0, 0) + pDist;
98  pps[3] = base + CPose3D(0, 0, 0, M_PI / 2, 0, 0) + pDist;
99  for (size_t i = 0; i < 4; i++)
100  lines->appendLine(
101  base.x(), base.y(), base.z(), pps[i].x(), pps[i].y(), pps[i].z());
102  lines->setLineWidth(5);
103  lines->setColor(0, 0, 1);
104 }
105 
106 // Add objects at your will to check results
108 {
109  // create object, give it a random pose/color, insert it in the world
110  CDisk::Ptr dsk = CDisk::Create();
111  dsk->setDiskRadius(MYRANDG(5, 5), MYRANDG(5));
112  configRandom(dsk);
113  world->insert(dsk);
114 
115  CSphere::Ptr sph = CSphere::Create(MYRANDG(5, 1));
116  configRandom(sph);
117  world->insert(sph);
118 
119  CTexturedPlane::Ptr pln = CTexturedPlane::Create(
120  MYRANDG(10, -10), MYRANDG(10), MYRANDG(10, -10), MYRANDG(10));
121  configRandom(pln);
122  world->insert(pln);
123 
124  for (size_t i = 0; i < 5; i++)
125  {
126  CPolyhedron::Ptr poly =
127  CPolyhedron::CreateRandomPolyhedron(MYRANDG(2, 2));
128  configRandom(poly);
129  world->insert(poly);
130  }
131 
132  CCylinder::Ptr cil = CCylinder::Create(
133  MYRANDG(3.0, 3.0), MYRANDG(3.0, 1.0), MYRANDG(2.0f, 3.0f), 50);
134  configRandom(cil);
135  world->insert(cil);
136 
137  CEllipsoid3D::Ptr ell = CEllipsoid3D::Create();
138  CMatrixDouble md = CMatrixDouble(3, 3);
139  for (size_t i = 0; i < 3; i++) md(i, i) = MYRANDG(8.0, 1.0);
140  for (size_t i = 0; i < 3; i++)
141  {
142  size_t ii = (i + 1) % 3;
143  md(i, ii) = md(ii, i) = MYRANDG(sqrt(md(i, i) * md(ii, ii)));
144  }
145  ell->setCovMatrix(md);
146  configRandom(std::dynamic_pointer_cast<CRenderizable>(ell));
147  world->insert(ell);
148 }
149 
150 void display()
151 {
152  CDisplayWindow3D window("Ray trace demo", 640, 480);
153  window.setPos(10, 10);
154  std::this_thread::sleep_for(20ms);
155  COpenGLScene::Ptr scene1 = COpenGLScene::Create();
156  // COpenGLScene::Ptr &scene1=window.get3DSceneAndLock();
158  CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
159  plane1->setColor(GRID_R, GRID_G, GRID_B);
160  scene1->insert(plane1);
161  scene1->insert(CAxis::Create(-5, -5, -5, 5, 5, 5, 2.5, 3, true));
162  CSetOfObjects::Ptr world = CSetOfObjects::Create();
163  generateObjects(world);
164  scene1->insert(world);
165  CPose3D basePose = randomPose();
166  CAngularObservationMesh::Ptr aom = CAngularObservationMesh::Create();
167  CTicTac t;
168  t.Tic();
169  CAngularObservationMesh::trace2DSetOfRays(
170  scene1, basePose, aom,
171  CAngularObservationMesh::TDoubleRange::CreateFromAmount(
172  -M_PI / 2, 0, HOW_MANY_PITCHS),
173  CAngularObservationMesh::TDoubleRange::CreateFromAperture(
174  M_PI, HOW_MANY_YAWS));
175  cout << "Elapsed time: " << t.Tac() << " seconds.\n";
176  aom->setColor(0, 1, 0);
177  aom->setWireframe(true);
178  // Comment to stop showing traced rays and scan range guidelines.
179  CSetOfLines::Ptr traced = CSetOfLines::Create();
180  CSetOfLines::Ptr guides = CSetOfLines::Create();
181  aom->getTracedRays(traced);
182  traced->setLineWidth(1.5);
183  traced->setColor(1, 0, 0);
184  guideLines(basePose, guides, 10);
185  scene1->insert(traced);
186  scene1->insert(guides);
187 
188  // Uncomment to show also traced rays who got lost.
189  /*
190  CSetOfLines::Ptr untraced=CSetOfLines::Create();
191  aom->getUntracedRays(untraced,20);
192  untraced->setLineWidth(1);
193  untraced->setColor(1,1,1,0.5);
194  scene1->insert(untraced);
195  */
196  CSphere::Ptr point = CSphere::Create(0.2);
197  point->setColor(0, 1, 0);
198  point->setPose(basePose);
199  scene1->insert(point);
200  CDisplayWindow3D window2("Observed mesh", 640, 480);
201  window2.setPos(660, 10);
202  std::this_thread::sleep_for(20ms);
203  window.get3DSceneAndLock() = scene1;
204  window.unlockAccess3DScene();
205  window.setCameraElevationDeg(25.0f);
206  COpenGLScene::Ptr& scene2 = window2.get3DSceneAndLock();
207  scene2->insert(aom);
209  CGridPlaneXY::Create(-20, 20, -20, 20, 0, 1);
210  plane2->setColor(GRID_R, GRID_G, GRID_B);
211  scene2->insert(plane2);
212  scene2->insert(CAxis::Create(-5, -5, -5, 5, 5, 5, 2.5, 3, true));
213  window2.unlockAccess3DScene();
214  window2.setCameraElevationDeg(25.0f);
215 
216  window.waitForKey();
217 }
218 
219 int main()
220 {
222  try
223  {
224  display();
225  return 0;
226  }
227  catch (const exception& e)
228  {
229  cout << "Error: " << e.what() << '.' << endl;
231  return -1;
232  }
233  catch (...)
234  {
235  cout << "Unknown Error.\n";
236  return -1;
237  }
238 }
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
A mesh built from a set of 2D laser scan observations.
const double GRID_B
const double GRID_R
const float RANDOM_POSE_DISTANCE
double MYRANDG(double scale, double shift=0)
void configRandom(const CRenderizable::Ptr &obj)
Call configRandom given the address of an object and assign random pose and color to it...
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
void guideLines(const CPose3D &base, CSetOfLines::Ptr &lines, float dist)
A high-performance stopwatch, with typical resolution of nanoseconds.
STL namespace.
void generateObjects(CSetOfObjects::Ptr &world)
return_t drawUniform(const double Min, const double Max)
Generate a uniformly distributed pseudo-random number using the MT19937 algorithm, scaled to the selected range.
This base provides a set of functions for maths stuff.
CPose3D randomPose()
double x() const
Common members of all points & poses classes.
Definition: CPoseOrPoint.h:143
const double GRID_G
A class used to store a 3D point.
Definition: CPoint3D.h:31
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
Definition: os.cpp:430
const size_t HOW_MANY_YAWS
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
double MYRAND1(size_t prec=64)
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
const size_t HOW_MANY_PITCHS
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
CMatrixDynamic< double > CMatrixDouble
Declares a matrix of double numbers (non serializable).



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