0
爲什麼我不能運行這個函數?和標題顯示的錯誤信息?下標索引必須是matlab中的實數正整數或logicalsi
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);
請在問題中發佈問題的詳細信息以及問題的陳述(例如「Matlab中的意外錯誤」)! – durron597