64 const double w = exp(it->log_w);
71 p.setFromValues(0,0,0,0,0,0);
80 size_t N = m_modes.size();
96 sumW +=
w = exp((it)->log_w);
98 MMt.multiply_AAt(estMean_i);
105 estCov *= (1.0/sumW);
125 out << (it)->
val.mean;
126 out << (it)->val.cov;
146 for (
iterator it=m_modes.begin();it!=m_modes.end();++it)
151 if (
version==0) (it)->log_w = log(max(1e-300,(it)->log_w));
153 in >> (it)->
val.mean;
176 if (
this == &o)
return;
185 m_modes[0].log_w = 0;
188 m_modes[0].val.cov = C;
206 (it)->
val.mean.x(), (it)->
val.mean.y(), (it)->
val.mean.z(),
207 (it)->
val.cov(0,0),(it)->
val.cov(1,1),(it)->
val.cov(2,2),
208 (it)->
val.cov(0,1),(it)->
val.cov(0,2),(it)->
val.cov(1,2) );
217 for (
iterator it=m_modes.begin();it!=m_modes.end();++it)
218 (it)->val.changeCoordinatesReference( newReferenceBase );
310 for (
iterator it=m_modes.begin();it!=m_modes.end();++it)
312 for (
size_t i=0;i<6;i++)
313 for (
size_t j=i+1;j<6;j++)
314 (it)->val.cov.get_unsafe(i,j) = (it)->
val.cov.get_unsafe(j,i);
327 if (m_modes.empty())
return;
329 double maxW = m_modes[0].log_w;
330 for (
iterator it=m_modes.begin();it!=m_modes.end();++it)
331 maxW = max(maxW,(it)->log_w);
333 for (
iterator it=m_modes.begin();it!=m_modes.end();++it)
367 out->
resize(m_modes.size());
372 for (it=m_modes.begin(),outIt=out->m_modes.begin();it!=m_modes.end();it++,outIt++)
374 (it)->
val.inverse( (outIt)->val );
375 (outIt)->log_w = (it)->log_w;
394 m_modes.push_back( *it );
414 if (it_best==m_modes.end() || it->log_w>it_best->log_w)
417 outVal = it_best->val;
FILE BASE_IMPEXP * fopen(const char *fileName, const char *mode) MRPT_NO_THROWS
An OS-independent version of fopen.
EIGEN_STRONG_INLINE bool empty() const
void append(const mrpt::poses::CPose3D &p)
Adds a new pose to the computation.
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
This namespace provides a OS-independent interface to many useful functions: filenames manipulation...
TModesList::iterator iterator
int BASE_IMPEXP void BASE_IMPEXP fclose(FILE *f)
An OS-independent version of fclose.
void getMostLikelyMode(CPose3DPDFGaussian &outVal) const
Return the Gaussian mode with the highest likelihood (or an empty Gaussian if there are no modes in t...
void appendFrom(const CPose3DPDFSOG &o)
Append the Gaussian modes from "o" to the current set of modes of "this" density. ...
#define THROW_EXCEPTION(msg)
void getCovarianceAndMean(mrpt::math::CMatrixDouble66 &cov, CPose3D &mean_point) const MRPT_OVERRIDE
Returns an estimate of the pose covariance matrix (6x6 cov matrix) and the mean, both at once...
Declares a class that represents a Probability Density function (PDF) of a 3D(6D) pose ...
int BASE_IMPEXP fprintf(FILE *fil, const char *format,...) MRPT_NO_THROWS MRPT_printf_format_check(2
An OS-independent version of fprintf.
void copyFrom(const CPose3DPDF &o) MRPT_OVERRIDE
Copy operator, translating if necesary (for example, between particles and gaussian representations) ...
IMPLEMENTS_SERIALIZABLE(CLogFileRecord_FullEval, CHolonomicLogFileRecord, mrpt::nav) IMPLEMENTS_SERIALIZABLE(CHolonomicFullEval
GLubyte GLubyte GLubyte GLubyte w
void normalizeWeights()
Normalize the weights in m_modes such as the maximum log-weight is 0.
void readFromStream(mrpt::utils::CStream &in, int version)
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly...
This base class is used to provide a unified interface to files,memory buffers,..Please see the deriv...
A numeric matrix of compile-time fixed size.
This base provides a set of functions for maths stuff.
#define MRPT_UNUSED_PARAM(a)
Can be used to avoid "not used parameters" warnings from the compiler.
void writeToStream(mrpt::utils::CStream &out, int *getVersion) const
Introduces a pure virtual method responsible for writing to a CStream.
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
TModesList m_modes
Access directly to this array for modify the modes as desired.
TModesList::const_iterator const_iterator
void inverse(CPose3DPDF &o) const MRPT_OVERRIDE
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
void bayesianFusion(const CPose3DPDF &p1, const CPose3DPDF &p2) MRPT_OVERRIDE
Bayesian fusion of two pose distributions, then save the result in this object (WARNING: Currently p1...
void saveToTextFile(const std::string &file) const MRPT_OVERRIDE
Save the density to a text file, with the following format: There is one row per Gaussian "mode"...
GLsizei const GLchar ** string
void changeCoordinatesReference(const CPose3D &newReferenceBase) MRPT_OVERRIDE
this = p (+) this.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
#define CLASS_ID(class_name)
Access to runtime class ID for a defined class name.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Computes weighted and un-weighted averages of SE(3) poses.
void get_average(mrpt::poses::CPose3D &out_mean) const
Returns the average pose.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
void clear()
Clear all the gaussian modes.
This file implements matrix/vector text and binary serialization.
Declares a class that represents a Probability Density function (PDF) of a 3D pose ...
void assureSymmetry()
Assures the symmetry of the covariance matrix (eventually certain operations in the math-coprocessor ...
void drawManySamples(size_t N, std::vector< mrpt::math::CVectorDouble > &outSamples) const MRPT_OVERRIDE
Draws a number of samples from the distribution, and saves as a list of 1x6 vectors, where each row contains a (x,y,z,yaw,pitch,roll) datum.
virtual void getCovarianceAndMean(mrpt::math::CMatrixFixedNumeric< double, STATE_LEN, STATE_LEN > &cov, TDATA &mean_point) const =0
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean...
unsigned __int32 uint32_t
void getMean(CPose3D &mean_pose) const MRPT_OVERRIDE
Returns an estimate of the pose, (the mean, or mathematical expectation of the PDF), computed as a weighted average over all m_particles.
Declares a class that represents a Probability Density Function (PDF) of a 3D pose (6D actually)...
CMatrixFixedNumeric< double, 6, 1 > CMatrixDouble61
void drawSingleSample(CPose3D &outPart) const MRPT_OVERRIDE
Draws a single sample from the distribution.
EIGEN_STRONG_INLINE double mean() const
Computes the mean of the entire matrix.
virtual const mrpt::utils::TRuntimeClassId * GetRuntimeClass() const
Returns information about the class of an object in runtime.
void resize(const size_t N)
Set the number of SOG modes.