This forum has been archived. All content is frozen. Please use KDE Discuss instead.

G'MIC: Alternative to existing chromatic aberration filter

Tags: None
(comma "," separated)
User avatar
PidhyFox
Registered Member
Posts
2
Karma
0
Hi,
I've been using the existing Chromatic Aberration (CA) filter in G'MIC for quite some time to make the desired effects. But, one thing that I note that it based on shifting the channels (move transform), so I think it looks flat and a little bit unnatural, the center and corners of the image are all having the same amount of CA effects, much more like a stereoscopic image. Here's what the existing filter looks like:
Image

Another method is based on scaling the channels (scale transform), where basically the center of the image stays sharp and getting more separated toward the corners/edges. I've been exploring few method to create this kind of CA effect, including with the Krita's separate image (Image > Separate Image...) option which separates the image into individual RGB channels, which works good as well. But I want to make it a little bit more automated.

In G'MIC, there's even an option to create your own filter through "Various > Custom Code". This one is pretty powerful, but as an artist I barely understand a thing! ;D After hours of trying to figure out the technical references on G'MIC's website https://gmic.eu/reference.shtml I came out with this rough bit of code that I wrote myself:
Code: Select all
name valg
name valb
name amount

amount=1.5

valg={100+($amount)}
valb={100+(2*$amount)}

to_rgba
split c resize2dx[1] $valg% resize2dx[2] $valb% append c,0.5
split c autocrop[3] resize_as_image[0-2] [3],0,0,0.5,0.5 append c,0.5

Which then resulted like this:
Image

The only thing I need to change is the amount value.
Overall, I am satisfied enough with the results, although the code may looks rough and a bit how you doin'. Even though it uses RGBA conversion, it may not work well with images with transparency. Details below.

Now into the code breakdown:
- Three names are declared for the custom variables I want to use. valg for green channel scale, valb for blue channel scale, and amount for basically the strength of the effect.
- Set the amount value, this line is where I can change the filter strength.
- valg and valb formulas are for adding the values to the main code. This in percentage, so basically the green channel will be enlarged by the amount of 100+amount% and the blue channel by 2 times the amount of green.
- After converting into rgba, the image is then split by channels, then green and blue channel is individually resized with the corresponding values above and then rejoined.
- The second split is just to crop the resized channels to the original size, which referred to the alpha channel. This is why it might not work well with image with transparency.
- Take note that entering 0 as the amount will break the filter, as maybe the autocrop decides to crop the whole image.

There you go, feel free to give a feedback as I completely new to this code. It could be polished further! ;) I don't even know how to add this to the filter lists, all I can do is set it as a favorite filter, rename it, and call it a day. ;D
Also feel free to use the custom code as well! I hope it helps!

Cheers
-PidhyFox / Kampidh

edit: changed the expressions using correct mathematical parser

Last edited by PidhyFox on Fri Aug 19, 2022 4:07 am, edited 1 time in total.
otsoa
Registered Member
Posts
5
Karma
0
Wow, thx ! Nice custom filter. Good alternative to Blender chromatic aberation.
otsoa
Registered Member
Posts
5
Karma
0
Hi ! Very nice script but in 2.9.8 version off G'mic the script return this error:
Command 'resize': Invalid argument '[3],0,0;0.5,0.5'.

If I comment 'resizer' line it's work. Thx !
User avatar
PidhyFox
Registered Member
Posts
2
Karma
0
otsoa wrote:Hi ! Very nice script but in 2.9.8 version off G'mic the script return this error:
Command 'resize': Invalid argument '[3],0,0;0.5,0.5'.

If I comment 'resizer' line it's work. Thx !


Hi! Newer G'mic use resize_as_image instead. I updated the script.
otsoa
Registered Member
Posts
5
Karma
0


Bookmarks



Who is online

Registered users: bartoloni, Bing [Bot], Google [Bot], Sogou [Bot], Yahoo [Bot]