Reputation: 81
I was unable to find a solution to this problem posted in this thread
How can I deblur an image in matlab?
As suggested ,the image obtained after applying unsharp filter is
But the blurirness is not removed even after the unsharp filter. Can anyone suggest any other methods?
Upvotes: 0
Views: 976
Reputation: 11266
Deblurring is an inverse problem, and like most inverse problems there is no easy solution. So do not expect any magical method.
Having said that, there are some widely used methods for deblurring. Wiener deconvolution is one of the most popular methods used for deblurring.
For Wiener filtering in Matlab, see http://www.mathworks.com/help/toolbox/images/bqqhk8f.html
Upvotes: 3