Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef BAYESFILTER_H_
00029 #define BAYESFILTER_H_
00030
00031 #include "rtabmap/core/RtabmapExp.h"
00032
00033 #include <opencv2/core/core.hpp>
00034 #include <list>
00035 #include <set>
00036 #include "rtabmap/utilite/UEventsHandler.h"
00037 #include "rtabmap/core/Parameters.h"
00038
00039 namespace rtabmap {
00040
00041 class Memory;
00042 class Signature;
00043
00044 class RTABMAP_EXP BayesFilter
00045 {
00046 public:
00047 BayesFilter(const ParametersMap & parameters = ParametersMap());
00048 virtual ~BayesFilter();
00049 virtual void parseParameters(const ParametersMap & parameters);
00050 const std::map<int, float> & computePosterior(const Memory * memory, const std::map<int, float> & likelihood);
00051 void reset();
00052
00053
00054 void setPredictionLC(const std::string & prediction);
00055
00056
00057 const std::map<int, float> & getPosterior() const {return _posterior;}
00058 float getVirtualPlacePrior() const {return _virtualPlacePrior;}
00059 const std::vector<double> & getPredictionLC() const;
00060 std::string getPredictionLCStr() const;
00061
00062 cv::Mat generatePrediction(const Memory * memory, const std::vector<int> & ids) const;
00063
00064 private:
00065 cv::Mat updatePrediction(const cv::Mat & oldPrediction,
00066 const Memory * memory,
00067 const std::vector<int> & oldIds,
00068 const std::vector<int> & newIds) const;
00069 void updatePosterior(const Memory * memory, const std::vector<int> & likelihoodIds);
00070 float addNeighborProb(cv::Mat & prediction,
00071 unsigned int col,
00072 const std::map<int, int> & neighbors,
00073 const std::map<int, int> & idToIndexMap) const;
00074 void normalize(cv::Mat & prediction, unsigned int index, float addedProbabilitiesSum, bool virtualPlaceUsed) const;
00075
00076 private:
00077 std::map<int, float> _posterior;
00078 cv::Mat _prediction;
00079 float _virtualPlacePrior;
00080 std::vector<double> _predictionLC;
00081 bool _fullPredictionUpdate;
00082 float _totalPredictionLCValues;
00083 };
00084
00085 }
00086
00087 #endif