summaryrefslogtreecommitdiff
path: root/src/body.h
diff options
context:
space:
mode:
authorMartin Miller2017-03-29 12:28:45 -0500
committerMartin Miller2017-03-29 12:28:45 -0500
commitaf8856394e8284462cd0e0c9e25d01a01a4ff551 (patch)
tree39c79a7ac6728e3a7c07684adf176008bbcd3d5f /src/body.h
parent411797b9a53d3865193bf4f45889c100ea4bc895 (diff)
downloadrefslam-af8856394e8284462cd0e0c9e25d01a01a4ff551.zip
refslam-af8856394e8284462cd0e0c9e25d01a01a4ff551.tar.gz
Change hardcoded values to defines
Diffstat (limited to 'src/body.h')
-rw-r--r--src/body.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/body.h b/src/body.h
index bdf8c28..0d1b09d 100644
--- a/src/body.h
+++ b/src/body.h
@@ -3,7 +3,9 @@
#include <Eigen/Dense>
#include <iostream>
#include "types.h"
-
+#define R_HEIGHT 1e-2 /* measurement noise of height measurement */
+#define IMU_NOISE 800e-6 /* IMU process noise */
+#define IMU_RANDOMWALK 5e-6 /* Bias process noise */
using Eigen::Matrix;
using Eigen::Vector3d;
using Eigen::Quaterniond;