diff options
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -49,6 +49,7 @@ using Eigen::Matrix; using Eigen::Matrix3d; +using Eigen::Matrix4d; using Eigen::Quaterniond; using Eigen::Vector3d; @@ -57,7 +58,7 @@ int parseLine(char *line, message *msg); timestamp update_dt(const timestamp t, timestamp *t_old); #if STATESIZE==13 -void covCallback(const message &msg, State &mu); +void covCallback(const message &msg, State &mu, const attitude_t &att); void imgCallback(message &msg, State &mu, Camera &cam); void imuCallback(const message &msg, State &mu, const timestamp dt); void utmCallback(const message &msg, State &mu); @@ -68,6 +69,7 @@ void imuCallback(const message &msg, State &mu, const Quaterniond &q, const time void utmCallback(const message &msg, State &mu, const Quaterniond &q); #endif void pvaCallback(const message &msg, Matrix<double,STATESIZE,1> &X, Quaterniond &q); +Matrix<double,4,3> attitude_jacobian(double roll, double pitch, double yaw); #endif /* ----- #ifndef main_INC ----- */ |