Image processing noise problem
조회 수: 1 (최근 30일)
이전 댓글 표시
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');
댓글 수: 0
답변 (1개)
Bhargavi Maganuru
2020년 4월 27일
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.
For more details follow the link https://www.mathworks.com/help/images/ref/imnoise.html#d120e138500
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!