Borrar filtros
Borrar filtros

how to find the image damaged area pixels and fill the area in appropriate way.

3 visualizaciones (últimos 30 días)
I want to find damaged region of an damaged digital image then need to find the the pixels of that region in order to fill the place in an appropriate way. If anybody know a tutorial site or any other web space to refer, could you please mention ?
  2 comentarios
Image Analyst
Image Analyst el 11 de Feb. de 2017
Who knows what you mean by damaged? I don't. Do you mean like regions that might be repaired if you used the healing brush in Photoshop? Do you mean Salt and Pepper noise? Something else? You forgot to attach your image and indicate what areas were considered "damaged". Please attach your image so we can help you.
Piyum Rangana
Piyum Rangana el 11 de Feb. de 2017
Editada: Image Analyst el 11 de Feb. de 2017
Damaged images like the attached one. Previously I meant the degraded areas of ancient wall paintings. Just I need to find the pixels around the degraded region and fill it, according to the, found pixel values.

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 11 de Feb. de 2017
That's called inpainting. Create a mask by detecting the white area(s), then use imregionfill().
  2 comentarios
Tushar Shinde
Tushar Shinde el 24 de Feb. de 2017
" .. by detecting the white area(s) .. " How to do that?? Any suggestions?
Walter Roberson
Walter Roberson el 24 de Feb. de 2017
You could start with
ROI = all(IMG_0305 >= 200,3) & (IMG_0305(:,:,1) >= 220);
and tweak a bit from there.
The blob near the center appears to be > 220 for all channels, but the blob to the left is a bit dimmer than that on the green channel. There are little patches here and there which do not need repair but which are part of the ROI as computed above.
One possibility would be to use imfill('holes') on the above ROI and then bwareafilter() to remove the smaller patches.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by