1

I would like to filter an image to make it more clear/sharper. What would be the best filter method for this in OpenCV?

Chris
  • 8,030
  • 4
  • 37
  • 56
  • 2
    First, ignore openCV. What do you mean by "clear"? Is the image: Blurry? Noisy? Too dark? Too light? (Sorry, I can't help you with openCV, but I can help you with your question clarity.) – JayC Dec 21 '11 at 14:09
  • 1
    [This thread](http://stackoverflow.com/questions/8396140/sharpening-video-images-using-opencv) shares code that performs what you are looking for, and [this answer](http://stackoverflow.com/a/4993701/176769) as well. – karlphillip Dec 22 '11 at 11:31

2 Answers2

4

If you want to sharpen the image this question might help you.

And for noise reduction here I have found an interesting article.

Community
  • 1
  • 1
Diego Navarro
  • 9,316
  • 3
  • 26
  • 33
1

Filtering is a very broad topic and "make it more clear" is a rather vague objective. OpenCV has a number of filters implemented for you to try, and they are documented fairly extensively. If you are wanting more detailed advice, perhaps you should show some example images and explain what specifically you want to improve about them.

Chris
  • 8,030
  • 4
  • 37
  • 56