Maybe a very basic question, but after googling a bit, I found no example on this specific kind of operation.
Basically I'd like to extract highlights from input HDR image (*.hdr) to a PNG (or JPG)
As an example, lets imagine the typical sunny landscape: the produced map should only have a smoothed white spot corresponding to the sun and everything else black.
I tried a few commands, such as
Code: Select all
convert <source.hdr> -levels 80,100% <dest.png>
Is there a specifc operator or multiple passes before obtaining such map?
Thanks!