Not sure if this is “beginner” or “expert”. Perhaps somewhere in between? I guess it depends on what oF supports… Anyway:
I’m wondering if it’s possible to relatively easily brighten an image (ofImage)? I’m not seeing a built-in method to control things like brightness/contrast, so I’m guessing it has to be hand-coded.
One thought I had was to overlay a semi-transparent all-white image over the source image that I want to brighten. (Issues: I’d have to somehow mask the all-white image vis-a-vis the alpha channel in my source image so that I’m not just brightening a white rectangle.)
Another thought is to just simply increase each of the red/blue/green channels in the image’s pixel data. That might be an OK compromise, but I don’t think it’s really “true brightening”.
Anyone have any suggestions? Thanks in advance.