diff options
author | Martin Miller | 2017-03-26 16:33:20 -0500 |
---|---|---|
committer | Martin Miller | 2017-03-26 16:33:20 -0500 |
commit | b2cba6dc96c22f35fcf0df75527868cc36e93760 (patch) | |
tree | 6973a09a6b8daa4c515e0c3c7bdc4839e3b9fabb /src/feature.h | |
parent | 89937f85344bc389c934d15ed606645e289620d0 (diff) | |
download | refslam-b2cba6dc96c22f35fcf0df75527868cc36e93760.zip refslam-b2cba6dc96c22f35fcf0df75527868cc36e93760.tar.gz |
Fully implemented EKF.
Still needs to be debugged as the result is way off, but it is all
there.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.h b/src/feature.h index a405e8f..a169287 100644 --- a/src/feature.h +++ b/src/feature.h @@ -29,7 +29,6 @@ class Feature /* ==================== ACCESSORS ======================================= */ int id(); - Vector2d initialView(); Matrix<double,3,3> P0(); UTM utm(Vector3d &xbw, Quaterniond &q); @@ -48,6 +47,7 @@ class Feature Matrix<double,6,3> Hy( const Vector3d &pos, const Quaterniond &q); Matrix<double,6,1> h( const Vector3d &x, const Quaterniond &q); Matrix<double,3,6> L(); + Matrix<double,6,1> measurement_vector(const Vector3d &xs, const Vector3d &xr); Matrix<double,3,3> Q(const double dt); Matrix<double,6,6> R(); |