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 
12 #include <mrpt/math/CVectorFixed.h>
14 #include <mrpt/math/utils.h>
17 #include <mrpt/poses/CPose3D.h>
19 #include <mrpt/poses/CPose3DQuat.h>
21 #include <mrpt/system/CTicTac.h>
22 #include <Eigen/Dense>
23 #include <iostream>
24 
25 using namespace mrpt;
26 using namespace mrpt::math;
27 using namespace mrpt::poses;
28 using namespace mrpt::system;
29 using namespace std;
30 
31 // Example non-linear function for SUT
32 // f: R^5 => R^3
33 void myFun1(
34  const CVectorFixedDouble<3>& x, const double& user_param,
36 {
37  y[0] = cos(x[0]) * exp(x[1]) + x[0];
38  y[1] = x[1] / (1 + square(x[0]));
39  y[2] = x[2] / (1 + square(x[2])) + sin(x[1] * x[0]);
40 }
41 
42 /* ------------------------------------------------------------------------
43  Test_SUT: Scaled Unscented Transform
44  ------------------------------------------------------------------------ */
45 void Test_SUT()
46 {
47  // Inputs:
48  const double x0[] = {1.8, 0.7, 0.9};
49  // clang-format off
50  const double x0cov[] = {
51  0.049400, 0.011403, -0.006389,
52  0.011403, 0.026432, 0.005382,
53  -0.006389, 0.005382, 0.063268};
54  // clang-format on
55 
56  const CVectorFixedDouble<3> x_mean(x0);
57  const CMatrixFixed<double, 3, 3> x_cov(x0cov);
58  const double dumm = 0;
59 
60  // Outputs:
61  CVectorFixedDouble<3> y_mean;
62  CMatrixDouble33 y_cov;
63 
64  // Do SUT:
65  CTicTac tictac;
66  size_t N = 10000;
67 
68  tictac.Tic();
69  for (size_t i = 0; i < N; i++)
71  x_mean, x_cov, myFun1,
72  dumm, // fixed parameter: not used in this example
73  y_mean, y_cov);
74 
75  cout << "SUT: Time (ms): " << 1e3 * tictac.Tac() / N << endl;
76 
77  // Print:
78  cout << " ======= Scaled Unscented Transform ======== " << endl;
79  cout << "y_mean: " << y_mean << endl;
80  cout << "y_cov: " << endl << y_cov << endl << endl;
81 
82  // 3D view:
85  scene->insert(opengl::CGridPlaneXY::Create(-10, 10, -10, 10, 0, 1));
86 
87  {
89  el->enableDrawSolid3D(false);
90  el->setLocation(y_mean[0], y_mean[1], y_mean[2]);
91  el->setCovMatrix(y_cov);
92  el->setColor(0, 0, 1);
93  scene->insert(el);
94  }
95 
96  // Do Montecarlo for comparison:
97  N = 10;
98 
99  std::vector<CVectorFixedDouble<3>> MC_samples;
100 
101  tictac.Tic();
102  for (size_t i = 0; i < N; i++)
104  x_mean, x_cov, myFun1,
105  dumm, // fixed parameter: not used in this example
106  y_mean, y_cov,
107  5e5, // Samples
108  &MC_samples // we want the samples.
109  );
110 
111  cout << "MC: Time (ms): " << 1e3 * tictac.Tac() / N << endl;
112 
113  CVectorDouble MC_y[3];
114 
115  for (int i = 0; i < 3; i++)
116  extractColumnFromVectorOfVectors(i, MC_samples, MC_y[i]);
117 
118  {
119  auto el = opengl::CEllipsoid3D::Create();
120  el->enableDrawSolid3D(false);
121  el->setLocation(y_mean[0], y_mean[1], y_mean[2]);
122  el->setCovMatrix(y_cov);
123  el->setColor(0, 1, 0);
124  scene->insert(el);
125  }
126 
127  // Print:
128  cout << " ======= Montecarlo Transform ======== " << endl;
129  cout << "y_mean: " << y_mean << endl;
130  cout << "y_cov: " << endl << y_cov << endl;
131 
132  // Do Linear for comparison:
133  N = 100;
134 
135  CVectorFixedDouble<3> x_incrs;
136  x_incrs.fill(1e-6);
137 
138  tictac.Tic();
139  for (size_t i = 0; i < N; i++)
141  x_mean, x_cov, myFun1,
142  dumm, // fixed parameter: not used in this example
143  y_mean, y_cov, x_incrs);
144 
145  cout << "LIN: Time (ms): " << 1e3 * tictac.Tac() / N << endl;
146 
147  // Print:
148  cout << " ======= Linear Transform ======== " << endl;
149  cout << "y_mean: " << y_mean << endl;
150  cout << "y_cov: " << endl << y_cov << endl;
151 
152  {
153  auto el = opengl::CEllipsoid3D::Create();
154  el->enableDrawSolid3D(false);
155  el->setLocation(y_mean[0], y_mean[1], y_mean[2]);
156  el->setCovMatrix(y_cov);
157  el->setColor(1, 0, 0);
158  scene->insert(el);
159  }
160 
162  "Comparison SUT (blue), Linear (red), MC (green)", 400, 300);
163  win.get3DSceneAndLock() = scene;
164  win.unlockAccess3DScene();
165 
166  win.setCameraPointingToPoint(
167  d2f(y_mean[0]), d2f(y_mean[1]), d2f(y_mean[2]));
168  win.setCameraZoom(5.0);
169 
170  // MC-based histograms:
172 
173  for (int i = 0; i < 3; i++)
174  {
176  format("MC-based histogram of the %i dim", i), 300, 150);
177 
178  std::vector<double> X;
179  std::vector<double> H = mrpt::math::histogram(
180  MC_y[i], MC_y[i].minCoeff(), MC_y[i].maxCoeff(), 40, true, &X);
181 
182  winHistos[i]->plot(X, H, "b");
183  winHistos[i]->axis_fit();
184  }
185 
186  win.forceRepaint();
187 
188  cout << endl << "Press any key to exit" << endl;
189  win.waitForKey();
190 }
191 
192 // Calibration of SUT parameters for Quat -> 3D pose
193 // -----------------------------------------------------------
194 
195 static void aux_posequat2poseypr(
196  const CVectorFixedDouble<7>& x, const double& dummy,
198 {
199  const CPose3DQuat p(
200  x[0], x[1], x[2],
201  mrpt::math::CQuaternionDouble(x[3], x[4], x[5], x[6]));
202  const CPose3D p2 = CPose3D(p);
203  for (int i = 0; i < 6; i++) y[i] = p2[i];
204  // cout << "p2: " << y[3] << endl;
205 }
206 
208 {
209  // Take a 7x7 representation:
211  o.mean = CPose3DQuat(CPose3D(1.0, 2.0, 3.0, -30.0_deg, 10.0_deg, 60.0_deg));
212  // o.mean = CPose3D(1.0,2.0,3.0, 00.0_deg,90.0_deg,0.0_deg);
213 
216  v *= 1e-3;
217  o.cov.matProductOf_AAt(v); // COV = v*vt
218  for (int i = 0; i < 7; i++) o.cov(i, i) += 0.01;
219 
220  o.cov(0, 1) = o.cov(1, 0) = 0.007;
221 
222  cout << "p1quat: " << endl << o << endl;
223 
224  // Use UT transformation:
225  // f: R^7 => R^6
226  const CVectorFixedDouble<7> x_mean(o.mean);
227  CVectorFixedDouble<6> y_mean;
228  static const bool elements_do_wrapPI[6] = {
229  false, false, false, true, true, true}; // xyz yaw pitch roll
230 
231  static const double dummy = 0;
232  // MonteCarlo:
233  CVectorFixedDouble<6> MC_y_mean;
234  CMatrixDouble66 MC_y_cov;
236  x_mean, o.cov, aux_posequat2poseypr,
237  dummy, // fixed parameter: not used in this example
238  MC_y_mean, MC_y_cov, 500);
239  cout << "MC: " << endl
240  << MC_y_mean << endl
241  << endl
242  << MC_y_cov << endl
243  << endl;
244 
245  // SUT:
246 
247  CPose3DPDFGaussian p_ypr;
248 
249  // double = 1e-3;
250  // alpha = x_mean.size()-3;
251 
253  x_mean, o.cov, aux_posequat2poseypr, dummy, y_mean, p_ypr.cov,
254  elements_do_wrapPI,
255  1e-3, // alpha
256  0, // K
257  2.0 // beta
258  );
259 
260  cout << "SUT: " << endl
261  << y_mean << endl
262  << endl
263  << p_ypr.cov << endl
264  << endl;
265 }
266 
267 // ------------------------------------------------------
268 // MAIN
269 // ------------------------------------------------------
270 int main(int argc, char** argv)
271 {
272  try
273  {
274  Test_SUT();
275 
276  // TestCalibrate_pose2quat();
277 
278  return 0;
279  }
280  catch (const std::exception& e)
281  {
282  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
283  return -1;
284  }
285  catch (...)
286  {
287  printf("Untyped exception!");
288  return -1;
289  }
290 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
static void aux_posequat2poseypr(const CVectorFixedDouble< 7 > &x, [[maybe_unused]] const double &dummy, CVectorFixedDouble< 6 > &y)
A compile-time fixed-size numeric matrix container.
Definition: CMatrixFixed.h:33
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
void drawGaussian1DMatrix(MAT &matrix, const double mean=0, const double std=1)
Fills the given matrix with independent, 1D-normally distributed samples.
A high-performance stopwatch, with typical resolution of nanoseconds.
mrpt::math::CMatrixDouble77 cov
The 7x7 covariance matrix.
void myFun1(const CVectorFixedDouble< 3 > &x, const double &user_param, CVectorFixedDouble< 3 > &y)
STL namespace.
Declares a class that represents a Probability Density function (PDF) of a 3D pose using a quaternion...
void transform_gaussian_montecarlo(const VECTORLIKE1 &x_mean, const MATLIKE1 &x_cov, void(*functor)(const VECTORLIKE1 &x, const USERPARAM &fixed_param, VECTORLIKE3 &y), const USERPARAM &fixed_param, VECTORLIKE2 &y_mean, MATLIKE2 &y_cov, const size_t num_samples=1000, std::vector< VECTORLIKE3 > *out_samples_y=nullptr)
Simple Montecarlo-base estimation of the Gaussian distribution of a variable Y=f(X) for an arbitrary ...
void matProductOf_AAt(const MAT_A &A)
this = A * AT
Definition: MatrixBase.h:276
float d2f(const double d)
shortcut for static_cast<float>(double)
void TestCalibrate_pose2quat()
This base provides a set of functions for maths stuff.
A class used to store a 3D pose as a translation (x,y,z) and a quaternion (qr,qx,qy,qz).
Definition: CPose3DQuat.h:45
void transform_gaussian_linear(const VECTORLIKE1 &x_mean, const MATLIKE1 &x_cov, void(*functor)(const VECTORLIKE1 &x, const USERPARAM &fixed_param, VECTORLIKE3 &y), const USERPARAM &fixed_param, VECTORLIKE2 &y_mean, MATLIKE2 &y_cov, const VECTORLIKE1 &x_increments)
First order uncertainty propagation estimator of the Gaussian distribution of a variable Y=f(X) for a...
void transform_gaussian_unscented(const VECTORLIKE1 &x_mean, const MATLIKE1 &x_cov, void(*functor)(const VECTORLIKE1 &x, const USERPARAM &fixed_param, VECTORLIKE3 &y), const USERPARAM &fixed_param, VECTORLIKE2 &y_mean, MATLIKE2 &y_cov, const bool *elem_do_wrap2pi=nullptr, const double alpha=1e-3, const double K=0, const double beta=2.0)
Scaled unscented transformation (SUT) for estimating the Gaussian distribution of a variable Y=f(X) f...
mrpt::gui::CDisplayWindow3D::Ptr win
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
mrpt::math::CMatrixDouble66 cov
The 6x6 covariance matrix.
return_t square(const num_t x)
Inline function for the square of a number.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
static Ptr Create(Args &&... args)
Definition: CEllipsoid3D.h:42
void extractColumnFromVectorOfVectors(const size_t colIndex, const VECTOR_OF_VECTORS &data, VECTORLIKE &out_column)
Extract a column from a vector of vectors, and store it in another vector.
static CDisplayWindowPlots::Ptr Create(const std::string &windowCaption, unsigned int initialWindowWidth=400, unsigned int initialWindowHeight=300)
Class factory returning a smart pointer.
std::vector< double > histogram(const CONTAINER &v, double limit_min, double limit_max, size_t number_bins, bool do_normalization=false, std::vector< double > *out_bin_centers=nullptr)
Computes the normalized or normal histogram of a sequence of numbers given the number of bins and the...
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
Declares a class that represents a Probability Density function (PDF) of a 3D pose ...
static Ptr Create(Args &&... args)
Definition: COpenGLScene.h:58
const int argc
A quaternion, which can represent a 3D rotation as pair , with a real part "r" and a 3D vector ...
Definition: CQuaternion.h:44
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.
static Ptr Create(Args &&... args)
Definition: CGridPlaneXY.h:31
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