Do you know any technique for background removal of patchy image using IP toolbox?
3 ビュー (過去 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 Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!