44 p1.
cov(0, 1) = 0.002f;
45 p1.
cov(1, 0) = 0.002f;
47 p1.
cov(2, 2) = 0.0002f;
51 p2.
cov(0, 1) = -0.004f;
52 p2.
cov(1, 0) = -0.004f;
54 p2.
cov(2, 2) = 0.0002f;
63 printf(
"Time for computing: %.04fus\n", tictac.
Tac() * 1e+6f / 10000);
65 printf(
"product p1,p2 -> %f\n", v);
72 cout <<
"Bayesian fusing of p1 & p2: " << endl;
73 cout <<
" MEAN: " << p.
mean <<
" COV:" << endl << p.
cov << endl;
88 CPose3D A(0, 0, 0), B(1, 1, 0, 45.0_deg, 0, 0), C;
92 cout <<
"A:\n" <<
A << endl;
93 cout <<
"B:\n" << B << endl;
94 cout <<
"C:\n" << C << endl;
102 CPose2D a(1, 2, (
float)0.0_deg);
103 CPose2D b(2, 3, (
float)45.0_deg);
106 CPose2D x(1, 0, (
float)0.0_deg);
107 CPose2D y(1, 0, (
float)45.0_deg);
109 cout <<
"a= " << a << endl;
110 cout <<
"b= " << b << endl;
115 printf(
"%f us\t", tictac.
Tac() * 1e6);
116 cout <<
"a+b= " << D << endl;
120 printf(
"%f us\t", tictac.
Tac() * 1e6);
121 cout <<
"b-a= " << D << endl;
125 printf(
"%f us\t", tictac.
Tac() * 1e6);
126 cout <<
"a + (b-a)= " << D << endl;
145 cout <<
"Pose[0] in seq.= " << D << endl;
147 cout <<
"Pose[1] in seq.= " << D << endl;
149 cout <<
"Pose[2] in seq.= " << D << endl;
166 cout <<
"MRPT exception caught: " << e.what() << endl;
171 printf(
"Untyped exception!!");
double Tac() noexcept
Stops the stopwatch.
This class stores a sequence of relative, incremental 2D poses.
CPoint3D mean
The mean value.
A high-performance stopwatch, with typical resolution of nanoseconds.
void getPose(unsigned int ind, CPose2D &outPose)
Reads the stored pose at index "ind", where the first one is 0, the last "posesCount() - 1"...
void bayesianFusion(const CPointPDFGaussian &p1, const CPointPDFGaussian &p2)
Bayesian fusion of two points gauss.
bool saveToTextFile(const std::string &file) const override
Save PDF's particles to a text file, containing the 2D pose in the first line, then the covariance ma...
constexpr double DEG2RAD(const double x)
Degrees to radians.
double productIntegralNormalizedWith(const CPointPDFGaussian &p) const
Computes the "correspondence likelihood" of this PDF with another one: This is implemented as the int...
mrpt::math::CMatrixDouble33 cov
The 3x3 covariance matrix.
void TestPosePDFOperations()
A class used to store a 3D point.
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...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
double productIntegralWith(const CPointPDFGaussian &p) const
Computes the "correspondence likelihood" of this PDF with another one: This is implemented as the int...
void TestPoseComposition()
void Tic() noexcept
Starts the stopwatch.
void appendPose(CPose2D &newPose)
Appends a new pose at the end of sequence.
A gaussian distribution for 3D points.
CPose2D absolutePoseAfterAll()
A shortcut for "absolutePoseOf( posesCount() )".