gegl r2128 - in trunk: . operations/common



Author: ok
Date: Wed Feb 27 01:47:18 2008
New Revision: 2128
URL: http://svn.gnome.org/viewvc/gegl?rev=2128&view=rev

Log:
* operations/common/gaussian-blur.c: default to "iir" blur method since
"fir" which is more accurate especially for low blur radiuses seems
to shift the entire image down and to the left by 1 pixel.


Modified:
   trunk/ChangeLog
   trunk/operations/common/gaussian-blur.c

Modified: trunk/operations/common/gaussian-blur.c
==============================================================================
--- trunk/operations/common/gaussian-blur.c	(original)
+++ trunk/operations/common/gaussian-blur.c	Wed Feb 27 01:47:18 2008
@@ -27,7 +27,7 @@
    "Standard deviation for the horizontal axis. (multiply by ~2 to get radius)")
 gegl_chant_double (std_dev_y, "Size Y", 0.0, 200.0, 4.0,
    "Standard deviation for the vertical axis. (multiply by ~2 to get radius.)")
-gegl_chant_string (filter, "Filter", NULL,
+gegl_chant_string (filter, "Filter", "iir",
    "Optional parameter to override the automatic selection of blur filter.")
 
 #else



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