diff options
author | Martin Miller | 2017-03-18 23:01:15 -0500 |
---|---|---|
committer | Martin Miller | 2017-03-18 23:01:15 -0500 |
commit | 0862825c7e37a45c343559b7c18a21fc0bb965f9 (patch) | |
tree | 4f9c8729ff6a137a426b5ed017773bf698f0a641 /src/main.h | |
parent | f098647e69c1fe3a3a20599405962e7e1f3c7c0f (diff) | |
download | refslam-0862825c7e37a45c343559b7c18a21fc0bb965f9.zip refslam-0862825c7e37a45c343559b7c18a21fc0bb965f9.tar.gz |
Start Feature::h() method
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -14,16 +14,16 @@ using Eigen::Matrix; using Eigen::Matrix3d; -using Eigen::Quaternion; +using Eigen::Quaterniond; using Eigen::Vector3d; 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 Quaternion<double> &q); +void covCallback(const message &msg, Matrix<double,9,9> &P, const Quaterniond &q); void imgCallback(const message *msg); -void imuCallback(const message &msg, State &mu, const Quaternion<double> &q, const timestamp dt); -void pvaCallback(const message &msg, Matrix<double,9,1> &X, Quaternion<double> &q); +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); #endif /* ----- #ifndef main_INC ----- */ |