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/math/TObject3D.h>
13 #include <mrpt/opengl/CAxis.h>
16 #include <iostream>
17 
18 using namespace std;
19 using namespace mrpt;
20 using namespace mrpt::gui;
21 using namespace mrpt::opengl;
22 using namespace mrpt::poses;
23 using namespace mrpt::math;
25 using namespace mrpt::system;
26 
27 const double GRID_R = 1.0;
28 const double GRID_G = 1.0;
29 const double GRID_B = 1.0;
30 
31 // Comment to increase randomness of poses
32 #define PAIRED_RANDOM_POSES
33 
34 #define USE_THREADS
35 
36 inline double MYRAND1(size_t prec = 64)
37 {
38  return static_cast<double>(rand() % prec) / static_cast<double>(prec - 1);
39 }
40 
41 void randomColor(const CRenderizable::Ptr& obj, double alpha)
42 {
43  obj->setColor(MYRAND1(), MYRAND1(), MYRAND1(), alpha);
44 }
45 
46 #ifdef USE_THREADS
47 class PIThreadParam
48 {
49  public:
50  const pair<CPolyhedron::Ptr, CPolyhedron::Ptr>* polys{nullptr};
51  vector<TSegment3D> intersection;
52  PIThreadParam(const pair<CPolyhedron::Ptr, CPolyhedron::Ptr>& p)
53  : polys(&p), intersection()
54  {
55  }
56  PIThreadParam() : intersection() {}
57  inline static PIThreadParam createObject(
58  const pair<CPolyhedron::Ptr, CPolyhedron::Ptr>& p)
59  {
60  return PIThreadParam(p);
61  }
62 };
63 
65 {
66  vector<TObject3D> ints;
67  CPolyhedron::getIntersection(p.polys->first, p.polys->second, ints);
68  TObject3D::getSegments(ints, p.intersection);
69 }
70 
71 inline std::thread piCreateThread(PIThreadParam& p)
72 {
73  return std::thread(&piThreadFunction, std::ref(p));
74 }
75 
77 {
78  public:
79  vector<TSegment3D>& sgms;
80  AggregatorFunctor(vector<TSegment3D>& s) : sgms(s) {}
81  inline void operator()(const PIThreadParam& p)
82  {
83  sgms.insert(sgms.end(), p.intersection.begin(), p.intersection.end());
84  }
85 };
86 #endif
87 
89  const vector<pair<CPolyhedron::Ptr, CPolyhedron::Ptr>>& v)
90 {
91  vector<TSegment3D> sgms;
92 #ifdef USE_THREADS
93  vector<PIThreadParam> pars(v.size());
94  vector<std::thread> threads(v.size());
95  transform(v.begin(), v.end(), pars.begin(), &PIThreadParam::createObject);
96  transform(pars.begin(), pars.end(), threads.begin(), &piCreateThread);
97  for_each(threads.begin(), threads.end(), [](std::thread& t) { t.join(); });
98  for_each(pars.begin(), pars.end(), AggregatorFunctor(sgms));
99 #else
100  vector<TObject3D> ints, TMP;
101  for (vector<pair<CPolyhedron::Ptr, CPolyhedron::Ptr>>::const_iterator it =
102  v.begin();
103  it != v.end(); ++it)
104  {
105  CPolyhedron::getIntersection(it->first, it->second, TMP);
106  ints.insert(ints.end(), TMP.begin(), TMP.end());
107  }
108  TObject3D::getSegments(ints, sgms);
109 #endif
110  CSetOfLines::Ptr lns = CSetOfLines::Create(sgms);
111  lns->setLineWidth(9);
112  randomColor(lns, 1.0);
113  return lns;
114 }
115 
116 inline double randomAngle(size_t prec = 64) { return MYRAND1(prec) * M_PI; }
117 inline double randomZ(double space = 25, size_t prec = 64)
118 {
119  return space * (MYRAND1(prec) - 0.5);
120 }
121 
122 pair<CPolyhedron::Ptr, CPolyhedron::Ptr> addPairOfPolys(
124  double x, double y)
125 {
126  p1->makeConvexPolygons();
127  p2->makeConvexPolygons();
128 #ifdef PAIRED_RANDOM_POSES
129  CPose3D pose =
131  p1->setPose(pose);
132  p2->setPose(pose);
133 #else
134  CPose3D pose1 =
136  CPose3D pose2 =
138  p1->setPose(pose1);
139  p2->setPose(pose2);
140 #endif
141  randomColor(p1, 0.5);
142  randomColor(p2, 0.5);
143  objs->insert(p1);
144  objs->insert(p2);
145  return make_pair(p1, p2);
146 }
147 
148 void display()
149 {
150  CDisplayWindow3D window("Polyhedra Intersection demo", 640, 480);
151  window.resize(640, 480);
152  COpenGLScene::Ptr scene1 = COpenGLScene::Create();
154  CGridPlaneXY::Create(-25, 25, -25, 25, 0, 1);
155  plane1->setColor(GRID_R, GRID_G, GRID_B);
156  scene1->insert(plane1);
157  scene1->insert(CAxis::Create(-5, -5, -5, 5, 5, 5, 2.5, 3, true));
158  CSetOfObjects::Ptr objs = CSetOfObjects::Create();
159  vector<pair<CPolyhedron::Ptr, CPolyhedron::Ptr>> polys;
160  polys.reserve(16);
161  // Addition of polyhedra. Add more polyhedra at wish, but try to avoid
162  // intersections with other pairs, for better visualization.
163  polys.push_back(addPairOfPolys(
164  CPolyhedron::CreateHexahedron(10), CPolyhedron::CreateOctahedron(10),
165  objs, -12.5, -12.5));
166  polys.push_back(addPairOfPolys(
167  CPolyhedron::CreateIcosahedron(10), CPolyhedron::CreateDodecahedron(10),
168  objs, -12.5, 12.5));
169  polys.push_back(addPairOfPolys(
170  CPolyhedron::CreateRhombicuboctahedron(10),
171  CPolyhedron::CreateCuboctahedron(10), objs, 12.5, 12.5));
172  polys.push_back(addPairOfPolys(
173  CPolyhedron::CreateArchimedeanRegularAntiprism(4, 9),
174  CPolyhedron::CreateRegularDoublePyramid(9, 10, 15, 6), objs, 12.5,
175  -12.5));
176  polys.push_back(addPairOfPolys(
177  CPolyhedron::CreateCuboctahedron(10),
178  CPolyhedron::CreateRhombicDodecahedron(10), objs, -37.5, -37.5));
179  polys.push_back(addPairOfPolys(
180  CPolyhedron::CreateRhombicuboctahedron(10),
181  CPolyhedron::CreateDeltoidalIcositetrahedron(10), objs, -37.5, -12.5));
182  polys.push_back(addPairOfPolys(
183  CPolyhedron::CreateIcosidodecahedron(10),
184  CPolyhedron::CreateRhombicTriacontahedron(10), objs, -37.5, 12.5));
185  polys.push_back(addPairOfPolys(
186  CPolyhedron::CreateRhombicosidodecahedron(10),
187  CPolyhedron::CreateDeltoidalHexecontahedron(10), objs, -37.5, 37.5));
188  polys.push_back(addPairOfPolys(
189  CPolyhedron::CreateTruncatedTetrahedron(10),
190  CPolyhedron::CreateTriakisTetrahedron(10), objs, -12.5, -37.5));
191  polys.push_back(addPairOfPolys(
192  CPolyhedron::CreateTruncatedHexahedron(10),
193  CPolyhedron::CreateTriakisOctahedron(10), objs, -12.5, 37.5));
194  polys.push_back(addPairOfPolys(
195  CPolyhedron::CreateTruncatedOctahedron(10),
196  CPolyhedron::CreateTetrakisHexahedron(10), objs, 12.5, -37.5));
197  polys.push_back(addPairOfPolys(
198  CPolyhedron::CreateTruncatedDodecahedron(10),
199  CPolyhedron::CreateTriakisIcosahedron(10), objs, 12.5, 37.5));
200  polys.push_back(addPairOfPolys(
201  CPolyhedron::CreateTruncatedIcosahedron(10),
202  CPolyhedron::CreatePentakisDodecahedron(10), objs, 37.5, -37.5));
203  polys.push_back(addPairOfPolys(
204  CPolyhedron::CreateRandomPolyhedron(10),
205  CPolyhedron::CreateRandomPolyhedron(10), objs, 37.5, -12.5));
206  polys.push_back(addPairOfPolys(
207  CPolyhedron::CreateDodecahedron(10),
208  CPolyhedron::CreateDeltoidalHexecontahedron(10), objs, 37.5, 12.5));
209  polys.push_back(addPairOfPolys(
210  CPolyhedron::CreateTriakisIcosahedron(10),
211  CPolyhedron::CreatePentakisDodecahedron(10), objs, 37.5, 37.5));
212  objs << getIntersections(polys);
213 
214  scene1->insert(objs);
215  window.get3DSceneAndLock() = scene1;
216  window.unlockAccess3DScene();
217  window.setCameraElevationDeg(25.0f);
218  window.forceRepaint();
219  window.waitForKey();
220 }
221 
222 int main()
223 {
224  srand((unsigned int)mrpt::system::extractDayTimeFromTimestamp(
225  mrpt::system::now()));
226  try
227  {
228  display();
229  return 0;
230  }
231  catch (exception& e)
232  {
233  cout << "Error: " << e.what() << '.' << endl;
234  return -1;
235  }
236  catch (...)
237  {
238  cout << "Unknown Error.\n";
239  return -1;
240  }
241 }
A mesh built from a set of 2D laser scan observations.
static PIThreadParam createObject(const pair< CPolyhedron::Ptr, CPolyhedron::Ptr > &p)
void randomColor(const CRenderizable::Ptr &obj, double alpha)
CSetOfLines::Ptr getIntersections(const vector< pair< CPolyhedron::Ptr, CPolyhedron::Ptr >> &v)
const double GRID_B
const double GRID_R
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Definition: datetime.h:86
pair< CPolyhedron::Ptr, CPolyhedron::Ptr > addPairOfPolys(CPolyhedron::Ptr p1, CPolyhedron::Ptr p2, CSetOfObjects::Ptr &objs, double x, double y)
double extractDayTimeFromTimestamp(const mrpt::system::TTimeStamp t)
Returns the number of seconds ellapsed from midnight in the given timestamp.
Definition: datetime.cpp:197
STL namespace.
This base provides a set of functions for maths stuff.
double randomZ(double space=25, size_t prec=64)
const double GRID_G
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
std::thread piCreateThread(PIThreadParam &p)
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
double randomAngle(size_t prec=64)
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
vector< TSegment3D > intersection
void piThreadFunction(PIThreadParam &p)
const pair< CPolyhedron::Ptr, CPolyhedron::Ptr > * polys
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