I'm currently working in a project where noise removal in document image is required. But i cant create any useful code to start my project. thanks.

According to what I've studied, noise (specifically salt/pepper noise) that produce in faulty scanner can be removed by k-Fill algorithm, but i can't understand that theory.

I'm using OpenCV in C++ , and Codeblocks IDE. I'm new in the world of image processing. Source code or any related link/s are appreciated.

link|improve this question

50% accept rate
2  
Median filter is simple and works nicely against salt/pepper noise. – Kos Dec 28 '11 at 13:29
But after i used median filter, the image seems so blurred. I guess it will not work on Document images that has small fonts. – kcire arraveug Dec 29 '11 at 18:59
feedback

1 Answer

If you do not understand k-fill try to use a simpler approach first.

Here is an article of alternative noise reduction algorithms with their performances.

I would suggest you to take a try with opening. The OpenCV documentation has a short explanation on built-in morphological operations. You can make experiments with the example code as well.

link|improve this answer
Thanks for the info. I think i'll have to study those morphology functions in OpenCV. Maybe they can help me a lot. – kcire arraveug Dec 29 '11 at 12:05
Sir, I've tried that opening and also closing morphology but it can only remove salt and pepper noise. It failed when I've tried it with photocopied image that contains marginal noise. Can you suggest other techniques? – kcire arraveug Dec 29 '11 at 14:11
You can play with the size and the form of the structuring element and the number of iterations in which the morphological operator is used. You may also try the median filter what Kos suggested. – rics Dec 29 '11 at 16:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.