diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-18 02:15:39 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-07-18 02:15:39 +0200 |
commit | be325aa56c745720a6a5e8bbc966b0b79c591a9b (patch) | |
tree | 5e3bd0def4b7b1ca044ef12c5acfa22cb79c51ff /ftnoir_filter_accela | |
parent | f8df8356e01259da4dd4082cfeec08fb49f940f9 (diff) |
reduce Accela max slider value
no one needs that much.
Diffstat (limited to 'ftnoir_filter_accela')
-rw-r--r-- | ftnoir_filter_accela/ftnoir_filter_accela.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftnoir_filter_accela/ftnoir_filter_accela.h b/ftnoir_filter_accela/ftnoir_filter_accela.h index 766bc69e..177e5866 100644 --- a/ftnoir_filter_accela/ftnoir_filter_accela.h +++ b/ftnoir_filter_accela/ftnoir_filter_accela.h @@ -12,11 +12,11 @@ using namespace options; struct settings_accela : opts { value<int> rot_threshold, trans_threshold, ewma, rot_deadzone, trans_deadzone; - static constexpr double mult_rot = 10. / 100.; - static constexpr double mult_trans = 5. / 100.; + static constexpr double mult_rot = 4. / 100.; + static constexpr double mult_trans = 4. / 100.; static constexpr double mult_rot_dz = 2. / 100.; - static constexpr double mult_trans_dz = 1. / 100.; - static constexpr double mult_ewma = 2.; + static constexpr double mult_trans_dz = 2. / 100.; + static constexpr double mult_ewma = 1.25; settings_accela() : opts("Accela"), rot_threshold(b, "rotation-threshold", 30), |