目前我正在研究转换RAW图像的demosiac转换器项目,转换图像的一步是伽马校正。
这是我在matlab中的伽马校正函数:
function [res] = gamma_correct(I, value)
% res = gamma_correct(I, value)
%
% This function performs gamma correction
% on image 'I' where 'value' is the gamma
res = I;
X = 255 * (I/255).^(1/value);
imshow(X);
end
这个函数运行没有错误,但最后它给了我一个错误的输出
this is a screenshot of the output i get
任何帮助?