00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00021
00022
00023
00024
00025
00026
00028
00029 #ifndef AMCL_LASER_H
00030 #define AMCL_LASER_H
00031
00032 #include "amcl_sensor.h"
00033 #include "../map/map.h"
00034
00035 namespace amcl
00036 {
00037
00038 typedef enum
00039 {
00040 LASER_MODEL_BEAM,
00041 LASER_MODEL_LIKELIHOOD_FIELD
00042 } laser_model_t;
00043
00044
00045 class AMCLLaserData : public AMCLSensorData
00046 {
00047 public:
00048 AMCLLaserData () {ranges=NULL;};
00049 virtual ~AMCLLaserData() {delete [] ranges;};
00050
00051 public: int range_count;
00052 public: double range_max;
00053 public: double (*ranges)[2];
00054 };
00055
00056
00057
00058 class AMCLLaser : public AMCLSensor
00059 {
00060
00061 public: AMCLLaser(size_t max_beams, map_t* map);
00062
00063 public: void SetModelBeam(double z_hit,
00064 double z_short,
00065 double z_max,
00066 double z_rand,
00067 double sigma_hit,
00068 double labda_short,
00069 double chi_outlier);
00070
00071 public: void SetModelLikelihoodField(double z_hit,
00072 double z_rand,
00073 double sigma_hit,
00074 double max_occ_dist);
00075
00076
00077
00078 public: virtual bool UpdateSensor(pf_t *pf, AMCLSensorData *data);
00079
00080
00081 public: void SetLaserPose(pf_vector_t& laser_pose)
00082 {this->laser_pose = laser_pose;}
00083
00084
00085 private: static double BeamModel(AMCLLaserData *data,
00086 pf_sample_set_t* set);
00087
00088 private: static double LikelihoodFieldModel(AMCLLaserData *data,
00089 pf_sample_set_t* set);
00090
00091 private: laser_model_t model_type;
00092
00093
00094 private: double time;
00095
00096
00097 private: map_t *map;
00098
00099
00100 private: pf_vector_t laser_pose;
00101
00102
00103 private: int max_beams;
00104
00105
00106
00107
00108 private: double z_hit;
00109 private: double z_short;
00110 private: double z_max;
00111 private: double z_rand;
00112
00113
00114 private: double sigma_hit;
00115
00116 private: double lambda_short;
00117
00118 private: double chi_outlier;
00119 };
00120
00121
00122 }
00123
00124 #endif