Do you know any technique for background removal of patchy image using IP toolbox?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Image Analyst
2013-2-17
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!