Main MRPT website > C++ reference for MRPT 1.9.9
CPose3DPDFParticles.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #ifndef CPose3DPDFParticles_H
10 #define CPose3DPDFParticles_H
11 
12 #include <mrpt/poses/CPose3DPDF.h>
15 
16 namespace mrpt
17 {
18 namespace poses
19 {
20 /** Declares a class that represents a Probability Density function (PDF) of a
21  * 3D pose
22  *
23  * This class is also the base for the implementation of Monte-Carlo
24  * Localization (MCL), in mrpt::slam::CMonteCarloLocalization2D.
25  *
26  * See the application "app/pf-localization" for an example of usage.
27  *
28  * \sa CPose3D, CPose3DPDF, CPoseGaussianPDF
29  * \ingroup poses_pdf_grp
30  */
32  : public CPose3DPDF,
33  public mrpt::bayes::CParticleFilterData<CPose3D>,
35  CPose3DPDFParticles,
36  mrpt::bayes::CParticleFilterData<CPose3D>::CParticleList>
37 {
39 
40  public:
41  /** Constructor
42  * \param M The number of m_particles.
43  */
44  CPose3DPDFParticles(size_t M = 1);
45 
46  /** Copy operator, translating if necesary (for example, between m_particles
47  * and gaussian representations) */
48  void copyFrom(const CPose3DPDF& o) override;
49 
50  /** Reset the PDF to a single point: All m_particles will be set exactly to
51  * the supplied pose.
52  * \param location The location to set all the m_particles.
53  * \param particlesCount If this is set to 0 the number of m_particles
54  * remains unchanged.
55  * \sa resetUniform, resetUniformFreeSpace */
56  void resetDeterministic(const CPose3D& location, size_t particlesCount = 0);
57 
58  /** Returns an estimate of the pose, (the mean, or mathematical expectation
59  * of the PDF), computed as a weighted average over all m_particles. \sa
60  * getCovariance */
61  void getMean(CPose3D& mean_pose) const override;
62  /** Returns an estimate of the pose covariance matrix (6x6 cov matrix) and
63  * the mean, both at once. \sa getMean */
65  mrpt::math::CMatrixDouble66& cov, CPose3D& mean_point) const override;
66 
67  /** Returns the pose of the i'th particle */
68  CPose3D getParticlePose(int i) const;
69 
70  /** Save PDF's m_particles to a text file. In each line it will go: "x y z"
71  */
72  void saveToTextFile(const std::string& file) const override;
73 
74  /** Get the m_particles count (equivalent to "particlesCount") */
75  size_t size() const { return m_particles.size(); }
76  /** this = p (+) this. This can be used to convert a PDF from local
77  * coordinates to global, providing the point (newReferenceBase) from which
78  * "to project" the current pdf. Result PDF substituted the currently
79  * stored one in the object. */
80  void changeCoordinatesReference(const CPose3D& newReferenceBase) override;
81  /** Draws a single sample from the distribution (WARNING: weights are
82  * assumed to be normalized!) */
83  void drawSingleSample(CPose3D& outPart) const override;
84  /** Draws a number of samples from the distribution, and saves as a list of
85  * 1x6 vectors, where each row contains a (x,y,phi) datum. */
86  void drawManySamples(
87  size_t N,
88  std::vector<mrpt::math::CVectorDouble>& outSamples) const override;
89  /** Appends (pose-composition) a given pose "p" to each particle */
90  void operator+=(const CPose3D& Ap);
91  /** Appends (add to the list) a set of m_particles to the existing ones, and
92  * then normalize weights. */
93  void append(CPose3DPDFParticles& o);
94  /** Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF */
95  void inverse(CPose3DPDF& o) const override;
96  /** Returns the particle with the highest weight. */
98  /** Bayesian fusion */
99  void bayesianFusion(const CPose3DPDF& p1, const CPose3DPDF& p2) override;
100 
101 }; // End of class def.
102 } // End of namespace
103 } // End of namespace
104 #endif
void getCovarianceAndMean(mrpt::math::CMatrixDouble66 &cov, CPose3D &mean_point) const override
Returns an estimate of the pose covariance matrix (6x6 cov matrix) and the mean, both at once...
GLint location
Definition: glext.h:4086
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 1x6 vectors, where each row contains a (x,y,phi) datum.
void append(CPose3DPDFParticles &o)
Appends (add to the list) a set of m_particles to the existing ones, and then normalize weights...
void getMean(CPose3D &mean_pose) const override
Returns an estimate of the pose, (the mean, or mathematical expectation of the PDF), computed as a weighted average over all m_particles.
CParticleList m_particles
The array of particles.
A numeric matrix of compile-time fixed size.
void operator+=(const CPose3D &Ap)
Appends (pose-composition) a given pose "p" to each particle.
CPose3DPDFParticles(size_t M=1)
Constructor.
CPose3D getParticlePose(int i) const
Returns the pose of the i&#39;th particle.
CPose3D getMostLikelyParticle() const
Returns the particle with the highest weight.
size_t size() const
Get the m_particles count (equivalent to "particlesCount")
GLsizei const GLchar ** string
Definition: glext.h:4101
This template class declares the array of particles and its internal data, managing some memory-relat...
void copyFrom(const CPose3DPDF &o) override
Copy operator, translating if necesary (for example, between m_particles and gaussian representations...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
#define DEFINE_SERIALIZABLE(class_name)
This declaration must be inserted in all CSerializable classes definition, within the class declarati...
void drawSingleSample(CPose3D &outPart) const override
Draws a single sample from the distribution (WARNING: weights are assumed to be normalized!) ...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:88
void resetDeterministic(const CPose3D &location, size_t particlesCount=0)
Reset the PDF to a single point: All m_particles will be set exactly to the supplied pose...
void bayesianFusion(const CPose3DPDF &p1, const CPose3DPDF &p2) override
Bayesian fusion.
void changeCoordinatesReference(const CPose3D &newReferenceBase) override
this = p (+) this.
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...
Definition: ops_matrices.h:148
void inverse(CPose3DPDF &o) const override
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
void saveToTextFile(const std::string &file) const override
Save PDF&#39;s m_particles to a text file.
Declares a class that represents a Probability Density Function (PDF) of a 3D pose (6D actually)...
Definition: CPose3DPDF.h:42
Declares a class that represents a Probability Density function (PDF) of a 3D pose.
A curiously recurring template pattern (CRTP) approach to providing the basic functionality of any CP...



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019