MATLAB: Increase the brightness of an image

brightnessImage Processing Toolboxpixel

Hi all, I am trying to increase the brightness of an image by adding 100 to each pixel value. Can I know what's the code and step for it?

Best Answer

I = imread('peppers.png') ;
I1 = I+100 ;
imshow(I1) ;