user1016528
user1016528

Reputation: 81

Deblurring an image in MATLAB

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

http://tinypic.com/r/14bib77/6

But the blurirness is not removed even after the unsharp filter. Can anyone suggest any other methods?

Upvotes: 0

Views: 976

Answers (1)

Hakan Serce
Hakan Serce

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

Related Questions