how to find the image damaged area pixels and fill the area in appropriate way.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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
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.
Respuestas (1)
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
el 24 de Feb. de 2017
" .. by detecting the white area(s) .. " How to do that?? Any suggestions?
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.
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!