diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-06-15 06:35:48 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-06-18 18:48:42 +0200 |
commit | 382875c5d0e0d7e469b1a4607d3f25938bc286c5 (patch) | |
tree | ba51741a3733eb4c523cb7c9e1917073708f810b /tracker-pt/numeric.hpp | |
parent | b3ca008fdd0ff31466092737aed1992805c93c54 (diff) |
tracker/pt: use last pose when not different
We allow for max of less than a pixel skew of all the points.
Diffstat (limited to 'tracker-pt/numeric.hpp')
-rw-r--r-- | tracker-pt/numeric.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tracker-pt/numeric.hpp b/tracker-pt/numeric.hpp index c9a553f3..4761af1d 100644 --- a/tracker-pt/numeric.hpp +++ b/tracker-pt/numeric.hpp @@ -9,7 +9,7 @@ namespace types { struct constants final { constants() = delete; - static constexpr f eps = f(1e-6); + static constexpr f eps = f(1e-8); }; template<int n> using vec = cv::Vec<f, n>; |