MRPT
2.0.1
|
A generic template for probability density distributions (PDFs).
This template is used as base for many classes in mrpt::poses Any derived class must implement getMean() and a getCovarianceAndMean(). Other methods such as getMean() or getCovariance() are implemented here for convenience.
Definition at line 27 of file CProbabilityDensityFunction.h.
#include <mrpt/math/CProbabilityDensityFunction.h>
Public Types | |
using | type_value = TDATA |
The type of the state the PDF represents. More... | |
using | self_t = CProbabilityDensityFunction< TDATA, STATE_LEN > |
using | cov_mat_t = mrpt::math::CMatrixFixed< double, STATE_LEN, STATE_LEN > |
Covariance matrix type. More... | |
using | inf_mat_t = cov_mat_t |
Information matrix type. More... | |
Public Member Functions | |
virtual void | getMean (type_value &mean_point) const =0 |
Returns the mean, or mathematical expectation of the probability density distribution (PDF). More... | |
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, both at once. More... | |
virtual void | getCovarianceAndMean (cov_mat_t &c, TDATA &mean) const final |
void | getCovarianceDynAndMean (mrpt::math::CMatrixDouble &cov, type_value &mean_point) const |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once. More... | |
type_value | getMeanVal () const |
Returns the mean, or mathematical expectation of the probability density distribution (PDF). More... | |
void | getCovariance (mrpt::math::CMatrixDouble &cov) const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
void | getCovariance (cov_mat_t &cov) const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
cov_mat_t | getCovariance () const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
virtual bool | isInfType () const |
Returns whether the class instance holds the uncertainty in covariance or information form. More... | |
virtual void | getInformationMatrix (inf_mat_t &inf) const |
Returns the information (inverse covariance) matrix (a STATE_LEN x STATE_LEN matrix) Unless reimplemented in derived classes, this method first reads the covariance, then invert it. More... | |
virtual bool | saveToTextFile (const std::string &file) const =0 |
Save PDF's particles to a text file. More... | |
virtual void | drawSingleSample (TDATA &outPart) const =0 |
Draws a single sample from the distribution. More... | |
virtual void | drawManySamples (size_t N, std::vector< mrpt::math::CVectorDouble > &outSamples) const |
Draws a number of samples from the distribution, and saves as a list of 1xSTATE_LEN vectors, where each row contains a (x,y,z,yaw,pitch,roll) datum. More... | |
double | getCovarianceEntropy () const |
Compute the entropy of the estimated covariance matrix. More... | |
Static Public Attributes | |
static constexpr size_t | state_length = STATE_LEN |
The length of the variable, for example, 3 for a 3D point, 6 for a 3D pose (x y z yaw pitch roll). More... | |
using mrpt::math::CProbabilityDensityFunction< TDATA, STATE_LEN >::cov_mat_t = mrpt::math::CMatrixFixed<double, STATE_LEN, STATE_LEN> |
Covariance matrix type.
Definition at line 37 of file CProbabilityDensityFunction.h.
using mrpt::math::CProbabilityDensityFunction< TDATA, STATE_LEN >::inf_mat_t = cov_mat_t |
Information matrix type.
Definition at line 39 of file CProbabilityDensityFunction.h.
using mrpt::math::CProbabilityDensityFunction< TDATA, STATE_LEN >::self_t = CProbabilityDensityFunction<TDATA, STATE_LEN> |
Definition at line 35 of file CProbabilityDensityFunction.h.
using mrpt::math::CProbabilityDensityFunction< TDATA, STATE_LEN >::type_value = TDATA |
The type of the state the PDF represents.
Definition at line 34 of file CProbabilityDensityFunction.h.
|
inlinevirtual |
Draws a number of samples from the distribution, and saves as a list of 1xSTATE_LEN vectors, where each row contains a (x,y,z,yaw,pitch,roll) datum.
This base method just call N times to drawSingleSample, but derived classes should implemented optimized method for each particular PDF.
Reimplemented in mrpt::poses::CPosePDFSOG, mrpt::poses::CPosePDFGaussianInf, mrpt::poses::CPose3DPDFGaussian, mrpt::poses::CPose3DPDFSOG, mrpt::poses::CPosePDFGaussian, mrpt::poses::CPose3DPDFGaussianInf, mrpt::poses::CPose3DQuatPDFGaussian, mrpt::poses::CPose3DQuatPDFGaussianInf, mrpt::poses::CPose3DPDFParticles, mrpt::poses::CPose3DPDFGrid, and mrpt::poses::CPosePDFGrid.
Definition at line 151 of file CProbabilityDensityFunction.h.
|
pure virtual |
Draws a single sample from the distribution.
Referenced by mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::drawManySamples().
|
inline |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 88 of file CProbabilityDensityFunction.h.
Referenced by mrpt::poses::CPosePDFGaussian::copyFrom(), mrpt::poses::CPosePDFGaussianInf::copyFrom(), mrpt::poses::CPosePDFSOG::copyFrom(), and mrpt::maps::CMultiMetricMapPDF::prediction_and_update_pfOptimalProposal().
|
inline |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 98 of file CProbabilityDensityFunction.h.
|
inline |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 108 of file CProbabilityDensityFunction.h.
Referenced by mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getCovarianceEntropy(), and mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getInformationMatrix().
|
pure virtual |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once.
Implemented in mrpt::poses::CPosePDFSOG, mrpt::poses::CPointPDFSOG, mrpt::poses::CPosePDFParticles, mrpt::maps::CBeacon, mrpt::poses::CPose3DPDFGaussian, mrpt::poses::CPose3DPDFGaussianInf, mrpt::poses::CPose3DQuatPDFGaussian, mrpt::poses::CPose3DPDFSOG, mrpt::poses::CPose3DPDFParticles, mrpt::poses::CPosePDFGaussianInf, mrpt::poses::CPose3DQuatPDFGaussianInf, mrpt::poses::CPosePDFGaussian, mrpt::poses::CPose3DPDFGrid, mrpt::poses::CPosePDFGrid, mrpt::poses::CPointPDFParticles, mrpt::poses::CPointPDFGaussian, and mrpt::poses::CPoint2DPDFGaussian.
Referenced by mrpt::poses::CPoint2DPDFGaussian::copyFrom(), mrpt::poses::CPointPDFGaussian::copyFrom(), mrpt::poses::CPose3DQuatPDFGaussianInf::copyFrom(), mrpt::poses::CPose3DQuatPDFGaussian::copyFrom(), mrpt::poses::CPose3DPDFSOG::copyFrom(), mrpt::poses::CPose3DPDFGaussianInf::copyFrom(), mrpt::poses::CPose3DPDFGaussian::copyFrom(), mrpt::poses::CPointPDFSOG::copyFrom(), mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getCovariance(), mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getCovarianceAndMean(), and mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getCovarianceDynAndMean().
|
inlinefinalvirtual |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Definition at line 54 of file CProbabilityDensityFunction.h.
|
inline |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once.
Definition at line 65 of file CProbabilityDensityFunction.h.
Referenced by mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getCovariance().
|
inline |
Compute the entropy of the estimated covariance matrix.
Definition at line 167 of file CProbabilityDensityFunction.h.
Referenced by mrpt::maps::CMultiMetricMapPDF::getCurrentEntropyOfPaths().
|
inlinevirtual |
Returns the information (inverse covariance) matrix (a STATE_LEN x STATE_LEN matrix) Unless reimplemented in derived classes, this method first reads the covariance, then invert it.
Definition at line 130 of file CProbabilityDensityFunction.h.
|
pure virtual |
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
Referenced by mrpt::poses::CPosePDFGaussian::copyFrom(), mrpt::poses::CPosePDFGaussianInf::copyFrom(), mrpt::poses::CPosePDFSOG::copyFrom(), and mrpt::math::CProbabilityDensityFunction< CPose2D, 3 >::getMeanVal().
|
inline |
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
Definition at line 77 of file CProbabilityDensityFunction.h.
Referenced by mrpt::poses::CPosePDFGaussian::copyFrom(), mrpt::poses::CPosePDFGaussianInf::copyFrom(), mrpt::slam::CMetricMapBuilderICP::initialize(), mrpt::slam::CMetricMapBuilderRBPF::initialize(), mrpt::slam::CMetricMapBuilderICP::processObservation(), and TEST().
|
inlinevirtual |
Returns whether the class instance holds the uncertainty in covariance or information form.
Reimplemented in mrpt::poses::CPose3DPDFGaussianInf, mrpt::poses::CPosePDFGaussianInf, and mrpt::poses::CPose3DQuatPDFGaussianInf.
Definition at line 123 of file CProbabilityDensityFunction.h.
|
pure virtual |
Save PDF's particles to a text file.
See derived classes for more information about the format of generated files.
Implemented in mrpt::poses::CPosePDFSOG, mrpt::poses::CPointPDFSOG, mrpt::poses::CPose3DPDFGaussian, mrpt::poses::CPosePDFParticles, mrpt::poses::CPose3DPDFSOG, mrpt::poses::CPose3DPDFGaussianInf, mrpt::poses::CPose3DQuatPDFGaussian, mrpt::poses::CPosePDFGaussianInf, mrpt::maps::CBeacon, mrpt::poses::CPose3DQuatPDFGaussianInf, mrpt::poses::CPose3DPDFParticles, mrpt::poses::CPosePDFGaussian, mrpt::poses::CPose3DPDFGrid, mrpt::poses::CPointPDFParticles, mrpt::poses::CPosePDFGrid, mrpt::poses::CPointPDFGaussian, and mrpt::poses::CPoint2DPDFGaussian.
|
static |
The length of the variable, for example, 3 for a 3D point, 6 for a 3D pose (x y z yaw pitch roll).
Definition at line 32 of file CProbabilityDensityFunction.h.
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |