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
00032 #ifndef _MHT_TYPES_H_
00033 #define _MHT_TYPES_H_
00034
00035 #error This file should not be used, DEPRECATED
00036
00037 #include <algorithm>
00038 #include <vector>
00039 #include <iostream>
00040
00041 #include <ros/ros.h>
00042
00043 #include <visualization_msgs/Marker.h>
00044 #include <visualization_msgs/MarkerArray.h>
00045
00046 #include <boost/shared_ptr.hpp>
00047 #include <boost/format.hpp>
00048
00049 #include <Eigen/Dense>
00050 #include <Eigen/Cholesky>
00051
00052 #include <kfilter/ekfilter.hpp>
00053
00054 #include <mtt/tree.hh>
00055 #include <mtt/tree_util.hh>
00056 #include <mtt/cluster.h>
00057
00058 #include <mtt/mht_types_shared.h>
00059
00060 #include <mtt/nonholonomic_kalman_filter.h>
00061
00062 using Eigen::Matrix4d;
00063 using Eigen::Matrix2d;
00064 using Eigen::Vector2d;
00065 using Eigen::Vector4d;
00066 using Eigen::MatrixXd;
00067 using Eigen::VectorXd;
00068
00069 using namespace Kalman;
00070 using namespace ros;
00071 using namespace std;
00072
00073
00079 typedef EKFilter<double,0,false,false,false>::Vector kVector;
00080
00086 typedef EKFilter<double,0,false,false,false>::Matrix kMatrix;
00087
00103 class constantVelocityEKFilter:public EKFilter<double,0,false,false,false>
00104 {
00105 public:
00106
00116 void SetIdentity(kMatrix& M,int size,double value=1);
00117
00126 void SetZero(kMatrix& M,int size);
00127
00134 void InitFilter(Vector4d& x_init);
00135
00136 void InitFilter(Vector4d& x_init,Matrix4d& P_init);
00137
00138 int miss_associations;
00139 int life_time;
00140
00141 Vector4d x_predicted;
00142 Vector3d z_measured;
00143 Vector3d inovation_error;
00144
00145 protected:
00146
00148 double dt;
00150 Time lt;
00151
00157 void makeCommonProcess();
00158
00162 void makeBaseA();
00163
00167 void makeA();
00168
00172 void makeBaseH();
00173
00177 void makeBaseW();
00178
00182 void makeBaseV();
00183
00187 void makeR();
00188
00192 void makeQ();
00193
00197 void makeProcess();
00198
00202 void makeMeasure();
00203 };
00204
00205 typedef boost::shared_ptr<constantVelocityEKFilter> constantVelocityEKFilterPtr;
00206
00207 namespace Mht
00208 {
00209
00219 }
00220
00221 #endif