24 template <
class PARTICLETYPE,
class BINTYPE>
26 BINTYPE& outBin,
const TKLDParams& opts,
27 const PARTICLETYPE* currentParticleValue =
nullptr,
35 class PARTICLE_TYPE,
class MYSELF,
61 mutable std::vector<mrpt::math::TPose3D>
71 template <
class BINTYPE>
76 const void* action,
const void* observation);
78 template <
class BINTYPE>
83 const void* action,
const void* observation);
109 template <
class BINTYPE>
131 template <
class BINTYPE>
145 template <
class BINTYPE>
162 const size_t i,
bool& is_valid_pose)
const = 0;
165 PARTICLE_TYPE* particleData,
179 PARTICLE_TYPE, STORAGE>::CParticleList& old_particles,
180 const std::vector<mrpt::math::TPose3D>& newParticles,
181 const std::vector<double>& newParticlesWeight,
182 const std::vector<size_t>& newParticlesDerivedFromIdx)
const 190 const size_t N = newParticles.size();
191 std::remove_reference_t<decltype(old_particles)> newParticlesArray(N);
196 const auto N_old = old_particles.size();
197 std::vector<bool> oldParticleAlreadyCopied(N_old,
false);
198 std::vector<PARTICLE_TYPE*> oldParticleFirstCopies(N_old,
nullptr);
200 auto newPartIt = newParticlesArray.begin();
201 for (
size_t i = 0; newPartIt != newParticlesArray.end();
205 newPartIt->log_w = newParticlesWeight[i];
208 PARTICLE_TYPE* newPartData;
209 const size_t i_in_old = newParticlesDerivedFromIdx[i];
210 if (!oldParticleAlreadyCopied[i_in_old])
213 newPartData = old_particles[i_in_old].d.release();
214 oldParticleAlreadyCopied[i_in_old] =
true;
215 oldParticleFirstCopies[i_in_old] = newPartData;
220 ASSERT_(oldParticleFirstCopies[i_in_old]);
222 new PARTICLE_TYPE(*oldParticleFirstCopies[i_in_old]);
225 newPartIt->d.reset(newPartData);
232 newPartIt = newParticlesArray.begin();
233 for (
size_t i = 0; i < N; ++newPartIt, ++i)
235 newPartIt->d.get(), newParticles[i]);
241 auto newPartIt = newParticlesArray.begin();
242 for (
size_t i = 0; newPartIt != newParticlesArray.end();
245 newPartIt->log_w = newParticlesWeight[i];
246 const size_t i_in_old = newParticlesDerivedFromIdx[i];
247 newPartIt->d = old_particles[i_in_old].d;
251 newPartIt = newParticlesArray.begin();
252 for (
size_t i = 0; i < N; ++newPartIt, ++i)
254 &newPartIt->d, newParticles[i]);
257 old_particles = std::move(newParticlesArray);
262 PARTICLE_TYPE, STORAGE>::CParticleList& particles,
278 const size_t particleIndexForMap,
293 template <
class BINTYPE>
302 template <
class BINTYPE>
307 const TKLDParams& KLD_options,
const bool USE_OPTIMAL_SAMPLING);
309 template <
class BINTYPE>
311 const bool USE_OPTIMAL_SAMPLING,
const bool doResample,
312 const double maxMeanLik,
mrpt::math::CVectorDouble m_pfAuxiliaryPFStandard_estimatedProb
Auxiliary variable used in the "pfAuxiliaryPFStandard" algorithm.
mrpt::math::CVectorDouble m_pfAuxiliaryPFOptimal_estimatedProb
Auxiliary variable used in the "pfAuxiliaryPFOptimal" algorithm.
void KLF_loadBinFromParticle(BINTYPE &outBin, const TKLDParams &opts, const PARTICLETYPE *currentParticleValue=nullptr, const mrpt::math::TPose3D *newPoseToBeInserted=nullptr)
bool m_accumRobotMovement3DIsValid
void PF_SLAM_implementation_pfAuxiliaryPFStandard(const mrpt::obs::CActionCollection *actions, const mrpt::obs::CSensoryFrame *sf, const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const TKLDParams &KLD_options)
A generic implementation of the PF method "prediction_and_update_pfAuxiliaryPFStandard" (Auxiliary pa...
Option set for KLD algorithm.
virtual mrpt::math::TPose3D getLastPose(const size_t i, bool &is_valid_pose) const =0
Return the last robot pose in the i'th particle; is_valid_pose will be false if there is no such last...
virtual void PF_SLAM_implementation_custom_update_particle_with_new_pose(PARTICLE_TYPE *particleData, const mrpt::math::TPose3D &newPose) const =0
void PF_SLAM_implementation_pfAuxiliaryPFOptimal(const mrpt::obs::CActionCollection *actions, const mrpt::obs::CSensoryFrame *sf, const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const TKLDParams &KLD_options)
A generic implementation of the PF method "prediction_and_update_pfAuxiliaryPFOptimal" (optimal sampl...
Declares a class for storing a collection of robot actions.
std::vector< bool > m_pfAuxiliaryPFOptimal_maxLikMovementDrawHasBeenUsed
A set of common data shared by PF implementations for both SLAM and localization. ...
mrpt::math::CVectorDouble m_pfAuxiliaryPFOptimal_maxLikelihood
Auxiliary variable used in the "pfAuxiliaryPFOptimal" algorithm.
#define ASSERT_(f)
Defines an assertion mechanism.
Represents a probabilistic 2D movement of the robot mobile base.
void PF_SLAM_aux_perform_one_rejection_sampling_step(const bool USE_OPTIMAL_SAMPLING, const bool doResample, const double maxMeanLik, size_t k, const mrpt::obs::CSensoryFrame *sf, const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, mrpt::poses::CPose3D &out_newPose, double &out_newParticleLogWeight)
Versatile class for consistent logging and management of output messages.
mrpt::poses::CPoseRandomSampler m_movementDrawer
Used in al PF implementations.
Declares a class for storing a "sensory frame", a set of "observations" taken by the robot approximat...
This virtual class defines the interface that any particles based PDF class must implement in order t...
bool m_accumRobotMovement2DIsValid
This template class declares the array of particles and its internal data, managing some memory-relat...
virtual bool PF_SLAM_implementation_doWeHaveValidObservations([[maybe_unused]] const typename mrpt::bayes::CParticleFilterData< PARTICLE_TYPE, STORAGE >::CParticleList &particles, [[maybe_unused]] const mrpt::obs::CSensoryFrame *sf) const
void PF_SLAM_implementation_pfAuxiliaryPFStandardAndOptimal(const mrpt::obs::CActionCollection *actions, const mrpt::obs::CSensoryFrame *sf, const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const TKLDParams &KLD_options, const bool USE_OPTIMAL_SAMPLING)
The shared implementation body of two PF methods: APF and Optimal-APF, depending on USE_OPTIMAL_SAMPL...
virtual 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 =0
Evaluate the observation likelihood for one particle at a given location.
mrpt::poses::CPose3DPDFGaussian m_accumRobotMovement3D
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
static double PF_SLAM_particlesEvaluator_AuxPFOptimal(const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const mrpt::bayes::CParticleFilterCapable *obj, size_t index, const void *action, const void *observation)
void PF_SLAM_implementation_pfStandardProposal(const mrpt::obs::CActionCollection *actions, const mrpt::obs::CSensoryFrame *sf, const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const TKLDParams &KLD_options)
A generic implementation of the PF method "pfStandardProposal" (standard proposal distribution...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
static double PF_SLAM_particlesEvaluator_AuxPFStandard(const mrpt::bayes::CParticleFilter::TParticleFilterOptions &PF_options, const mrpt::bayes::CParticleFilterCapable *obj, size_t index, const void *action, const void *observation)
Compute w[i]*p(z_t | mu_t^i), with mu_t^i being the mean of the new robot pose.
The configuration of a particle filter.
COutputLogger()
Default class constructor.
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
Declares a class that represents a Probability Density function (PDF) of a 3D pose ...
std::vector< mrpt::math::TPose3D > m_pfAuxiliaryPFOptimal_maxLikDrawnMovement
Auxiliary variable used in the "pfAuxiliaryPFOptimal" algorithm.
mrpt::obs::CActionRobotMovement2D m_accumRobotMovement2D
bool PF_SLAM_implementation_gatherActionsCheckBothActObs(const mrpt::obs::CActionCollection *actions, const mrpt::obs::CSensoryFrame *sf)
Auxiliary method called by PF implementations: return true if we have both action & observation...
An efficient generator of random samples drawn from a given 2D (CPosePDF) or 3D (CPose3DPDF) pose pro...
particle_storage_mode
use for CProbabilityParticle
virtual bool PF_SLAM_implementation_skipRobotMovement() const
Make a specialization if needed, eg.
virtual void PF_SLAM_implementation_replaceByNewParticleSet(typename mrpt::bayes::CParticleFilterData< PARTICLE_TYPE, STORAGE >::CParticleList &old_particles, const std::vector< mrpt::math::TPose3D > &newParticles, const std::vector< double > &newParticlesWeight, const std::vector< size_t > &newParticlesDerivedFromIdx) const
This is the default algorithm to efficiently replace one old set of samples by another new set...