Ask Your Question

r4j's profile - activity

2017-10-18 20:48:08 -0600 received badge  Nice Question (source)
2014-08-24 03:00:07 -0600 received badge  Student (source)
2014-02-11 01:02:20 -0600 asked a question Adaptive binarization with opencv

I try to enhance characters for OCR process. I wonder is there any way to apply Adaptive Binarization to impact on characters like ABBYY technology? Here is an example:
image description

I would be great if you can give some advice or sample code in opencv.
Thanks in advance.

2014-01-21 21:37:26 -0600 asked a question Text cleaner in Opencv like ImageMagicK script

I try to make text in image cleaner and clearer before run OCR with tesseract. In this link, they provided a good scripts to do it by ImageMagicK. I wonder is possible to convert this script and function into OpenCV code? For example, the script with arguments like this:

 -g -e none -f 15 -o 20

From the explanation:

 -g ...................... convert document to grayscale before enhancing
 -e .... enhance ......... enhance image brightness before cleaning;
                           choices are: none, stretch or normalize; 
                           default=none
 -f .... filtersize ...... size of filter used to clean background;
                           integer>0; default=15
 -o .... offset .......... offset of filter in percent used to reduce noise;
                          integer>=0; default=5

How can I do the same in OpenCV code? As I am a newbie in OpenCV, I just only know how to convert to grayscale. Any help would be appreciated.