diff options
author | Martin Miller | 2017-04-07 17:28:23 -0500 |
---|---|---|
committer | Martin Miller | 2017-04-07 17:28:23 -0500 |
commit | 728cc9930cbea478ca732b6c19bab275ef50c6d0 (patch) | |
tree | 1a1224f18af30cb2690f70380f301b8947513229 /src/feature.h | |
parent | de6c9b3848dccf6140525f5ed020258625b3c48b (diff) | |
download | refslam-728cc9930cbea478ca732b6c19bab275ef50c6d0.zip refslam-728cc9930cbea478ca732b6c19bab275ef50c6d0.tar.gz |
Begin Vision class.
This class can display measurements and featuers and find new features.
When complete it will also perform measurements.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/feature.h b/src/feature.h index eaf7349..d5e84b4 100644 --- a/src/feature.h +++ b/src/feature.h @@ -5,18 +5,18 @@ #include "types.h" #define FEATURE_NOISE 1e-3 /* Feature process noise */ -#define VIEW_NOISE 5e-3 /* */ +#define VIEW_NOISE 5e-2 /* */ #define INITIAL_VIEW_NOISE 1e-1 /* */ -#define REFLECTION_VIEW_NOISE 5e-3 /* */ +#define REFLECTION_VIEW_NOISE 5e-2 /* */ #define FEATURECOVX .01 /* */ #define FEATURECOVY .01 /* */ #define FEATURECOVRHO 25e-4 /* */ #define FEATURECOVRHO_MONO 0.5 /* */ #define RHO_0 1./10. /* */ -#define INLIER_THRESHOLD 2.9915 /* */ +#define INLIER_THRESHOLD 5.9915 /* */ #define RANSAC_LI_THRESHOLD 4e-5 /* */ #define RANSAC_HI_THRESHOLD 5e-2 /* */ -//#define INITDEPTH +#define INITDEPTH using Eigen::Dynamic; using Eigen::Matrix; |