Go to the documentation of this file.
45 :
mean(init_Mean),
cov(init_Cov)
80 cov = m.cast<
double>();
87 cov = auxCov.cast<
double>();
100 if (
this == &o)
return;
118 C(2, 0) = C(0, 2) = C(0, 3);
119 C(2, 1) = C(1, 2) = C(1, 3);
121 cov = C.block(0, 0, 3, 3);
130 if (!f)
return false;
146 const CPose3D& newReferenceBase_)
161 const CPose2D& newReferenceBase)
174 const double ccos = cos(ang);
175 const double ssin = sin(ang);
178 const double rot_vals[] = {ccos, -ssin, 0., ssin, ccos, 0., 0., 0., 1.};
181 cov = (rot *
cov * rot.adjoint()).eval();
202 cov.saveToTextFile(
"__DEBUG_EXC_DUMP_drawSingleSample_COV.txt"););
209 size_t N, std::vector<CVectorDouble>& outSamples)
const
213 std::vector<CVectorDouble> rndSamples;
216 outSamples.resize(N);
217 for (
unsigned int i = 0; i < N; i++)
219 outSamples[i].resize(3);
220 outSamples[i][0] =
mean.
x() + rndSamples[i][0];
221 outSamples[i][1] =
mean.
y() + rndSamples[i][1];
222 outSamples[i][2] =
mean.
phi() + rndSamples[i][2];
235 const double minMahalanobisDistToDrop)
285 const double ccos = ::cos(
mean.
phi());
286 const double ssin = ::sin(
mean.
phi());
290 -ccos, -ssin,
mean.
x() * ssin -
mean.
y() * ccos,
291 ssin, -ccos,
mean.
x() * ccos +
mean.
y() * ssin,
296 (H *
cov * H.adjoint()).eval();
355 if (MU[0] == 0 && MU[1] == 0 && MU[2] == 0)
360 COV_ += theOther.
cov;
363 COV_.inv_fast(COV_inv);
377 out <<
"Mean: " <<
obj.mean <<
"\n";
378 out <<
"Covariance:\n" <<
obj.cov <<
"\n";
398 const double& minStdXY,
const double& minStdPhi)
414 double cpi = cos(xi.
mean.
phi());
415 double spi = sin(xi.
mean.
phi());
434 dh_xi(0, 2) = -xv_xi * spi + yv_yi * cpi;
437 dh_xi(1, 2) = -xv_xi * cpi - yv_yi * spi;
442 dh_xv.multiply_HCHt(xv.
cov, this->cov);
443 dh_xi.multiply_HCHt(xi.
cov, this->cov,
true);
459 double cp0 = cos(x0.
mean.
phi());
460 double sp0 = sin(x0.
mean.
phi());
479 dh_x0(0, 2) = -xv_xi * sp0 + yv_yi * cp0;
482 dh_x0(1, 2) = -xv_xi * cp0 - yv_yi * sp0;
488 dh_x0.multiply_HCHt(x0.
cov, this->cov);
489 dh_x1.multiply_HCHt(x1.
cov, this->cov,
true);
492 M.multiply_ABCt(dh_x0, COV_01, dh_x1);
494 this->
cov.add_AAt(M);
515 df_dx.multiply_HCHt(OLD_COV,
cov);
516 df_du.multiply_HCHt(Ap.
cov,
cov,
true);
544 g.cov = dp_dx * this->
cov * dp_dx.transpose();
565 res.inverseComposition(
a,
b);
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...
void drawSingleSample(CPose2D &outPart) const override
Draws a single sample from the distribution.
void normalizePhi()
Forces "phi" to be in the range [-pi,pi];.
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 1x3 vectors,...
void bayesianFusion(const CPosePDF &p1, const CPosePDF &p2, const double minMahalanobisDistToDrop=0) override
Bayesian fusion of two points gauss.
int void fclose(FILE *f)
An OS-independent version of fclose.
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction.
void copyFrom(const CPosePDF &o) override
Copy operator, translating if necesary (for example, between particles and gaussian representations)
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
#define MRPT_END_WITH_CLEAN_UP(stuff)
void composeFrom(const CPose2D &A, const CPose2D &B)
Makes .
const double & phi() const
Get the phi angle of the 2D pose (in radians)
Declares a class that represents a Probability Density Function (PDF) of a 3D pose (6D actually).
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.
mrpt::math::CMatrixDouble33 cov
The 3x3 covariance matrix.
void composePoint(const mrpt::math::TPoint2D &l, CPoint2DPDFGaussian &g) const
Returns the PDF of the 2D point with "q"=this pose and "l" a point without uncertainty.
GLsizei GLsizei GLuint * obj
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.
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.
TDATA getMeanVal() const
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
static void jacobiansPoseComposition(const CPose2D &x, const CPose2D &u, mrpt::math::CMatrixDouble33 &df_dx, mrpt::math::CMatrixDouble33 &df_du, const bool compute_df_dx=true, const bool compute_df_du=true)
This static method computes the pose composition Jacobians, with these formulas:
void serializeSymmetricMatrixTo(MAT &m, mrpt::serialization::CArchive &out)
Binary serialization of symmetric matrices, saving the space of duplicated values.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
double mahalanobisDistanceTo(const CPosePDFGaussian &theOther)
Computes the Mahalanobis distance between the centers of two Gaussians.
void assureSymmetry()
Assures the symmetry of the covariance matrix (eventually certain operations in the math-coprocessor ...
#define ASSERT_(f)
Defines an assertion mechanism.
T square(const T x)
Inline function for the square of a number.
CPose2D operator-(const CPose2D &p)
Unary - operator: return the inverse pose "-p" (Note that is NOT the same than a pose with negative x...
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void wrapToPiInPlace(T &a)
Modifies the given angle to translate it into the ]-pi,pi] range.
void composePoint(double lx, double ly, double &gx, double &gy) const
An alternative, slightly more efficient way of doing with G and L being 2D points and P this 2D pose...
Eigen::Matrix< typename MATRIX::Scalar, MATRIX::ColsAtCompileTime, MATRIX::ColsAtCompileTime > cov(const MATRIX &v)
Computes the covariance matrix from a list of samples in an NxM matrix, where each row is a sample,...
Virtual base class for "archives": classes abstracting I/O streams.
double normalPDF(double x, double mu, double std)
Evaluates the univariate normal (Gaussian) distribution at a given point "x".
CPose2D mean
The mean value.
void inverseComposition(const CPosePDFGaussian &x, const CPosePDFGaussian &ref)
Set , computing the mean using the "-" operator and the covariances through the corresponding Jacobi...
void changeCoordinatesReference(const CPose3D &newReferenceBase) override
this = p (+) this.
This class is a "CSerializable" wrapper for "CMatrixFloat".
void rotateCov(const double ang)
Rotate the covariance matrix by replacing it by , where .
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
double x() const
Common members of all points & poses classes.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
void operator+=(const CPose2D &Ap)
Makes: thisPDF = thisPDF + Ap, where "+" is pose composition (both the mean, and the covariance matri...
void deserializeSymmetricMatrixFrom(MAT &m, mrpt::serialization::CArchive &in)
Binary serialization of symmetric matrices, saving the space of duplicated values.
CPosePDFGaussian()
Default constructor.
CArrayNumeric is an array for numeric types supporting several mathematical operations (actually,...
A gaussian distribution for 2D points.
double evaluateNormalizedPDF(const CPose2D &x) const
Evaluates the ratio PDF(x) / PDF(MEAN), that is, the normalized PDF in the range [0,...
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
This must be inserted in all CSerializable classes implementation files.
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.
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
virtual void getMean(TDATA &mean_point) const =0
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
Declares a class that represents a probability density function (pdf) of a 2D pose (x,...
void assureMinCovariance(const double &minStdXY, const double &minStdPhi)
Substitutes the diagonal elements if (square) they are below some given minimum values (Use this befo...
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
#define CLASS_ID(T)
Access to runtime class ID for a defined class name.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
bool operator==(const CPoint< DERIVEDCLASS > &p1, const CPoint< DERIVEDCLASS > &p2)
MAT_C::Scalar multiply_HCHt_scalar(const VECTOR_H &H, const MAT_C &C)
r (a scalar) = H * C * H^t (with a vector H and a symmetric matrix C)
EIGEN_STRONG_INLINE double mean() const
Computes the mean of the entire matrix.
This base provides a set of functions for maths stuff.
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
void inverse(CPosePDF &o) const override
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
GLsizei const GLchar ** string
std::ostream & operator<<(std::ostream &o, const CPoint< DERIVEDCLASS > &p)
Dumps a point as a string [x,y] or [x,y,z]
A namespace of pseudo-random numbers generators of diferent distributions.
void getCovariance(mrpt::math::CMatrixDouble &cov) const
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Declares a class that represents a Probability Density function (PDF) of a 2D pose .
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
#define MRPT_MAX_ALIGN_BYTES
CMatrixFixedNumeric< double, 3, 1 > CMatrixDouble31
double evaluatePDF(const CPose2D &x) const
Evaluates the PDF at a given point.
This namespace provides a OS-independent interface to many useful functions: filenames manipulation,...
GLubyte GLubyte GLubyte a
virtual const mrpt::rtti::TRuntimeClassId * GetRuntimeClass() const override
Returns information about the class of an object in runtime.
Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST | |