How deblur an image???
3 views (last 30 days)
Show older comments
Someone can help me in deblur this image in matlab please!!!
Thanks!
0 Comments
Answers (1)
Frank
on 18 May 2011
You can use this to sharpen the image, that may help deblur it. This will allow you to select an area that you want to sharpen.
I = imread('image name');
imshow(I)
BW=roipoly;
imshow(BW)
h = fspecial('unsharp');
I2 = roifilt2(h,I,BW);
imshow(I)
figure, imshow(I2)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!