From f767665f1abb902d0ec81cd8b3a5d229d441a282 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 27 Sep 2016 14:59:30 +0200 Subject: filter/accela: clamp nonlinearity to 1.5 2.0 is too much. Issue: #462 Reported-by: @Len62 --- filter-accela/accela-settings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter-accela/accela-settings.hpp b/filter-accela/accela-settings.hpp index 27089199..e132e66a 100644 --- a/filter-accela/accela-settings.hpp +++ b/filter-accela/accela-settings.hpp @@ -55,6 +55,6 @@ struct settings_accela : opts rot_deadzone(b, "rotation-deadzone", slider_value(0, 0, 2)), trans_deadzone(b, "translation-deadzone", slider_value(0, 0, 1)), ewma(b, "ewma", slider_value(0, 0, 30)), - rot_nonlinearity(b, "rotation-nonlinearity", slider_value(1, 1, 2)) + rot_nonlinearity(b, "rotation-nonlinearity", slider_value(1.05, 1, 1.5)) {} }; -- cgit v1.2.3