-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKalmanFilter4D.cpp
101 lines (79 loc) · 2.45 KB
/
KalmanFilter4D.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include<iostream>
#include<Eigen/Dense>
using namespace std;
void KalmanFilter4D(Eigen::MatrixXd &measurements, Eigen::MatrixXd &x,Eigen::MatrixXd &P, Eigen::MatrixXd &u,
Eigen::MatrixXd &F, Eigen::MatrixXd &H, Eigen::MatrixXd &R, Eigen::MatrixXd &I){
for(int i = 0; i < measurements.cols(); i++){
Eigen::MatrixXd Z(2,1);
Z << measurements(0,i), measurements(1,i);
//--prediction
x = F*x + u;
P = F*P*F.transpose();
//--measurement update
Eigen::MatrixXd y = Z - H*x; //--error measurement
Eigen::MatrixXd S = H*P*H.transpose() + R; //--error uncertainty
Eigen::MatrixXd K = P*H.transpose()*S.inverse(); //--kalmain gain
x = x + K*y;
P = (I - K*H)*P;
}
}
void Run4D(){
double dt = 0.1;
double initial_x = 4.0;
double initial_y = 12.0;
Eigen::MatrixXd measurements(2,6);
measurements << 5.0, 6.0, 7.0, 8.0, 9.0, 10.0,
10.0, 8.0, 6.0, 4.0, 2.0, 0.0;
/*
double initial_x = -4.0;
double initial_y = 8.0;
Eigen::MatrixXd measurements(2,4);
measurements << 1.0, 6.0, 11.0, 16.0,
4.0, 0.0, -4.0, -8.0;
*/
/*
double initial_x = 1.0;
double initial_y = 19.0;
Eigen::MatrixXd measurements(2,4);
measurements << 1.0, 1.0, 1.0, 1.0,
17.0, 15.0, 13.0, 11.0;
*/
//--initial state (location and velocity)
Eigen::MatrixXd x(4,1);
x << initial_x, initial_y, 0.0, 0.0;
//--motion vector
Eigen::MatrixXd u(4,1);
u << 0.0, 0.0, 0.0, 0.0;
//--uncertainty covariance
Eigen::MatrixXd P(4,4);
P << 0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 1000.0, 0.0,
0.0, 0.0, 0.0, 1000.0;
//--state transition matrix
Eigen::MatrixXd F(4,4);
F << 1.0, 0.0, dt, 0.0,
0.0, 1.0, 0.0, dt,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0;
//--measurement function
Eigen::MatrixXd H(2,4);
H << 1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0;
//--measurement noise
Eigen::MatrixXd R(2,2);
R << 0.1, 0.0,
0.0, 0.1;
//--identity matrix
Eigen::MatrixXd I(4,4);
I << 1.0, 0.0, 0.0, 0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 1.0, 0.0,
0.0, 0.0, 0.0, 1.0;
KalmanFilter2D(measurements, x, P, u, F, H, R, I);
cout<<"x = "<<x<<endl;
cout<<"P = "<<P<<endl;
}
int main(){
Run4D();
}