Applying smoothing to image
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michel Joge
am 8 Jun. 2020
Kommentiert: Image Analyst
am 30 Mai 2021
How can I apply smoothing to the image with 3*3 filter mask without Image Processing Tool Box (Manually)
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 8 Jun. 2020
Is it gray scale or color? And this seems to be the hot topic of the month. There are so many threads lately on manually computing blurring or filtering of images with nested for loops - just search for them. I'm attaching my demo.
Weitere Antworten (2)
Rik
am 8 Jun. 2020
A convolution may be what you need.
mask=rand(3,3);mask=mask/sum(mask(:));
IM=uint8(randi(255,100,100));
IM2=convn(IM,mask,'same');
magramane khadidja
am 28 Mai 2021
how smoothing image for done by filling up the small regions and dilating the boundary of the thresholded image?
7 Kommentare
Image Analyst
am 30 Mai 2021
@magramane khadidja, it's still showing you as not having posted a question of your own (in a new thread like I asked). Where is it? What's the link? Over there, give your code with the functions I listed, and attach your image.
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!