Do you know any technique for background removal of patchy image using IP toolbox?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am having an image with patches or blocky effect. I want to remove that borders of blocks sothat image will be continuous. Is there any method in MATLAB for the same?
0 comentarios
Respuestas (1)
Image Analyst
el 17 de Feb. de 2013
Sounds like an overly compressed jpeg image. You can try blurring the image with conv2() to make it smoother, but it won't increase the resolution.
blurredImage = conv2(double(grayImage), ones(3)/9, 'same');
imshow(blurredImage, []);
0 comentarios
Ver también
Categorías
Más información sobre Image Filtering and Enhancement en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!