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

GEGL - run C2g batch in command line

This discussion is connected to the gimp-user-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.

15 of 15 messages available
Toggle history

Please log in to manage your subscriptions.

GEGL - run C2g batch in command line waldauf 23 Jan 09:55
  GEGL - run C2g batch in command line Casey Connor 23 Jan 19:15
   GEGL - run C2g batch in command line rich2005 23 Jan 19:31
   GEGL - run C2g batch in command line Partha Bagchi 23 Jan 20:15
  GEGL - run C2g batch in command line Partha Bagchi 23 Jan 20:40
  GEGL - run C2g batch in command line Øyvind Kolås 23 Jan 22:29
   GEGL - run C2g batch in command line waldauf 24 Jan 11:05
    GEGL - run C2g batch in command line waldauf 03 Feb 13:55
     GEGL - run C2g batch in command line waldauf 05 Feb 12:41
      GEGL - run C2g batch in command line waldauf 10 Feb 09:47
       GEGL - run C2g batch in command line Partha Bagchi 12 Feb 04:01
        GEGL - run C2g batch in command line waldauf 22 Feb 08:15
         GEGL - run C2g batch in command line Partha Bagchi 23 Feb 00:01
          GEGL - run C2g batch in command line Owen Cook 23 Feb 00:15
          GEGL - run C2g batch in command line waldauf 23 Feb 10:57
2017-01-23 09:55:08 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

Hello folks!

Is there some way how to run Tools/GEGL/C2G convertion in command line like batch?

For example - I have 10 pictures which I want to convert with some params. This conversion takes a lot of time when you have to load picture into Gimp, set C2G params and convert. I would like to convert it trough night like batch

Thx for your advice in advance.

Waldauf

Casey Connor
2017-01-23 19:15:51 UTC (about 7 years ago)

GEGL - run C2g batch in command line

Sorry to derail -- but this piqued my interest in c2g -- where can one find it in recent GIMPs? It's not in the Tools->GEGL menu... (I'm on otto-kesselgulasch-gimp-edge PPA).

Thanks, -c

On 01/23/2017 01:55 AM, waldauf wrote:

Hello folks!

Is there some way how to run Tools/GEGL/C2G convertion in command line like batch?

For example - I have 10 pictures which I want to convert with some params. This conversion takes a lot of time when you have to load picture into Gimp, set C2G params and convert. I would like to convert it trough night like batch

Thx for your advice in advance.

Waldauf

rich2005
2017-01-23 19:31:42 UTC (about 7 years ago)

GEGL - run C2g batch in command line

Sorry to derail -- but this piqued my interest in c2g -- where can one find it in recent GIMPs? It's not in the Tools->GEGL menu... (I'm on otto-kesselgulasch-gimp-edge PPA).

Thanks, -c

In gimp 2.9.5 the menu entry is

colors -> desaturate -> color to gray

For incorporating in a batch operation? AFAIK since c2g does not show in the procedure browser, it might not be possible.

rich: www.gimp-forum.net

Partha Bagchi
2017-01-23 20:15:22 UTC (about 7 years ago)

GEGL - run C2g batch in command line

It's under Colors -> Desaturate -> Color to Gray

On Mon, Jan 23, 2017 at 2:15 PM, Casey Connor < gimp-user-list@caseyconnor.org> wrote:

Sorry to derail -- but this piqued my interest in c2g -- where can one find it in recent GIMPs? It's not in the Tools->GEGL menu... (I'm on otto-kesselgulasch-gimp-edge PPA).

Thanks, -c

On 01/23/2017 01:55 AM, waldauf wrote:

Hello folks!

Is there some way how to run Tools/GEGL/C2G convertion in command line like
batch?

For example - I have 10 pictures which I want to convert with some params. This
conversion takes a lot of time when you have to load picture into Gimp, set C2G
params and convert. I would like to convert it trough night like batch

Thx for your advice in advance.

Waldauf

_______________________________________________ gimp-user-list mailing list
List address: gimp-user-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list List archives: https://mail.gnome.org/archives/gimp-user-list

Partha Bagchi
2017-01-23 20:40:06 UTC (about 7 years ago)

GEGL - run C2g batch in command line

If I am not mistaken, you need to put everything in an XML file as gegl from command line needs an XML file to operate on. Put everything in an XML file and then do the following:
gegl file.xml -o output.png.

Once you do that I am sure you can figure out how to do that for 10 images.

Anyway, that's my understanding. Others may be more helpful to you.

HTH, Partha

On Mon, Jan 23, 2017 at 4:55 AM, waldauf wrote:

Hello folks!

Is there some way how to run Tools/GEGL/C2G convertion in command line like batch?

For example - I have 10 pictures which I want to convert with some params. This
conversion takes a lot of time when you have to load picture into Gimp, set C2G
params and convert. I would like to convert it trough night like batch

Thx for your advice in advance.

Waldauf

-- waldauf (via www.gimpusers.com/forums) _______________________________________________ gimp-user-list mailing list
List address: gimp-user-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list List archives: https://mail.gnome.org/archives/gimp-user-list

Øyvind Kolås
2017-01-23 22:29:55 UTC (about 7 years ago)

GEGL - run C2g batch in command line

On Mon, Jan 23, 2017 at 10:55 AM, waldauf wrote:

Hello folks!

Is there some way how to run Tools/GEGL/C2G convertion in command line like batch?

For example - I have 10 pictures which I want to convert with some params. This conversion takes a lot of time when you have to load picture into Gimp, set C2G params and convert. I would like to convert it trough night like batch

In recent GEGL releases there is an underdocumented commandline one-liner shorthand to avoid creating XML documents:

For instance:

gegl input.jpg -o output.png -- c2g radius=1300 samples=4 iterations=23 vignette

will apply the c2g operation with the following paramteres, followed by the vignette filter with default parameters. To make this apply to multiple images one could for instance do:

mkdir /tmp/out ; for a in *.jpg; do echo $a; gegl $a -o /tmp/out/$a.png -- gegl:c2g radius=1300 samples=4 iterations=90 ; done

GEGL will complain if you specify properties not valid for a given operation and print the exisiting properties that can be assigned. If the gegl: prefix is avoided on an operation gegl tries with gegl: pre-pended.

/pippin

2017-01-24 11:05:28 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

In recent GEGL releases there is an underdocumented commandline one-liner shorthand to avoid creating XML documents:

For instance:

gegl input.jpg -o output.png -- c2g radius=1300 samples=4 iterations=23 vignette

will apply the c2g operation with the following paramteres, followed by the vignette filter with default parameters. To make this apply to multiple images one could for instance do:

mkdir /tmp/out ; for a in *.jpg; do echo $a; gegl $a -o /tmp/out/$a.png -- gegl:c2g radius=1300 samples=4 iterations=90 ; done

GEGL will complain if you specify properties not valid for a given operation and print the exisiting properties that can be assigned. If the gegl: prefix is avoided on an operation gegl tries with gegl: pre-pended.

/pippin

Great... many thanks you. I'll try it today or tomorrow evening and will say. :]

Walda

2017-02-03 13:55:13 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

Works like charm. Many thanks! :]

2017-02-05 12:41:46 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

Hello,

I did test where I converted picture to BW in Gimp and command line with GEGL. I have to say that there is big different between this two ways. Always I used both default parameters: * radius = 300
* samples = 4
* iterations = 10

Converting in Gimp taked around 8 seconds.

Converting in GEGL taked around 28 seconds: % gegl res_WLDF1130.jpg -o res_WLDF1130_gegl.JPG -- c2g radius=300 samples=4 iterations=10 EEEEeEeek! 1 GeglBuffers leaked
gegl res_WLDF1130.jpg -o res_WLDF1130_gegl.JPG -- c2g radius=300 samples=4 27,39s user 0,15s system 99% cpu 27,737 total

As you can see - converted picture from Gimp has better saturated colors than the one from GEGL. For my eye is picture from Gimp better.

Can I ask you how to achieve the same result?

2017-02-10 09:47:43 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

Hello,

just small attempt to highlight this question... :]

Partha Bagchi
2017-02-12 04:01:02 UTC (about 7 years ago)

GEGL - run C2g batch in command line

I don't know what to tell you. :(

I loaded your original image in McGimp (my Mac GIMP build) and then used the gegl command line with same parameters: rad = 300, samples = 4, iter = 10 and I got identical results.

$ date; gegl res_WLDF1130.jpg -o res_WLDF1130-GEGL-CLI.jpg -- c2g

radius=300 samples=4 iterations=10; date Sat Feb 11 22:59:19 EST 2017
EEEEeEeek! 1 GeglBuffers leaked
Sat Feb 11 22:59:21 EST 2017

On Fri, Feb 10, 2017 at 4:47 AM, waldauf wrote:

Hello,

just small attempt to highlight this question... :]

-- waldauf (via www.gimpusers.com/forums) _______________________________________________ gimp-user-list mailing list
List address: gimp-user-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-user-list List archives: https://mail.gnome.org/archives/gimp-user-list

2017-02-22 08:15:41 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

I don't know what to tell you. :(

I loaded your original image in McGimp (my Mac GIMP build) and then used
the gegl command line with same parameters: rad = 300, samples = 4, iter =
10 and I got identical results.

$ date; gegl res_WLDF1130.jpg -o res_WLDF1130-GEGL-CLI.jpg -- c2g

I tried it again and have to say I overlooked this message. I got the same error(?) message. :/

Partha Bagchi
2017-02-23 00:01:06 UTC (about 7 years ago)

GEGL - run C2g batch in command line

On Wed, Feb 22, 2017 at 3:15 AM, waldauf wrote:

I don't know what to tell you. :(

I loaded your original image in McGimp (my Mac GIMP build) and then used
the gegl command line with same parameters: rad = 300, samples = 4, iter =
10 and I got identical results.

$ date; gegl res_WLDF1130.jpg -o res_WLDF1130-GEGL-CLI.jpg -- c2g

I tried it again and have to say I overlooked this message. I got the same error(?) message. :/

What error message is that?

Owen Cook
2017-02-23 00:15:03 UTC (about 7 years ago)

GEGL - run C2g batch in command line

On Wed, Feb 22, 2017 at 3:15 AM, waldauf wrote:

I don't know what to tell you. :(

I loaded your original image in McGimp (my Mac GIMP build) and then used
the gegl command line with same parameters: rad = 300, samples = 4, iter =
10 and I got identical results.

$ date; gegl res_WLDF1130.jpg -o res_WLDF1130-GEGL-CLI.jpg -- c2g

I tried it again and have to say I overlooked this message. I got the same error(?) message. :/

What error message is that?

In my case

owen@CQ43 ~/Pictures $ date; ~/Gimp-GIT/bin/gegl IMG_1284.JPG -o res_WLDF1130-GEGL-CLI.jpg -- c2g Thursday 23 February 11:08:06 AEDT 2017 EEEEeEeek! 1 GeglBuffers leaked

Owen

2017-02-23 10:57:55 UTC (about 7 years ago)
postings
7

GEGL - run C2g batch in command line

What error message is that?

In my case:
% time gegl res_WLDF1130.jpg -o res_WLDF1130_gegl.JPG -- c2g radius=300 samples=4 iterations=10 EEEEeEeek! 1 GeglBuffers leaked