RSS/Atom feed Twitter
Site is read-only, email is disabled

Selective Gaussian Blur with radius < 1.0

This discussion is connected to the gimp-developer-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

Selective Gaussian Blur with radius < 1.0 airbete full 07 Aug 21:49
  Selective Gaussian Blur with radius < 1.0 Sven Neumann 08 Aug 00:05
airbete full
2002-08-07 21:49:51 UTC (over 21 years ago)

Selective Gaussian Blur with radius < 1.0

Hi

I often found myself wanting to make a SGB with a radius less than 1.0. Here is a simple patch (for version 1.3.7) that allows r >= 0.1.

diff sel_gauss.ori.c sel_gauss.c -------------------------------------------------------------- 174c174
< if (status == GIMP_PDB_SUCCESS && (bvals.radius < 1.0)) ---

if (status == GIMP_PDB_SUCCESS && (bvals.radius < 0.1))

267c267
< bvals.radius, 1.0, G_MAXINT, 1.0, 5.0, ---

bvals.radius, 0.1, G_MAXINT, 0.1, 5.0,

--------------------------------------------------------------

AirBete.

__________________

Sven Neumann
2002-08-08 00:05:51 UTC (over 21 years ago)

Selective Gaussian Blur with radius < 1.0

Hi,

"airbete full" writes:

I often found myself wanting to make a SGB with a radius less than 1.0. Here is a simple patch (for version 1.3.7) that allows r >= 0.1.

the best way to assure that your patch is not forgotten is to open a bug-report for it at http://bugs.gimp.org/.

diff sel_gauss.ori.c sel_gauss.c
-------------------------------------------------------------- 174c174
< if (status == GIMP_PDB_SUCCESS && (bvals.radius < 1.0)) ---

if (status == GIMP_PDB_SUCCESS && (bvals.radius < 0.1))

267c267
< bvals.radius, 1.0, G_MAXINT, 1.0, 5.0, ---

bvals.radius, 0.1, G_MAXINT, 0.1, 5.0,

--------------------------------------------------------------

please send unified diffs next time (or attach them to the bug-report). The preferred options for diff are "-u -p" and sometimes "-b".

Salut, Sven