49 const TPose3D* newPoseToBeInserted)
52 if (newPoseToBeInserted)
72 CMonteCarloLocalization2D::CMonteCarloLocalization2D(
size_t M)
75 this->setLoggerName(
"CMonteCarloLocalization2D");
83 const size_t i,
bool& is_valid_pose)
const 98 const size_t particleIndexForMap,
const CSensoryFrame& observation,
112 it != observation.
end(); ++it)
113 ret += map->computeObservationLikelihood(
129 CParticleList& old_particles,
const vector<TPose3D>& newParticles,
130 const vector<double>& newParticlesWeight,
131 const vector<size_t>& newParticlesDerivedFromIdx)
const 135 size_t(newParticlesWeight.size()),
size_t(newParticles.size()));
146 const size_t N = newParticles.size();
147 old_particles.resize(N);
148 for (
size_t i = 0; i < N; i++)
150 old_particles[i].log_w = newParticlesWeight[i];
157 const int particlesCount,
const double x_min,
const double x_max,
158 const double y_min,
const double y_max,
const double phi_min,
159 const double phi_max)
168 std::vector<double> freeCells_x, freeCells_y;
170 unsigned int xIdx1, xIdx2;
171 unsigned int yIdx1, yIdx2;
173 freeCells_x.reserve(sizeX * sizeY);
174 freeCells_y.reserve(sizeX * sizeY);
177 xIdx1 = max(0, theMap->
x2idx(x_min));
180 if (x_max < theMap->getXMax())
181 xIdx2 =
min(sizeX - 1, theMap->
x2idx(x_max));
185 yIdx1 = max(0, theMap->
y2idx(y_min));
188 if (y_max < theMap->getYMax())
189 yIdx2 =
min(sizeY - 1, theMap->
y2idx(y_max));
193 for (
unsigned int x = xIdx1;
x <= xIdx2;
x++)
194 for (
unsigned int y = yIdx1;
y <= yIdx2;
y++)
195 if (theMap->
getCell(
x,
y) >= freeCellsThreshold)
197 freeCells_x.push_back(theMap->
idx2x(
x));
198 freeCells_y.push_back(theMap->
idx2y(
y));
201 nFreeCells = freeCells_x.size();
206 if (particlesCount > 0)
210 for (
int i = 0; i < particlesCount; i++)
217 for (
size_t i = 0; i < M; i++)
243 switch (PF_algorithm)
245 case CParticleFilter::pfStandardProposal:
248 *
this, action, observation, stats);
250 case CParticleFilter::pfAuxiliaryPFStandard:
253 *
this, action, observation, stats);
255 case CParticleFilter::pfAuxiliaryPFOptimal:
258 *
this, action, observation, stats);
#define ASSERT_EQUAL_(__A, __B)
A namespace of pseudo-random numbers genrators of diferent distributions.
float getYMin() const
Returns the "y" coordinate of top side of grid map.
Classes for serialization, sockets, ini-file manipulation, streams, list of properties-values, timewatch, extensions to STL.
float getResolution() const
Returns the resolution of the grid map.
mrpt::poses::CPosePDFParticles::CParticleDataContent CParticleDataContent
The namespace for Bayesian filtering algorithm: different particle filters and Kalman filter algorith...
#define THROW_EXCEPTION(msg)
virtual ~CMonteCarloLocalization2D()
Destructor.
Option set for KLD algorithm.
TMonteCarloLocalizationParams options
MCL parameters.
void clear()
Free all the memory associated to m_particles, and set the number of parts = 0.
mrpt::maps::TMetricMapList metricMaps
[update stage] Alternative way (if metricMap==nullptr): A metric map is supplied for each particle: T...
double yaw
Yaw coordinate (rotation angle over Z axis).
A generic implementation of the PF method "pfStandardProposal" (standard proposal distribution...
Statistics for being returned from the "execute" method.
mrpt::maps::CMetricMap * metricMap
[update stage] Must be set to a metric map used to estimate the likelihood of observations ...
Declares a class for storing a collection of robot actions.
CMonteCarloLocalization2D(size_t M=1)
Constructor.
const_iterator begin() const
Returns a constant iterator to the first observation: this is an example of usage: ...
void resetUniformFreeSpace(mrpt::maps::COccupancyGridMap2D *theMap, const double freeCellsThreshold=0.7, const int particlesCount=-1, const double x_min=-1e10f, const double x_max=1e10f, const double y_min=-1e10f, const double y_max=1e10f, const double phi_min=-M_PI, const double phi_max=M_PI)
Reset the PDF to an uniformly distributed one, but only in the free-space of a given 2D occupancy-gri...
CParticleList m_particles
The array of particles.
This base provides a set of functions for maths stuff.
void PF_SLAM_implementation_replaceByNewParticleSet(CParticleList &old_particles, const std::vector< mrpt::math::TPose3D > &newParticles, const std::vector< double > &newParticlesWeight, const std::vector< size_t > &newParticlesDerivedFromIdx) const override
float getXMin() const
Returns the "x" coordinate of left side of grid map.
#define MRPT_UNUSED_PARAM(a)
Can be used to avoid "not used parameters" warnings from the compiler.
float idx2x(const size_t cx) const
Transform a cell index into a coordinate value.
This namespace contains representation of robot actions and observations.
Declares a class for storing a "sensory frame", a set of "observations" taken by the robot approximat...
unsigned int getSizeX() const
Returns the horizontal size of grid map in cells count.
double KLD_binSize_XY
Parameters for the KLD adaptive sample size algorithm (see Dieter Fox's papers), which is used only i...
This class acts as a common interface to the different interfaces (see CParticleFilter::TParticleFilt...
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
double PF_SLAM_computeObservationLikelihoodForParticle(const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const size_t particleIndexForMap, const mrpt::obs::CSensoryFrame &observation, const mrpt::poses::CPose3D &x) const override
Evaluate the observation likelihood for one particle at a given location.
mrpt::poses::CPosePDFParticles m_poseParticles
mrpt::math::TPose3D getLastPose(const size_t i, bool &is_valid_pose) const override
Return the robot pose for the i'th particle.
Auxiliary structure used in KLD-sampling in particle filters.
A class for storing an occupancy grid map.
void executeOn(PARTICLEFILTERCAPABLE &obj, const mrpt::obs::CActionCollection *action, const mrpt::obs::CSensoryFrame *observation, TParticleFilterStats *stats=nullptr)
Executes a complete prediction + update step of the selected particle filtering algorithm.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
#define ASSERTDEB_(f)
Defines an assertion mechanism - only when compiled in debug.
TParticleFilterAlgorithm
Defines different types of particle filter algorithms.
Declares a virtual base class for all metric maps storage classes.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
The configuration of a particle filter.
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
std::deque< CObservation::Ptr >::const_iterator const_iterator
You can use CSensoryFrame::begin to get a iterator to the first element.
float idx2y(const size_t cy) const
int round(const T value)
Returns the closer integer (int) to x.
void KLF_loadBinFromParticle(mrpt::slam::detail::TPoseBin2D &outBin, const TKLDParams &opts, const CMonteCarloLocalization2D::CParticleDataContent *currentParticleValue, const TPose3D *newPoseToBeInserted)
Fills out a "TPoseBin2D" variable, given a path hypotesis and (if not set to nullptr) a new pose appe...
void PF_SLAM_implementation_custom_update_particle_with_new_pose(CParticleDataContent *particleData, const mrpt::math::TPose3D &newPose) const override
const_iterator end() const
Returns a constant iterator to the end of the list of observations: this is an example of usage: ...
unsigned int getSizeY() const
Returns the vertical size of grid map in cells count.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
int x2idx(float x) const
Transform a coordinate value into a cell index.
void executeOn(mrpt::bayes::CParticleFilter &pf, const mrpt::obs::CActionCollection *action, const mrpt::obs::CSensoryFrame *observation, mrpt::bayes::CParticleFilter::TParticleFilterStats *stats, mrpt::bayes::CParticleFilter::TParticleFilterAlgorithm PF_algorithm)
float getCell(int x, int y) const
Read the real valued [0,1] contents of a cell, given its index.
mrpt::poses::CPosePDFParticles::CParticleList CParticleList