diff options
author | Martin Miller | 2017-03-22 12:23:24 -0500 |
---|---|---|
committer | Martin Miller | 2017-03-22 12:23:24 -0500 |
commit | d020ec03598b90fb8d78194554471b1cfb4794dd (patch) | |
tree | 3e486793a18da25aa2f2521c8c081081152fb3c0 /src/main.h | |
parent | 0d7056cb7437b37c915009232e155019657f906f (diff) | |
download | refslam-d020ec03598b90fb8d78194554471b1cfb4794dd.zip refslam-d020ec03598b90fb8d78194554471b1cfb4794dd.tar.gz |
Read in image measurements from file
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -10,6 +10,7 @@ #include "body.h" #include "camera.h" +#include "ourerr.hpp" #include "state.h" #include "types.h" @@ -23,7 +24,7 @@ int parseLine(char *line, message *msg); timestamp update_dt(const timestamp t, timestamp *t_old); void covCallback(const message &msg, Matrix<double,9,9> &P, const Quaterniond &q); -void imgCallback(const message &msg); +void imgCallback(message &msg); void imuCallback(const message &msg, State &mu, const Quaterniond &q, const timestamp dt); void pvaCallback(const message &msg, Matrix<double,9,1> &X, Quaterniond &q); void utmCallback(const message &msg, State &mu); |