Alan
Alan

Reputation: 11

Cleaning up blurry images using Matlab

I want to take an image of blurry cylindrical objects and get rid of the blur, basically sharpen the image. How do I do that in Matlab?

Upvotes: 1

Views: 4182

Answers (3)

rwong
rwong

Reputation: 6162

In addition to all the good answers by others: for the very very simple inputs, you can simply threshold the image if you just need the boundary of those cylinders.

Upvotes: 1

rlb.usa
rlb.usa

Reputation: 15043

You can do it with filters.

See here, section 10.2.4 here: http://www.aquaphoenix.com/lecture/matlab10/page3.html

Upvotes: 1

bobobobo
bobobobo

Reputation: 67224

See the "sharpening" section in http://www.aquaphoenix.com/lecture/matlab10/page3.html.

Upvotes: 1

Related Questions