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