Re: [Gimp-developer] Best way for "limit distance"

2004-12-02 Thread Joseph Heled
Øyvind Kolås wrote: http://pippin.gimp.org/tmp/despeckle_adaptive_non_recursive_radius_1_black_level_0_white_level_256.png.html might be similar to what you want (note that I have run it on the jpeg version of your original.) running with a radius of 1. /pippin I was careless and did not realize t

Re: [Gimp-developer] Best way for "limit distance"

2004-12-02 Thread Joseph Heled
I am using gimp-2.2-pre2. I certainly get totally different results than you for the same setting. I would appreciate some advice on how to find out how can that be, -Joseph Øyvind Kolås wrote: On Fri, 03 Dec 2004 10:12:37 +1300, Joseph Heled <[EMAIL PROTECTED]> wrote: BTW, all this was part of a

Re: [Gimp-developer] Best way for "limit distance"

2004-12-02 Thread Øyvind Kolås
On Fri, 03 Dec 2004 10:12:37 +1300, Joseph Heled <[EMAIL PROTECTED]> wrote: > BTW, all this was part of a small evaluation of CCD noise removal method. If > you > are interested, the details are in > http://pages.quicksilver.net.nz/pepe/d70/Nikon_D70_on_Linux.html#ISONoise > > The results are qui

Re: [Gimp-developer] Best way for "limit distance"

2004-12-02 Thread Joseph Heled
Thanks for the suggestion. Using Joao <[EMAIL PROTECTED]> lead I use for now python-fu with the numarray extension. As far as I know such speedups are something scrip-fu is not capable off, and I truly hope one day script-fu will be phased out and python-fu (or any other sane scripting language)

Re: [Gimp-developer] Best way for "limit distance"

2004-12-02 Thread Øyvind Kolås
On Tue, 30 Nov 2004 13:25:16 +1300, Joseph Heled <[EMAIL PROTECTED]> wrote: > > (I think this has been discussed on the list before, but not sure where/when.) > > What is the best way to achieve the following functionality - > >Given two layers L1 and L2, I want L2 limited by it's distance f

Re: [Gimp-developer] Best way for "limit distance"

2004-11-29 Thread Joao S. O. Bueno Calligaris
Moin .. I e written the python-fu to to that. If someone else is interested, just mail me. On Monday 29 November 2004 22:25, Joseph Heled wrote: > (I think this has been discussed on the list before, but not sure > where/when.) > > What is the best way to achieve the following functionality - >

Re: [Gimp-developer] Best way for "limit distance"

2004-11-29 Thread Joao S. O. Bueno Calligaris
On Monday 29 November 2004 22:25, Joseph Heled wrote: > (I think this has been discussed on the list before, but not sure > where/when.) > > What is the best way to achieve the following functionality - > >Given two layers L1 and L2, I want L2 limited by it's distance > from L1 > >Resul

[Gimp-developer] Best way for "limit distance"

2004-11-29 Thread Joseph Heled
(I think this has been discussed on the list before, but not sure where/when.) What is the best way to achieve the following functionality - Given two layers L1 and L2, I want L2 limited by it's distance from L1 Result <- L1 - MIN( MAX(L1 - L2), -20), 20) (This expression uses L1/L2 as p