[gegl] band-tune: permit narrower bandwidth



commit 17348f0dcbaa71ca4bd1ab5def46c45a6e0d3a05
Author: Øyvind Kolås <pippin gimp org>
Date:   Sun May 10 22:21:06 2020 +0200

    band-tune: permit narrower bandwidth
    
    Narrower bandwidth for more specific targeting of noise is useful, the
    used scale paremeter should probably be made dependent on the bandwidth
    to cancel out their interactions, for narrow bandwidth one now need to
    manually compensate by boosting scale.

 operations/workshop/band-tune.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/operations/workshop/band-tune.c b/operations/workshop/band-tune.c
index b919da66d..9d088584f 100644
--- a/operations/workshop/band-tune.c
+++ b/operations/workshop/band-tune.c
@@ -34,7 +34,7 @@ property_double (scale1, _("Detail scale, negative values dimnishes signal in de
 
 property_double (bw1, _("Detail bandwidth"), 0.375)
     description("lower values narrower band, higher values wider band - default value presumed to provide 
good band separation.")
-    value_range (0.2, 0.6)
+    value_range (0.01, 0.6)
 
 
 
@@ -50,7 +50,7 @@ property_double (scale2, _("Edge scale, negative values dimnishes signal in deta
 
 property_double (bw2, _("Edge bandwidth"), 0.375)
     description("lower values narrower band, higher values wider band - default value presumed to provide 
good band separation.")
-    value_range (0.2, 0.6)
+    value_range (0.01, 0.6)
 
 property_boolean (show_mask, _("Visualize Adjustment Mask"), FALSE)
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]