How deblur an image???
이전 댓글 표시
Someone can help me in deblur this image in matlab please!!!
Thanks!
답변 (1개)
Frank
2011년 5월 18일
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
2011년 5월 18일
Sean de Wolski
2011년 5월 18일
Define "Not enough"
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
2011년 5월 18일
카테고리
도움말 센터 및 File Exchange에서 Deblurring에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!