Image processing noise problem

I tried to write the code that will run SaltPepperNoise but I am making an error where can you help if it is not working.
I press run in the editor, but pause is stuck.
x=imread('PEPPERS.TIF');
x=im2double(x);
[row,col]=size(x);
for i=1:row
for j=1:col
N=floor(rand(1000,1000)+0.01)*255;
end
end
subplot(1,2,1)
imshow(x);
title('original');
subplot(1,2,2)
imshow(N);
title('SaltPeperImage');

回答 (1 件)

Bhargavi Maganuru
Bhargavi Maganuru 2020 年 4 月 27 日

0 投票

The variable N inside the loop is changing everytime and finally N is just a number.
To add salt and pepper noise to image, you can use imnoise function.

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

質問済み:

2020 年 4 月 22 日

回答済み:

2020 年 4 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by