How deblur an image???

답변 (1개)

Frank
Frank 2011년 5월 18일

1 개 추천

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)

댓글 수: 4

Alessandro
Alessandro 2011년 5월 18일
It works a little but is not enough, what I can do to improve the sharpness?
Thanks!
Sean de Wolski
Sean de Wolski 2011년 5월 18일
Define "Not enough"
Frank
Frank 2011년 5월 18일
Read a bit into this (for the script):
http://www.mathworks.com/help/toolbox/images/ref/fspecial.html
and check this out, it maybe helpful.
http://m2matlabdb.ma.tum.de/download.jsp?MC_ID=5&MP_ID=188
Alessandro
Alessandro 2011년 5월 18일
"Not enough" means that I should get a better circle with less blurring.

댓글을 달려면 로그인하십시오.

제품

질문:

2011년 5월 18일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by