image processing problem in Salt and Pepper noise
Ältere Kommentare anzeigen
i try to add Salt and Pepper noise after that try to use median filter to denoise it in this code but has a problem
code ;
I = imread('PicQ1.png');
figure ,imshow(I)
J = imnoise(I,'salt & pepper',0.05);
figure ,imshow(J)
M = medfilt2(J);
imshowpair(J,M,'montage')
--------------------------------------------
the proplem shown in pic attached 

Antworten (2)
Image Analyst
am 1 Jun. 2020
2 Stimmen
A better method is to use a modified median filter where you only replace the noise pixels with the median, not ALL pixels. This will prevent blurring and shape changing.

Sugar Daddy
am 1 Jun. 2020
Bearbeitet: Sugar Daddy
am 1 Jun. 2020
You are feeding a coloured image which is three dimensional ( RGB) while medfilt2 needs 2D data.
For example
I = imread('cameraman.tif');%default image
figure ,imshow(I);
J = imnoise(I,'salt & pepper',0.05);
M = medfilt2(J);% Now this will work because I is a gray scaled image
imshowpair(J,M,'montage')

Either change your rgb image to grayscale or apply medfilt2 on all three colours sequentialy
see the answer of image analyst below about how to apply median filter on coloured image
2 Kommentare
Mohammad abu aqoulah
am 1 Jun. 2020
Sugar Daddy
am 1 Jun. 2020
If your issue is resolved please accept the answer
Kategorien
Mehr zu Image Filtering finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!