Main MRPT website > C++ reference for MRPT 1.9.9
CPose3DPDFParticles.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2018, 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 
10 #include "poses-precomp.h" // Precompiled headers
11 
14 #include <mrpt/poses/CPose3D.h>
15 #include <mrpt/math/wrap2pi.h>
18 #include <mrpt/system/os.h>
19 
20 using namespace mrpt;
21 using namespace mrpt::poses;
22 using namespace mrpt::math;
23 
25 
27 {
28  m_particles.resize(M);
29  TPose3D nullPose(0, 0, 0, 0, 0, 0);
30  resetDeterministic(nullPose);
31 }
32 
34 {
36  if (this == &o) return; // It may be used sometimes
38  {
39  const CPose3DPDFParticles* pdf =
40  dynamic_cast<const CPose3DPDFParticles*>(&o);
41  ASSERT_(pdf);
42  m_particles = pdf->m_particles;
43  }
45  {
46  THROW_EXCEPTION("TO DO!!");
47  }
48  MRPT_END
49 }
50 
52 {
54  // Default to (0,..,0)
55  p = CPose3D();
56  if (m_particles.empty()) return;
57 
58  // Calc average on SE(3)
59  mrpt::poses::SE_average<3> se_averager;
60  for (const auto& part : m_particles)
61  {
62  const double w = exp(part.log_w);
63  se_averager.append(part.d, w);
64  }
65  se_averager.get_average(p);
66  MRPT_END
67 }
68 
71 {
73 
74  getMean(mean); // First! the mean value:
75 
76  // Now the covariance:
77  cov.zeros();
78  CVectorDouble vars;
79  vars.assign(6, 0.0); // The diagonal of the final covariance matrix
80 
81  // Elements off the diagonal of the covariance matrix:
82  double std_xy = 0, std_xz = 0, std_xya = 0, std_xp = 0, std_xr = 0;
83  double std_yz = 0, std_yya = 0, std_yp = 0, std_yr = 0;
84  double std_zya = 0, std_zp = 0, std_zr = 0;
85  double std_yap = 0, std_yar = 0;
86  double std_pr = 0;
87 
88  // Mean values in [0, 2pi] range:
89  double mean_yaw = mean.yaw();
90  double mean_pitch = mean.pitch();
91  double mean_roll = mean.roll();
92  if (mean_yaw < 0) mean_yaw += M_2PI;
93  if (mean_pitch < 0) mean_pitch += M_2PI;
94  if (mean_roll < 0) mean_roll += M_2PI;
95 
96  // Enought information to estimate the covariance?
97  if (m_particles.size() < 2) return;
98 
99  // Sum all weight values:
100  double W = 0;
101  for (const auto& p : m_particles) W += exp(p.log_w);
102 
103  ASSERT_(W > 0);
104 
105  // Compute covariance:
106  for (const auto& p : m_particles)
107  {
108  double w = exp(p.log_w) / W;
109 
110  // Manage 1 PI range:
111  double err_yaw = wrapToPi(std::abs(p.d.yaw - mean_yaw));
112  double err_pitch = wrapToPi(std::abs(p.d.pitch - mean_pitch));
113  double err_roll = wrapToPi(std::abs(p.d.roll - mean_roll));
114 
115  double err_x = p.d.x - mean.x();
116  double err_y = p.d.y - mean.y();
117  double err_z = p.d.z - mean.z();
118 
119  vars[0] += square(err_x) * w;
120  vars[1] += square(err_y) * w;
121  vars[2] += square(err_z) * w;
122  vars[3] += square(err_yaw) * w;
123  vars[4] += square(err_pitch) * w;
124  vars[5] += square(err_roll) * w;
125 
126  std_xy += err_x * err_y * w;
127  std_xz += err_x * err_z * w;
128  std_xya += err_x * err_yaw * w;
129  std_xp += err_x * err_pitch * w;
130  std_xr += err_x * err_roll * w;
131 
132  std_yz += err_y * err_z * w;
133  std_yya += err_y * err_yaw * w;
134  std_yp += err_y * err_pitch * w;
135  std_yr += err_y * err_roll * w;
136 
137  std_zya += err_z * err_yaw * w;
138  std_zp += err_z * err_pitch * w;
139  std_zr += err_z * err_roll * w;
140 
141  std_yap += err_yaw * err_pitch * w;
142  std_yar += err_yaw * err_roll * w;
143 
144  std_pr += err_pitch * err_roll * w;
145  } // end for it
146 
147  // Unbiased estimation of variance:
148  cov(0, 0) = vars[0];
149  cov(1, 1) = vars[1];
150  cov(2, 2) = vars[2];
151  cov(3, 3) = vars[3];
152  cov(4, 4) = vars[4];
153  cov(5, 5) = vars[5];
154 
155  cov(1, 0) = cov(0, 1) = std_xy;
156  cov(2, 0) = cov(0, 2) = std_xz;
157  cov(3, 0) = cov(0, 3) = std_xya;
158  cov(4, 0) = cov(0, 4) = std_xp;
159  cov(5, 0) = cov(0, 5) = std_xr;
160 
161  cov(2, 1) = cov(1, 2) = std_yz;
162  cov(3, 1) = cov(1, 3) = std_yya;
163  cov(4, 1) = cov(1, 4) = std_yp;
164  cov(5, 1) = cov(1, 5) = std_yr;
165 
166  cov(3, 2) = cov(2, 3) = std_zya;
167  cov(4, 2) = cov(2, 4) = std_zp;
168  cov(5, 2) = cov(2, 5) = std_zr;
169 
170  cov(4, 3) = cov(3, 4) = std_yap;
171  cov(5, 3) = cov(3, 5) = std_yar;
172 
173  cov(5, 4) = cov(4, 5) = std_pr;
174 
175  MRPT_END
176 }
177 
180 {
181  writeParticlesToStream(out);
182 }
185 {
186  switch (version)
187  {
188  case 0:
189  {
190  readParticlesFromStream(in);
191  }
192  break;
193  default:
195  };
196 }
197 
198 /*---------------------------------------------------------------
199  saveToTextFile
200  Save PDF's m_particles to a text file. In each line it
201  will go: "x y phi weight"
202  ---------------------------------------------------------------*/
204 {
205  using namespace mrpt::system;
206 
207  FILE* f = os::fopen(file.c_str(), "wt");
208  if (!f) return false;
209 
210  os::fprintf(f, "%% x y z yaw[rad] pitch[rad] roll[rad] log_weight\n");
211 
212  for (const auto& p : m_particles)
213  os::fprintf(
214  f, "%f %f %f %f %f %f %e\n", p.d.x, p.d.y, p.d.z, p.d.yaw,
215  p.d.pitch, p.d.roll, p.log_w);
216 
217  os::fclose(f);
218  return true;
219 }
220 
222 {
223  return m_particles[i].d;
224 }
225 
227  const CPose3D& newReferenceBase)
228 {
229  for (auto& p : m_particles)
230  p.d = (newReferenceBase + CPose3D(p.d)).asTPose();
231 }
232 
234 {
235  MRPT_UNUSED_PARAM(outPart);
236  THROW_EXCEPTION("TO DO!");
237 }
238 
240  size_t N, std::vector<CVectorDouble>& outSamples) const
241 {
243  MRPT_UNUSED_PARAM(outSamples);
244  THROW_EXCEPTION("TO DO!");
245 }
246 
248 {
249  MRPT_UNUSED_PARAM(Ap);
250  THROW_EXCEPTION("TO DO!");
251 }
252 
254 {
256  THROW_EXCEPTION("TO DO!");
257 }
258 
260 {
261  MRPT_START
263  CPose3DPDFParticles* out = static_cast<CPose3DPDFParticles*>(&o);
264  // Prepare the output:
265  out->copyFrom(*this);
266  const CPose3D zero(0, 0, 0);
267  for (auto& p : out->m_particles) p.d = (zero - CPose3D(p.d)).asTPose();
268  MRPT_END
269 }
270 
272 {
273  mrpt::math::TPose3D ret{0, 0, 0, 0, 0, 0};
274  double max_w = -std::numeric_limits<double>::max();
275  for (const auto& p : m_particles)
276  {
277  if (p.log_w > max_w)
278  {
279  ret = p.d;
280  max_w = p.log_w;
281  }
282  }
283  return ret;
284 }
285 
287  const CPose3DPDF& p1, const CPose3DPDF& p2)
288 {
289  MRPT_UNUSED_PARAM(p1);
290  MRPT_UNUSED_PARAM(p2);
291  THROW_EXCEPTION("Not implemented yet!");
292 }
293 
295  const TPose3D& location, size_t particlesCount)
296 {
297  if (particlesCount > 0) m_particles.resize(particlesCount);
298 
299  for (auto& p : m_particles)
300  {
301  p.d = location;
302  p.log_w = 0;
303  }
304 }
os.h
location
GLint location
Definition: glext.h:4086
mrpt::poses::CPose3DPDFParticles::saveToTextFile
bool saveToTextFile(const std::string &file) const override
Save PDF's m_particles to a text file.
Definition: CPose3DPDFParticles.cpp:203
mrpt::poses::CPose3DPDFParticles::operator+=
void operator+=(const CPose3D &Ap)
Appends (pose-composition) a given pose "p" to each particle.
Definition: CPose3DPDFParticles.cpp:247
poses-precomp.h
mrpt::poses::CPose3DPDFGaussian
Declares a class that represents a Probability Density function (PDF) of a 3D pose .
Definition: CPose3DPDFGaussian.h:40
mrpt::system::os::fclose
int void fclose(FILE *f)
An OS-independent version of fclose.
Definition: os.cpp:273
mrpt::poses::CPose3DPDFParticles::resetDeterministic
void resetDeterministic(const mrpt::math::TPose3D &location, size_t particlesCount=0)
Reset the PDF to a single point: All m_particles will be set exactly to the supplied pose.
Definition: CPose3DPDFParticles.cpp:294
mrpt::poses::CPose3DPDF::GetRuntimeClass
virtual const mrpt::rtti::TRuntimeClassId * GetRuntimeClass() const override
Returns information about the class of an object in runtime.
mrpt::math::dynamic_vector
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction.
Definition: eigen_frwds.h:44
mrpt::poses::CPose3DPDFParticles::serializeTo
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
Definition: CPose3DPDFParticles.cpp:179
mrpt::poses::SE_average< 3 >::get_average
void get_average(mrpt::poses::CPose3D &out_mean) const
Returns the average pose.
mrpt::poses::CPose3DPDF
Declares a class that represents a Probability Density Function (PDF) of a 3D pose (6D actually).
Definition: CPose3DPDF.h:42
MRPT_UNUSED_PARAM
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.
Definition: common.h:186
CPose3DPDFGaussian.h
wrap2pi.h
mrpt
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
Definition: CKalmanFilterCapable.h:30
mrpt::poses::CPose3DPDFParticles::changeCoordinatesReference
void changeCoordinatesReference(const CPose3D &newReferenceBase) override
this = p (+) this.
Definition: CPose3DPDFParticles.cpp:226
w
GLubyte GLubyte GLubyte GLubyte w
Definition: glext.h:4178
uint8_t
unsigned char uint8_t
Definition: rptypes.h:41
mrpt::poses::CPose3DPDFParticles::bayesianFusion
void bayesianFusion(const CPose3DPDF &p1, const CPose3DPDF &p2) override
Bayesian fusion.
Definition: CPose3DPDFParticles.cpp:286
mrpt::poses::CPose3DPDFParticles::getMostLikelyParticle
mrpt::math::TPose3D getMostLikelyParticle() const
Returns the particle with the highest weight.
Definition: CPose3DPDFParticles.cpp:271
THROW_EXCEPTION
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:41
ASSERT_
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:113
p
GLfloat GLfloat p
Definition: glext.h:6305
mrpt::square
T square(const T x)
Inline function for the square of a number.
Definition: core/include/mrpt/core/bits_math.h:18
mrpt::poses
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
Definition: CHierarchicalMapMHPartition.h:25
mrpt::poses::CPose3DPDFParticles::serializeGetVersion
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
Definition: CPose3DPDFParticles.cpp:178
mrpt::math::cov
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
mrpt::serialization::CArchive
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:48
mrpt::poses::CPose3DPDFParticles::getCovarianceAndMean
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.
Definition: CPose3DPDFParticles.cpp:69
mrpt::poses::SE_average< 3 >::append
void append(const mrpt::poses::CPose3D &p)
Adds a new pose to the computation.
mrpt::math::wrapToPi
T wrapToPi(T a)
Modifies the given angle to translate it into the ]-pi,pi] range.
Definition: wrap2pi.h:53
mrpt::poses::CPose3DPDFParticles::drawManySamples
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,...
Definition: CPose3DPDFParticles.cpp:239
MRPT_START
#define MRPT_START
Definition: exceptions.h:262
mrpt::poses::CPose3D
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:88
mrpt::poses::CPose3DPDFParticles::drawSingleSample
void drawSingleSample(CPose3D &outPart) const override
Draws a single sample from the distribution (WARNING: weights are assumed to be normalized!...
Definition: CPose3DPDFParticles.cpp:233
mrpt::math::TPose3D
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
Definition: lightweight_geom_data.h:603
mrpt::poses::CPose3DPDFParticles
Declares a class that represents a Probability Density function (PDF) of a 3D pose.
Definition: CPose3DPDFParticles.h:31
mrpt::poses::CPose3DPDFParticles::serializeFrom
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
Definition: CPose3DPDFParticles.cpp:183
IMPLEMENTS_SERIALIZABLE
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
This must be inserted in all CSerializable classes implementation files.
Definition: CSerializable.h:114
mrpt::math::CMatrixFixedNumeric
A numeric matrix of compile-time fixed size.
Definition: CMatrixFixedNumeric.h:40
mrpt::poses::CPose3DPDFParticles::copyFrom
void copyFrom(const CPose3DPDF &o) override
Copy operator, translating if necesary (for example, between m_particles and gaussian representations...
Definition: CPose3DPDFParticles.cpp:33
CPose3D.h
mrpt::bayes::CParticleFilterData::m_particles
CParticleList m_particles
The array of particles.
Definition: CParticleFilterData.h:218
mrpt::poses::CPose3DPDFParticles::inverse
void inverse(CPose3DPDF &o) const override
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
Definition: CPose3DPDFParticles.cpp:259
mrpt::system::os::fprintf
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
Definition: os.cpp:406
CLASS_ID
#define CLASS_ID(T)
Access to runtime class ID for a defined class name.
Definition: CObject.h:85
mean
EIGEN_STRONG_INLINE double mean() const
Computes the mean of the entire matrix.
Definition: eigen_plugins.h:427
MRPT_END
#define MRPT_END
Definition: exceptions.h:266
mrpt::poses::SE_average< 3 >
Computes weighted and un-weighted averages of SE(3) poses.
Definition: SO_SE_average.h:160
mrpt::poses::CPose3DPDFParticles::getParticlePose
mrpt::math::TPose3D getParticlePose(int i) const
Returns the pose of the i'th particle.
Definition: CPose3DPDFParticles.cpp:221
mrpt::math
This base provides a set of functions for maths stuff.
Definition: math/include/mrpt/math/bits_math.h:13
mrpt::poses::CPose3DPDFParticles::getMean
void getMean(CPose3D &mean_pose) const override
Returns an estimate of the pose, (the mean, or mathematical expectation of the PDF),...
Definition: CPose3DPDFParticles.cpp:51
in
GLuint in
Definition: glext.h:7274
mrpt::system::os::fopen
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
Definition: os.cpp:255
M_2PI
#define M_2PI
Definition: common.h:58
string
GLsizei const GLchar ** string
Definition: glext.h:4101
mrpt::poses::CPose3DPDFParticles::append
void append(CPose3DPDFParticles &o)
Appends (add to the list) a set of m_particles to the existing ones, and then normalize weights.
Definition: CPose3DPDFParticles.cpp:253
CArchive.h
MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:90
mrpt::system
This namespace provides a OS-independent interface to many useful functions: filenames manipulation,...
Definition: math_frwds.h:25
CPose3DPDFParticles.h
SO_SE_average.h



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