This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
为什么我不能运行这个功能?和标题显示之类的错误信息?
function y = contrast_stretching(citra)
double_citra = double (citra);
[m n] = size (citra);
for i = 1:m
for i =1:n
y(i,j) = double_citra(i,j) + 100;
end;
end;
y=uint8 (y);
imshow(y);