├── .gitignore ├── .idea ├── .name ├── codeStyles │ └── Project.xml ├── misc.xml ├── modules.xml ├── untitled1.iml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── CMakeLists.txt ├── CMakeLists.txt.in ├── README.md ├── src ├── KalmanFilter.cpp ├── KalmanFilter.h ├── Landmark.cpp ├── Landmark.h ├── Robot.cpp ├── Robot.h ├── defines.h └── main.cpp └── tests └── unit_tests.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-debug 2 | 3 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | untitled1 -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 15 | 16 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/untitled1.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 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 | 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 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | rotating 109 | .y 110 | MatrixXd 111 | VectorXd 112 | phi 113 | x_start 114 | state 115 | final state_new = 116 | inal state_new = 117 | SDL_SCANCODE_UP 118 | contro 119 | measured_landmarks 120 | meas 121 | control = 122 | True x,y,phi: 123 | KF:: state_new 124 | control 125 | 126 | 127 | 128 | 131 | 132 | 162 | 163 | 164 | 165 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 |