Search found 3 matches

by Przemek89
2017-03-03T04:29:40-07:00
Forum: Users
Topic: How to get max saturation from image sequence
Replies: 12
Views: 4554

Re: How to get max saturation from image sequence

@snibgo: I searched for "evaluate max" source code here:
https://github.com/ImageMagick/ImageMagick
but i coud not find it.
If code uses HSL model to get the brightest pixel from many images, it should not be complicated to change it to saturation.
by Przemek89
2017-02-19T16:01:35-07:00
Forum: Users
Topic: How to get max saturation from image sequence
Replies: 12
Views: 4554

How to get max saturation from image sequence

I used

Code: Select all

convert *.jpg -maximum OUT.jpg
to get the brightest pixel and set it in OUT.jpg

Is it possible to do the same with saturation?
Get the most colorful pixel and set it in out.jpg...

Something like:

Code: Select all

convert *.jpg -maximumSaturation OUT.jpg