Borrar filtros
Borrar filtros

Applying smoothing to image

16 visualizaciones (últimos 30 días)
Michel Joge
Michel Joge el 8 de Jun. de 2020
Comentada: Image Analyst el 30 de Mayo de 2021
How can I apply smoothing to the image with 3*3 filter mask without Image Processing Tool Box (Manually)

Respuesta aceptada

Image Analyst
Image Analyst el 8 de Jun. de 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.
  1 comentario
Michel Joge
Michel Joge el 9 de Jun. de 2020
It is gray scale color. Thank you for attaching a demo!

Iniciar sesión para comentar.

Más respuestas (2)

Rik
Rik el 8 de Jun. de 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
magramane khadidja el 28 de Mayo de 2021
how smoothing image for done by filling up the small regions and dilating the boundary of the thresholded image?
  7 comentarios
magramane khadidja
magramane khadidja el 30 de Mayo de 2021
@Image Analyst yes i want
Image Analyst
Image Analyst el 30 de Mayo de 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.

Iniciar sesión para comentar.

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by