i need to brighten or darken an 8 bit image by taking an input , a number between 0 (means no change ) and 100 (means intensity of all pixels is 255 ) , can anyone help ??

조회 수: 1 (최근 30일)
the aim is to perform brightness correction or contrast improvement using suggested algorithm !

답변 (1개)

Image Analyst
Image Analyst 2015년 3월 3일
편집: Image Analyst 2015년 3월 4일
It's simple algebra:
image1 = imread('cameraman.tif');
minValue = double(min(image1(:)))
maxValue = double(max(image1(:)))
slope = (255 - minValue)/100
v = 100; % Whatever you want in the range 0-100.
amountToAdd = slope * v
image2 = uint8(image1 + amountToAdd);
imshow(image2);
newMinValue = double(min(image2(:)))
newMaxValue = double(max(image2(:)))

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by