Answers for "increase the brightness of an image matlab"

0

increase the brightness of an image matlab

I = imread('peppers.png') ;
I1 = I+50 ;
figure(1) ; imshow(I) ;
figure(2) ; imshow(I1) ;
Posted by: Guest on March-30-2020

Code answers related to "increase the brightness of an image matlab"

Browse Popular Code Answers by Language