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 #include <mrpt/poses/CPoint3D.h>
11 #include <mrpt/poses/CPose2D.h>
12 #include <mrpt/poses/CPose3D.h>
13 #include <mrpt/system/CTicTac.h>
14 #include <iostream>
15 
16 using namespace mrpt;
17 using namespace mrpt::poses;
18 using namespace mrpt::system;
19 using namespace std;
20 
21 void TestGeometry3D2()
22 {
23  CPose3D iniPoseVehicle(
24  745.327749, 407.959716, 14.851070, -2.985091, 0.009412, 0.051315);
25 
26  CPoint3D GPSPosOnVehicle(-0.25, 0, 0.10);
27 
28  CPoint3D iniPoseGPS = iniPoseVehicle + GPSPosOnVehicle;
29 
30  printf(
31  "Pose: %.6f,%.6f,%.6f", iniPoseGPS.x(), iniPoseGPS.y(), iniPoseGPS.z());
32 }
33 // ------------------------------------------------------
34 // TestGeometry3D
35 // ------------------------------------------------------
36 void TestGeometry3D()
37 {
38  // The landmark (global) position: 3D (x,y,z)
39  CPoint3D L(0, 4, 2);
40 
41  // Robot pose: 2D (x,y,phi)
42  CPose2D R(2, 1, DEG2RAD(45.0f));
43 
44  // Camera pose relative to the robot: 6D (x,y,z,yaw,pitch,roll).
45  CPose3D C(0.5f, 0.5f, 1.5f, DEG2RAD(-90.0f), 0.0_deg, DEG2RAD(-90.0f));
46 
47  // TEST 1. Relative position L' of the landmark wrt the camera
48  // --------------------------------------------------------------
49  cout << "L: " << L << endl;
50  cout << "R: " << R << endl;
51  cout << "C: " << C << endl;
52  cout << "R+C:" << (R + C) << endl;
53  // cout << (R+C).getHomogeneousMatrix();
54 
55  CPoint3D L2;
56  CTicTac tictac;
57  tictac.Tic();
58  size_t i, N = 10000;
59  for (i = 0; i < N; i++) L2 = L - (R + C);
60  cout << "Computation in: " << 1e6 * tictac.Tac() / ((double)N) << " us"
61  << endl;
62 
63  cout << "L': " << L2 << endl;
64 
65  // TEST 2. Reconstruct the landmark position:
66  // --------------------------------------------------------------
67  CPoint3D L3 = R + C + L2;
68  cout << "R(+)C(+)L' = " << L3 << endl;
69  cout << "Should be equal to L = " << L << endl;
70 
71  // TEST 3. Distance from the camera to the landmark
72  // --------------------------------------------------------------
73  cout << "|(R(+)C)-L|= " << (R + C).distanceTo(L) << endl;
74  cout << "|L-(R(+)C)|= " << (R + C).distanceTo(L) << endl;
75 }
76 
77 // ------------------------------------------------------
78 // MAIN
79 // ------------------------------------------------------
80 int main()
81 {
82  try
83  {
85  // TestGeometry3D2();
86  return 0;
87  }
88  catch (exception& e)
89  {
90  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
91  return -1;
92  }
93  catch (...)
94  {
95  cerr << "Untyped excepcion!!";
96  return -1;
97  }
98 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
void TestGeometry3D()
A high-performance stopwatch, with typical resolution of nanoseconds.
STL namespace.
void TestGeometry3D2()
constexpr double DEG2RAD(const double x)
Degrees to radians.
double x() const
Common members of all points & poses classes.
Definition: CPoseOrPoint.h:143
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...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
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
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
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75



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