high-pass filter in python fu - Printable Version +- Gimp-Forum.net (https://www.gimp-forum.net) +-- Forum: GIMP (https://www.gimp-forum.net/Forum-GIMP) +--- Forum: Extending the GIMP (https://www.gimp-forum.net/Forum-Extending-the-GIMP) +---- Forum: Scripting questions (https://www.gimp-forum.net/Forum-Scripting-questions) +---- Thread: high-pass filter in python fu (/Thread-high-pass-filter-in-python-fu) |
high-pass filter in python fu - theuncle2k - 06-01-2020 Hello everyone, it might be me overlooking something obvious, but I cannot find anywhere the procedure to call the high-pass filter in Python-fu. Just to be on the same page, the filter can be found in "filters - enhance - high pass.." in GIMP 2.10. I cannot find it in the procedure database. I also tried to look in the scripts folder, in order to import it or re-implement it, but it's not there, so it might be a built-in. Do you know how I can call the high-pass filter in a script? RE: high-pass filter in python fu - rich2005 - 06-01-2020 You have just hit the right moment: Kevin (Admin) is testing a combination of python and script-fu to run GEGL operations. High Pass is now a GEGL operation which is why it is not in the PDB. see: https://www.gimp-forum.net/Thread-Scripting-GEGL-operations An earlier post had the files for the filter: fu-python-high-pass.py and high-pass.scm Zipped and attached You can check it using the script-fu and the python plugin shows in the pdb as [attachment=4464] Tried in linux Gimp 2.10.18 and Win 10 (VM) 2.10.18 - seems to work ok. |