MATLAB: Increase brightness in part of an image

brightnessimageimage processingimcontrast()MATLAB

Hi, I was wondering if anyone would know if it is possible to do something like what I present in the following picture.
The image I'm interested in treating is one of 8000×8000 pixels size and in gray scale, what I really need is to vary the brightness of a certain region of the image.
(What I'm enclosing is a bit of a mess, but I think it exemplifies well what I need. It's made with photoshop)

Best Answer

Depending on how you are constructing your "complex geometry", sometimes you can construct masks to select pixels. For example you might be able to use poly2mask() . Or sometimes it can be useful to use Computer Vision's insertshape() to paint various shapes into an array, after which you would binarize it (because insertshape() always creates rgb) and use it as the mask.