diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2014-11-28 21:50:40 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2014-11-28 21:50:40 +0100 |
commit | 6f438aacccac409aa0805d5186cb0be2f35a705f (patch) | |
tree | 6efc50dabbe942aa2797628ea357f123660c8892 | |
parent | eb7ead29ffa12cc1ccbfaa7440cd47e33ba5a078 (diff) |
decrease multipliers from absurd values
-rw-r--r-- | ftnoir_filter_accela/ftnoir_filter_accela.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftnoir_filter_accela/ftnoir_filter_accela.h b/ftnoir_filter_accela/ftnoir_filter_accela.h index 7d59638a..e682561e 100644 --- a/ftnoir_filter_accela/ftnoir_filter_accela.h +++ b/ftnoir_filter_accela/ftnoir_filter_accela.h @@ -33,10 +33,10 @@ private: Timer t; static double f(double vec, double thres); - static constexpr double high_thres_c = 4; - static constexpr double high_thres_out = 600; + static constexpr double high_thres_c = 3; + static constexpr double high_thres_out = 350; - static constexpr double low_thres_mult = 150; + static constexpr double low_thres_mult = 50; }; class FilterControls: public IFilterDialog |