How to clear dots in image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ı worked on this image but couldn`t get rid of the that white dots how can ı do that?
1 comentario
Respuestas (1)
Akira Agata
el 10 de Jun. de 2020
How about the following?
[X,map] = imread('4.png');
X2 = medfilt2(X);
imwrite(X2,map,'output.png');

2 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!