22 #include <Eigen/Dense> 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]);
48 const double x0[] = {1.8, 0.7, 0.9};
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};
58 const double dumm = 0;
69 for (
size_t i = 0; i < N; i++)
75 cout <<
"SUT: Time (ms): " << 1e3 * tictac.
Tac() / N << endl;
78 cout <<
" ======= Scaled Unscented Transform ======== " << endl;
79 cout <<
"y_mean: " << y_mean << endl;
80 cout <<
"y_cov: " << endl << y_cov << endl << endl;
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);
99 std::vector<CVectorFixedDouble<3>> MC_samples;
102 for (
size_t i = 0; i < N; i++)
111 cout <<
"MC: Time (ms): " << 1e3 * tictac.
Tac() / N << endl;
115 for (
int i = 0; i < 3; i++)
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);
128 cout <<
" ======= Montecarlo Transform ======== " << endl;
129 cout <<
"y_mean: " << y_mean << endl;
130 cout <<
"y_cov: " << endl << y_cov << endl;
139 for (
size_t i = 0; i < N; i++)
143 y_mean, y_cov, x_incrs);
145 cout <<
"LIN: Time (ms): " << 1e3 * tictac.
Tac() / N << endl;
148 cout <<
" ======= Linear Transform ======== " << endl;
149 cout <<
"y_mean: " << y_mean << endl;
150 cout <<
"y_cov: " << endl << y_cov << endl;
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);
162 "Comparison SUT (blue), Linear (red), MC (green)", 400, 300);
163 win.get3DSceneAndLock() = scene;
164 win.unlockAccess3DScene();
166 win.setCameraPointingToPoint(
167 d2f(y_mean[0]),
d2f(y_mean[1]),
d2f(y_mean[2]));
168 win.setCameraZoom(5.0);
173 for (
int i = 0; i < 3; i++)
176 format(
"MC-based histogram of the %i dim", i), 300, 150);
178 std::vector<double> X;
180 MC_y[i], MC_y[i].minCoeff(), MC_y[i].maxCoeff(), 40,
true, &X);
182 winHistos[i]->plot(X, H,
"b");
183 winHistos[i]->axis_fit();
188 cout << endl <<
"Press any key to exit" << endl;
203 for (
int i = 0; i < 6; i++) y[i] = p2[i];
218 for (
int i = 0; i < 7; i++) o.
cov(i, i) += 0.01;
220 o.
cov(0, 1) = o.
cov(1, 0) = 0.007;
222 cout <<
"p1quat: " << endl << o << endl;
228 static const bool elements_do_wrapPI[6] = {
229 false,
false,
false,
true,
true,
true};
231 static const double dummy = 0;
238 MC_y_mean, MC_y_cov, 500);
239 cout <<
"MC: " << endl
260 cout <<
"SUT: " << endl
280 catch (
const std::exception& e)
287 printf(
"Untyped exception!");
double Tac() noexcept
Stops the stopwatch.
static void aux_posequat2poseypr(const CVectorFixedDouble< 7 > &x, [[maybe_unused]] const double &dummy, CVectorFixedDouble< 6 > &y)
A compile-time fixed-size numeric matrix container.
std::string std::string format(std::string_view fmt, ARGS &&... args)
CPose3DQuat mean
The mean value.
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)
Declares a class that represents a Probability Density function (PDF) of a 3D pose using a quaternion...
void matProductOf_AAt(const MAT_A &A)
this = A * AT
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).
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.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
static Ptr Create(Args &&... args)
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...
Declares a class that represents a Probability Density function (PDF) of a 3D pose ...
static Ptr Create(Args &&... args)
A quaternion, which can represent a 3D rotation as pair , with a real part "r" and a 3D vector ...
void Tic() noexcept
Starts the stopwatch.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
static Ptr Create(Args &&... args)
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.