how can I modulate blue areas of an image in its hue
I tried things like
Code: Select all
convert test.JPG -channel blue -modulate 40,40 test4.jpg but this always changes the whole image...Adriana
Code: Select all
convert test.JPG -channel blue -modulate 40,40 test4.jpg but this always changes the whole image...The area of interest changing means you can't use a fixed mask, but you can generate a mask for use with composite. Something like:mikolaskova wrote:*it's not always the same area of image, so I can not use composite...
Code: Select all
convert original.jpg -fuzz 50% -fill white -opaque blue -threshold 99% mask.png
Code: Select all
convert original.jpg -modulate 120,120,180 changed.png
convert original.jpg -fuzz 50%% -fill white -opaque blue -threshold 99%% mask.png
composite changed.png original.jpg mask.png a.png
Users browsing this forum: Amazon [Bot] and 5 guests