MRPT  1.9.9
CPose3DQuatPDFGaussianInf.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 "poses-precomp.h" // Precompiled headers
11 
12 #include <mrpt/math/CMatrixFixed.h> // for CMatrixF...
13 #include <mrpt/math/CQuaternion.h> // for CQuatern...
15 #include <mrpt/poses/CPose3D.h> // for CPose3D
16 #include <mrpt/poses/CPose3DQuat.h> // for CPose3DQuat
17 #include <mrpt/poses/CPose3DQuatPDF.h> // for CPose3DQ...
19 #include <mrpt/random/RandomGenerators.h> // for CRandomG...
20 #include <mrpt/serialization/CSerializable.h> // for CSeriali...
22 #include <mrpt/system/os.h> // for fopen
23 #include <Eigen/Dense>
24 #include <algorithm> // for move, max
25 #include <cstdio> // for size_t
26 #include <exception> // for exception
27 #include <new> // for operator...
28 #include <ostream> // for operator<<
29 #include <string> // for allocator
30 #include <vector> // for vector
31 
32 using namespace mrpt;
33 using namespace mrpt::system;
34 using namespace mrpt::poses;
35 using namespace mrpt::math;
36 using namespace mrpt::random;
37 using namespace std;
38 
40 
41 /** Default constructor - set all values to zero. */
43 // Un-initialized constructor:
44 CPose3DQuatPDFGaussianInf::CPose3DQuatPDFGaussianInf(
45  TConstructorFlags_Quaternions constructor_dummy_param)
47 {
48  MRPT_UNUSED_PARAM(constructor_dummy_param);
49 }
50 
51 /** Constructor from a default mean value, covariance equals to zero. */
53  const CPose3DQuat& init_Mean)
54  : mean(init_Mean), cov_inv()
55 {
56 }
57 
58 /** Constructor with mean and covariance. */
60  const CPose3DQuat& init_Mean, const CMatrixDouble77& init_CovInv)
61  : mean(init_Mean), cov_inv(init_CovInv)
62 {
63 }
64 
68 {
69  out << mean;
70 
71  for (int r = 0; r < cov_inv.rows(); r++) out << cov_inv(r, r);
72  for (int r = 0; r < cov_inv.rows(); r++)
73  for (int c = r + 1; c < cov_inv.cols(); c++) out << cov_inv(r, c);
74 }
76  mrpt::serialization::CArchive& in, uint8_t version)
77 {
78  switch (version)
79  {
80  case 0:
81  {
82  in >> mean;
83 
84  for (int r = 0; r < cov_inv.rows(); r++) in >> cov_inv(r, r);
85  for (int r = 0; r < cov_inv.rows(); r++)
86  for (int c = r + 1; c < cov_inv.cols(); c++)
87  {
88  double x;
89  in >> x;
90  cov_inv(r, c) = cov_inv(c, r) = x;
91  }
92  }
93  break;
94  default:
96  };
97 }
98 
100 {
101  if (this == &o) return; // It may be used sometimes
102 
103  // Convert to gaussian pdf:
105  o.getCovarianceAndMean(C, this->mean);
106  this->cov_inv = C.inverse_LLt();
107 }
108 
109 /*---------------------------------------------------------------
110  saveToTextFile
111  ---------------------------------------------------------------*/
112 bool CPose3DQuatPDFGaussianInf::saveToTextFile(const string& file) const
113 {
114  FILE* f = os::fopen(file.c_str(), "wt");
115  if (!f) return false;
116 
117  os::fprintf(
118  f, "%e %e %e %e %e %e %e\n", mean.x(), mean.y(), mean.z(),
119  mean.quat()[0], mean.quat()[1], mean.quat()[2], mean.quat()[3]);
120 
121  for (unsigned int i = 0; i < 7; i++)
122  os::fprintf(
123  f, "%e %e %e %e %e %e %e\n", cov_inv(i, 0), cov_inv(i, 1),
124  cov_inv(i, 2), cov_inv(i, 3), cov_inv(i, 4), cov_inv(i, 5),
125  cov_inv(i, 6));
126 
127  os::fclose(f);
128  return true;
129 }
130 
131 /*---------------------------------------------------------------
132  changeCoordinatesReference
133  ---------------------------------------------------------------*/
135  const CPose3D& newReferenceBase)
136 {
137  MRPT_START
138  changeCoordinatesReference(CPose3DQuat(newReferenceBase));
139  MRPT_END
140 }
141 
142 /*---------------------------------------------------------------
143  changeCoordinatesReference
144  ---------------------------------------------------------------*/
146  const CPose3DQuat& newReferenceBaseQuat)
147 {
148  MRPT_START
149 
150  // COV:
151  const CMatrixDouble77 OLD_COV = this->cov_inv.inverse_LLt();
152 
154 
156  newReferenceBaseQuat, // x
157  this->mean, // u
158  df_dx, df_du,
159  &this->mean // Output: newReferenceBaseQuat + this->mean;
160  );
161 
162  // this->cov = H1*this->cov*H1' + H2*Ap.cov*H2';
163  // df_dx: not used, since its COV are all zeros...
164 
165  this->cov_inv = mrpt::math::multiply_HCHt(df_du, OLD_COV).inverse_LLt();
166 
167  MRPT_END
168 }
169 
170 /*---------------------------------------------------------------
171  drawSingleSample
172  ---------------------------------------------------------------*/
174 {
175  MRPT_START
176  const CMatrixDouble77 COV = this->cov_inv.inverse_LLt();
177 
179  MRPT_END
180 }
181 
182 /*---------------------------------------------------------------
183  drawManySamples
184  ---------------------------------------------------------------*/
186  size_t N, vector<CVectorDouble>& outSamples) const
187 {
188  MRPT_START
189  const CMatrixDouble77 COV = this->cov_inv.inverse_LLt();
190 
191  getRandomGenerator().drawGaussianMultivariateMany(outSamples, N, COV);
192 
193  for (auto& outSample : outSamples)
194  for (unsigned int k = 0; k < 7; k++) outSample[k] += mean[k];
195 
196  MRPT_END
197 }
198 
199 /*---------------------------------------------------------------
200  inverse
201  ---------------------------------------------------------------*/
203 {
205  auto& out = dynamic_cast<CPose3DQuatPDFGaussianInf&>(o);
206 
207  // COV:
209  double lx, ly, lz;
210  mean.inverseComposePoint(0, 0, 0, lx, ly, lz, nullptr, &df_dpose);
211 
213  jacob.insertMatrix(0, 0, df_dpose);
214  jacob(3, 3) = 1;
215  jacob(4, 4) = -1;
216  jacob(5, 5) = -1;
217  jacob(6, 6) = -1;
218 
219  // C(0:2,0:2): H C H^t
220  const CMatrixDouble77 COV = this->cov_inv.inverse_LLt();
221  out.cov_inv = mrpt::math::multiply_HCHt(jacob, COV).inverse_LLt();
222 
223  // Mean:
224  out.mean.x(lx);
225  out.mean.y(ly);
226  out.mean.z(lz);
227  this->mean.quat().conj(out.mean.quat());
228 }
229 
230 /*---------------------------------------------------------------
231  +=
232  ---------------------------------------------------------------*/
234 {
235  // COV:
236  const CMatrixDouble77 OLD_COV = this->cov_inv.inverse_LLt();
237 
239 
241  this->mean, // x
242  Ap, // u
243  df_dx, df_du,
244  &this->mean // Output: this->mean + Ap;
245  );
246 
247  // this->cov = H1*this->cov*H1' + H2*Ap.cov*H2';
248  this->cov_inv = mrpt::math::multiply_HCHt(df_dx, OLD_COV).inverse_LLt();
249  // df_du: Nothing to do, since COV(Ap) = zeros
250 }
251 
252 /*---------------------------------------------------------------
253  +=
254  ---------------------------------------------------------------*/
256 {
257  // COV:
258  const CMatrixDouble77 OLD_COV = this->cov_inv.inverse_LLt();
259 
261 
263  this->mean, // x
264  Ap.mean, // u
265  df_dx, df_du,
266  &this->mean // Output: this->mean + Ap.mean;
267  );
268 
269  // this->cov = H1*this->cov*H1' + H2*Ap.cov*H2';
270  const CMatrixDouble77 Ap_cov = Ap.cov_inv.inverse_LLt();
271  CMatrixDouble77 NEW_COV = mrpt::math::multiply_HCHt(df_dx, OLD_COV) +
272  mrpt::math::multiply_HCHt(df_du, Ap_cov);
273 
274  this->cov_inv = NEW_COV.inverse_LLt();
275 }
276 
277 /*---------------------------------------------------------------
278  -=
279  ---------------------------------------------------------------*/
281 {
282  // THIS = THIS (-) Ap -->
283  // THIS = inverse(Ap) (+) THIS
284  CPose3DQuatPDFGaussianInf inv_Ap = -Ap;
285  *this = inv_Ap + *this;
286 }
287 
288 /*---------------------------------------------------------------
289  evaluatePDF
290  ---------------------------------------------------------------*/
292 {
294  CMatrixDouble71(x), CMatrixDouble71(this->mean), this->cov_inv);
295 }
296 
297 /*---------------------------------------------------------------
298  evaluateNormalizedPDF
299  ---------------------------------------------------------------*/
301  const CPose3DQuat& x) const
302 {
304  CMatrixDouble71(x), CMatrixDouble71(this->mean), this->cov_inv, true);
305 }
306 
307 /*---------------------------------------------------------------
308  operator <<
309  ---------------------------------------------------------------*/
311  ostream& out, const CPose3DQuatPDFGaussianInf& obj)
312 {
313  out << "Mean: " << obj.mean << "\n";
314  out << "Information:\n" << obj.cov_inv << "\n";
315  return out;
316 }
317 
320 {
321  return p1.mean == p2.mean && p1.cov_inv == p2.cov_inv;
322 }
323 
324 /** Pose composition for two 3D pose Gaussians \sa
325  * CPose3DQuatPDFGaussianInf::operator += */
328 {
330  res += u;
331  return res;
332 }
333 
334 /** Inverse pose composition for two 3D pose Gaussians \sa
335  * CPose3DQuatPDFGaussianInf::operator -= */
338 {
340  res -= u;
341  return res;
342 }
A namespace of pseudo-random numbers generators of diferent distributions.
void inverse(CPose3DQuatPDF &o) const override
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
mrpt::math::CQuaternionDouble & quat()
Read/Write access to the quaternion representing the 3D rotation.
Definition: CPose3DQuat.h:58
A compile-time fixed-size numeric matrix container.
Definition: CMatrixFixed.h:33
#define MRPT_START
Definition: exceptions.h:241
CMatrixFixed< double, 7, 1 > CMatrixDouble71
Definition: CMatrixFixed.h:379
TConstructorFlags_Quaternions
Definition: CQuaternion.h:20
int void fclose(FILE *f)
An OS-independent version of fclose.
Definition: os.cpp:275
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
To be added to all CSerializable-classes implementation files.
mrpt::math::TPoint2D operator+(const CPose2D &pose, const mrpt::math::TPoint2D &pnt)
Compose a 2D point from a new coordinate base given by a 2D pose.
Definition: CPose2D.cpp:394
Declares a class that represents a Probability Density function (PDF) of a 3D pose using a quaternion...
void copyFrom(const CPose3DQuatPDF &o) override
Copy operator, translating if necesary (for example, between particles and gaussian representations) ...
std::ostream & operator<<(std::ostream &o, const CPoint2D &p)
Dumps a point as a string (x,y)
Definition: CPoint2D.cpp:102
void insertMatrix(const int row_start, const int col_start, const OTHERMATVEC &submat)
Copies the given input submatrix/vector into this matrix/vector, starting at the given top-left coord...
Definition: MatrixBase.h:210
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
STL namespace.
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
double evaluateNormalizedPDF(const CPose3DQuat &x) const
Evaluates the ratio PDF(x) / PDF(MEAN), that is, the normalized PDF in the range [0,1].
void operator+=(const CPose3DQuat &Ap)
Makes: thisPDF = thisPDF + Ap, where "+" is pose composition (both the mean, and the covariance matri...
CPose3DQuatPDFGaussianInf()
Default constructor - set all values to zero.
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:97
mrpt::math::CMatrixDouble77 cov_inv
The 7x7 information matrix (the inverse of the covariance)
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
void changeCoordinatesReference(const CPose3DQuat &newReferenceBase)
this = p (+) this.
This base provides a set of functions for maths stuff.
void inverseComposePoint(const double gx, const double gy, const double gz, double &lx, double &ly, double &lz, mrpt::math::CMatrixFixed< double, 3, 3 > *out_jacobian_df_dpoint=nullptr, mrpt::math::CMatrixFixed< double, 3, 7 > *out_jacobian_df_dpose=nullptr) const
Computes the 3D point L such as .
#define CLASS_ID(T)
Access to runtime class ID for a defined class name.
Definition: CObject.h:102
void conj(CQuaternion &q_out) const
Return the conjugate quaternion.
Definition: CQuaternion.h:412
void drawGaussianMultivariateMany(VECTOR_OF_VECTORS &ret, size_t desiredSamples, const COVMATRIX &cov, const typename VECTOR_OF_VECTORS::value_type *mean=nullptr)
Generate a given number of multidimensional random samples according to a given covariance matrix...
CPose2D operator-(const CPose2D &p)
Unary - operator: return the inverse pose "-p" (Note that is NOT the same than a pose with negative x...
Definition: CPose2D.cpp:356
virtual const mrpt::rtti::TRuntimeClassId * GetRuntimeClass() const override
Returns information about the class of an object in runtime.
double x() const
Common members of all points & poses classes.
Definition: CPoseOrPoint.h:143
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
Derived inverse_LLt() const
Returns the inverse of a symmetric matrix using LLt.
bool saveToTextFile(const std::string &file) const override
Save the PDF to a text file, containing the 3D pose in the first line (x y z qr qx qy qz)...
double evaluatePDF(const CPose3DQuat &x) const
Evaluates the PDF at a given point.
MATRIXLIKE::Scalar normalPDFInf(const VECTORLIKE1 &x, const VECTORLIKE2 &mu, const MATRIXLIKE &cov_inv, const bool scaled_pdf=false)
Evaluates the multivariate normal (Gaussian) distribution at a given point "x".
Definition: distributions.h:38
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
constexpr size_type rows() const
Number of rows in the matrix.
Definition: CMatrixFixed.h:227
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
void drawManySamples(size_t N, std::vector< mrpt::math::CVectorDouble > &outSamples) const override
Draws a number of samples from the distribution, and saves as a list of 1x7 vectors, where each row contains a (x,y,z,qr,qx,qy,qz) datum.
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
Definition: os.cpp:410
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
bool operator==(const CPoint< DERIVEDCLASS, DIM > &p1, const CPoint< DERIVEDCLASS, DIM > &p2)
Definition: CPoint.h:119
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:54
void drawGaussianMultivariate(std::vector< T > &out_result, const MATRIX &cov, const std::vector< T > *mean=nullptr)
Generate multidimensional random samples according to a given covariance matrix.
void operator-=(const CPose3DQuatPDFGaussianInf &Ap)
Makes: thisPDF = thisPDF - Ap, where "-" is pose inverse composition (both the mean, and the covariance matrix are updated).
virtual std::tuple< cov_mat_t, type_value > getCovarianceAndMean() const =0
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean...
Declares a class that represents a Probability Density Function (PDF) of a 3D pose (6D actually)...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
mrpt::vision::TStereoCalibResults out
#define MRPT_END
Definition: exceptions.h:245
double mean(const CONTAINER &v)
Computes the mean value of a vector.
void drawSingleSample(CPose3DQuat &outPart) const override
Draws a single sample from the distribution.
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
Definition: os.cpp:257
constexpr size_type cols() const
Number of columns in the matrix.
Definition: CMatrixFixed.h:230
static void jacobiansPoseComposition(const CPose3DQuat &x, const CPose3DQuat &u, mrpt::math::CMatrixDouble77 &df_dx, mrpt::math::CMatrixDouble77 &df_du, CPose3DQuat *out_x_oplus_u=nullptr)
This static method computes the two Jacobians of a pose composition operation $f(x,u)= x u$.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.
Definition: common.h:186
void multiply_HCHt(const MAT_H &H, const MAT_C &C, MAT_R &R, bool accumResultInOutput=false)
R = H * C * H^t.
Definition: ops_matrices.h:28



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 3a26b90fd Wed Mar 25 20:17:03 2020 +0100 at miƩ mar 25 23:05:41 CET 2020