I am trying to write a function for the Gamma Correction, this is what I have so far. the problem is the intensities of the output image is either 0 or 255. what am I doing wrong?

2 次查看(过去 30 天)
function adjust_im= Gamma_c(im, y, c)
rows = size(im,1);
cols = size(im,2);
mat= zeros(rows,cols,class(im));
for r=1: rows
for co=1: cols
pixel = im(r,co);
p1 = double(pixel/255);
p2 = double(c*((double(p1))^y));
p3 = double(p2*255);
mat(r,co) = round(p3);
end
end
adjust_im= mat;

采纳的回答

Adam
Adam 2018-10-24
编辑:Adam 2018-10-24
double(pixel/255)
will divide pixel by 255 then convert to a double. Assuming your image is an 8-bit integer data type this is not what you want as it will use integer division with truncation so everything apart from 255 will become 0. Use
pixel = double( im(r,co) );
or convert the whole image to double before the for loop (probably more efficient) and then you should not need all the other casts to double that you have.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Gamma Functions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by