summaryrefslogtreecommitdiff
path: root/src/feature.h
diff options
context:
space:
mode:
authorMartin Miller2017-03-26 16:33:20 -0500
committerMartin Miller2017-03-26 16:33:20 -0500
commitb2cba6dc96c22f35fcf0df75527868cc36e93760 (patch)
tree6973a09a6b8daa4c515e0c3c7bdc4839e3b9fabb /src/feature.h
parent89937f85344bc389c934d15ed606645e289620d0 (diff)
downloadrefslam-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.h2
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();