Gimp.DrawableFiilter, how-to inspect?

Greetings,

I have this Gimp.DrawableFiilter that appears to missing some documented Gegl properties, and I’m trying to find out where the error is, on my end or in the Gegl implementation.

The specific DrawableFilter is Gegl’s “Perlin Noise”. I’m able to produce its output with Python and set some of its ‘config’ properties, but there are two documented properties that throw a no-property-error when I call the 'config.set_property(blah, blah) function: ‘iterations’ and ‘z_offset’.

So I’d like to quickly list the set-able properties of a ‘Gimp.DrawableFilter.congig’ which would give me a checklist that I could cross-reference, but I have no idea how to get such a list.

Thanks for your attention.

Hi

The best list of all the Gegl filters and their properties is on gegl.org under “Operations”. Looking at that, the two properties you are having trouble with seem to be named “n” and “zoff” ! Not very obvious I agree. I hope that helps

In the GIMP 3.1.4 version there is a GEGL Filter Browser ( find it in the Help menu), which helps a lot.

@Al-Tona, thanks for mentioning the GEGL Filter Browser for me! @gummyCowboy, indeed, the development release of GIMP already has this feature in it and will be shipped as part of the planned 3.2 release. Stay tuned until this feature comes! Until then, you are welcome to use the development release to already get to use this feature.

Here’s a screenshot of what looking for gegl:perlin-noise looks like now.