summaryrefslogtreecommitdiff
path: root/src/feature.cpp
diff options
context:
space:
mode:
authorMiller2017-07-04 23:34:11 -0500
committerMiller2017-07-04 23:34:11 -0500
commit4ad4e12cb2df5ac031eaf759517179a8e0cd87af (patch)
tree8708f575c27c60fc8fe346dc903f1fbf97382ccc /src/feature.cpp
parentc4356f7eb431649505cf2bf10b2198af76f90eae (diff)
downloadrefslam-4ad4e12cb2df5ac031eaf759517179a8e0cd87af.zip
refslam-4ad4e12cb2df5ac031eaf759517179a8e0cd87af.tar.gz
set ransac thresh and covbias
Diffstat (limited to 'src/feature.cpp')
-rw-r--r--src/feature.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature.cpp b/src/feature.cpp
index 43fd834..95a5366 100644
--- a/src/feature.cpp
+++ b/src/feature.cpp
@@ -1099,7 +1099,7 @@ Feature::isRansacInlier(const measurement_t &z, const Vector3d &pos,
y = zi-hi;
Y = y.transpose()*y;
- return (Y<RANSAC_LI_THRESHOLD) ? true : false;
+ return (Y<ransac_li_threshold) ? true : false;
}
Vector3d