Age | Commit message (Collapse) | Author |
|
|
|
This fixes a bug that was present in the pyslam code. The Jacobian of the motion
model needs to be replaced with:
F = I + F*dt
|
|
|
|
Rather than maintain X and P in the main function they are moved into
the body and state classes, respectively. This will become much more
important when features are added and the accounting becomes more
complicated.
|
|
|
|
The State class contains the body and feature classes. It is responsible
for composing matrices, and performing Kalman updates.
|