How to clear dots in image
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ı worked on this image but couldn`t get rid of the that white dots how can ı do that?
1 commentaire
Réponses (1)
Akira Agata
le 10 Juin 2020
How about the following?
[X,map] = imread('4.png');
X2 = medfilt2(X);
imwrite(X2,map,'output.png');

Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!