How to clear dots in image
1 view (last 30 days)
Show older comments
ı worked on this image but couldn`t get rid of the that white dots how can ı do that?
Answers (1)
Akira Agata
on 10 Jun 2020
How about the following?
[X,map] = imread('4.png');
X2 = medfilt2(X);
imwrite(X2,map,'output.png');

See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!