この機能を実行できないのはなぜですか? そして、タイトルのようなエラーメッセージが表示されますか?
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);