Re: [Gimp-developer] Looking for applications for this math idea

2015-02-28 Thread jcupitt
Denoising is another obvious application. You could perhaps do your decomposition at various points over the image surface and see if you can find some noise function that's present everywhere and that therefore comes from the sensor rather than the object. Again, there is a huge literature and it

[Gimp-developer] typo in gimpruler.c

2015-06-12 Thread jcupitt
Hi, I noticed a small typo in gimpruler.c on the gtk3-port branch: g_object_class_install_property (object_class, PROP_LOWER, gimp_param_spec_unit ("unit", it should of course be PROP_UNIT. John _

Re: [Gimp-developer] Future of Python v2 scripts

2015-11-26 Thread jcupitt
On 25 November 2015 at 16:21, Ofnuts wrote: > The latest Ubuntu (15;10) has dropped support for Python V2 (Python V2 is > still available via a PPA). Are there any plans to support V3 in Gimp, I think they were talking about this, but it was not ready in time. 15.10 still has python2 as the defau

Re: [Gimp-developer] Future of Python v2 scripts

2015-11-26 Thread jcupitt
On 26 November 2015 at 10:47, Joao S. O. Bueno wrote: > While it is is feasible to have Python3 as the system default install, > it is not practical to remove Python2 from the system. Even if it is > not installed by default (which I doubt very much) it will be > reachable via the default packagin

Re: [Gimp-developer] Image viewer for openexr and floating point tiff file formats, and maybe even XCF?

2015-12-31 Thread jcupitt
ntro to the program in the manual: http://www.vips.ecs.soton.ac.uk/supported/current/doc/html/nipguide/nipguidese1.html Please mail me if you have any questions, or use the github tracker: https://github.com/jcupitt/nip2/issues John ___ gimp-develope

Re: [Gimp-developer] GIMP 2.9.x AppImage for testing

2016-08-04 Thread jcupitt
On 4 August 2016 at 11:54, Carmelo DrRaw wrote: > I am working on an AppImage recipe that gets BABL, GEGL libmypaint and GIMP > from git, compiles them and bundles them into a portable AppImage. That sounds great! > If yes, please specify which distribution will be used for testing. gubuntu 16

Re: [Gimp-developer] GIMP 2.9.x AppImage for testing

2016-08-05 Thread jcupitt
On 5 August 2016 at 10:00, Carmelo DrRaw wrote: > Last night I have prepared a first appimage for testing. It contains: It seems to work well on gubuntu 16.04! I have some small comments: * I get the "Should a desktop file ..." install message on every launch, which is slightly annoying. * The

Re: [Gimp-developer] GIMP 2.9.x AppImage for testing

2016-08-05 Thread jcupitt
On 5 August 2016 at 12:41, Carmelo DrRaw wrote: >> On 05 Aug 2016, at 13:24, C R wrote: >> Also, I only get the message "Should a desktop file ..." on the first run, >> then I'm able to run the new desktop file like I do regularly (by hitting >> the Super key, and typing GIMP). The appimage onl

Re: [Gimp-developer] GIMP 2.9.x AppImage for testing

2016-08-05 Thread jcupitt
On 5 August 2016 at 13:25, Shlomi Fish wrote: > Pardon my ignorance, but what exactly is "Gubuntu" (which is the first time I Sorry, I should have been clearer, just ubuntu but with the gnome desktop rather than unity. John ___ gimp-developer-list mail

Re: [Gimp-developer] Windows 10 and Bash on Ubuntu

2017-02-04 Thread jcupitt
It sounds like you've managed it! As Partha says, you can't run graphical Linux programs directly from win10, you need to install an X11 server on the Windows side. >From the win desktop, install an X11 server, there are loads of free ones, and start it running. Check the instructions on how to se

Re: [Gimp-developer] Windows 10 and Bash on Ubuntu

2017-02-04 Thread jcupitt
On 4 February 2017 at 10:22, wrote: > Back in the Linux shell, enter something like > > export DISPLAY=0: Oh dear, I always get that the wrong way around, you need :0, not 0:. It's probably something else anyway, it depends how the network stacks on the linux and win subsystems are set up. expo

Re: [Gimp-developer] Gimp and Youtube.

2011-12-08 Thread jcupitt
Hi Chris, On 8 December 2011 05:34, Chris McCartney wrote: > Am I allowed to monetize Youtube videos with the visuals of Gimp? > If I am allowed, can I get written permission to monetize Youtube videos > with the visuals of Gimp? If you mean: use the wilbur icon or copy the various tool icons th

Re: [Gimp-developer] GIMP's future internal image data format

2012-01-28 Thread jcupitt
On 28 January 2012 06:10, Martin Nordholts wrote: > 2. Make GIMP clever. If GIMP encounters a tile with only values 0.0 > and 1.0, the 32 bpc data can be transparently, i.e. without the user > noticing, replaced with 1 bpc data. As soon as more bits of precision > is required to avoid loss of data

Re: [Gimp-developer] GIMP UI quality opinion

2012-02-17 Thread jcupitt
On 16 February 2012 16:25, Aleksey Midenkov wrote: > On Thu, Feb 16, 2012 at 8:18 PM, Bogdan Szczurek wrote: >> Why not? Write a script… or suggest solid action recording. These are the >> ways meant exactly for that kind of work. 40 click or 200 clicks – they'll >> all be annoying just the same

Re: [Gimp-developer] batch processing

2020-10-10 Thread jcupitt--- via gimp-developer-list
If you're comfortable at the command-line, imagemagick is very simple and runs everywhere: https://imagemagick.org With bash you can enter: for i in *.jpg; do convert $i --resize x768 resized_version_$i done My image processing package nip2 can batch-process in a GUI way, though it's a biza