I think that it could be done with:
https://www.imagemagick.org/script/fx.php
Search found 3 matches
- 2017-03-03T12:55:45-07:00
- Forum: Users
- Topic: How to get max saturation from image sequence
- Replies: 12
- Views: 4554
- 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.
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.
- 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
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 -maximum 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