Pytesseract OCR multiple config options

PythonOcrTesseract

Python Problem Overview


I am having some problems with pytesseract. I need to configure Tesseract to that it is configured to accept single digits while also only being able to accept numbers as the number zero is often confused with an 'O'.

Like this:

target = pytesseract.image_to_string(im,config='-psm 7',config='outputbase digits')

Python Solutions


Solution 1 - Python

tesseract-4.0.0a supports below psm. If you want to have single character recognition, set psm = 10. And if your text consists of numbers only, you can set tessedit_char_whitelist=0123456789.

Page segmentation modes:
  0    Orientation and script detection (OSD) only.
  1    Automatic page segmentation with OSD.
  2    Automatic page segmentation, but no OSD, or OCR.
  3    Fully automatic page segmentation, but no OSD. (Default)
  4    Assume a single column of text of variable sizes.
  5    Assume a single uniform block of vertically aligned text.
  6    Assume a single uniform block of text.
  7    Treat the image as a single text line.
  8    Treat the image as a single word.
  9    Treat the image as a single word in a circle.
 10    Treat the image as a single character.
 11    Sparse text. Find as much text as possible in no particular order.
 12    Sparse text with OSD.
 13    Raw line. Treat the image as a single text line,
                        bypassing hacks that are Tesseract-specific.

Here is a sample usage of image_to_string with multiple parameters.

target = pytesseract.image_to_string(image, lang='eng', boxes=False, \
        config='--psm 10 --oem 3 -c tessedit_char_whitelist=0123456789')

Hope this helps.

Solution 2 - Python

Page segmentation modes:

  1. Orientation and script detection (OSD) only.

  2. Automatic page segmentation with OSD.

  3. Automatic page segmentation, but no OSD, or OCR. (not implemented)

  4. Fully automatic page segmentation, but no OSD. (Default)

  5. Assume a single column of text of variable sizes.

  6. Assume a single uniform block of vertically aligned text.

  7. Assume a single uniform block of text.

  8. Treat the image as a single text line.

  9. Treat the image as a single word.

  10. Treat the image as a single word in a circle.

  11. Treat the image as a single character.

  12. Sparse text. Find as much text as possible in no particular order.

  13. Sparse text with OSD.

  14. Raw line. Treat the image as a single text line, bypassing hacks that are Tesseract-specific.

OCR Engine modes:

  1. Legacy engine only.
  2. Neural nets LSTM engine only.
  3. Legacy + LSTM engines.
  4. Default, based on what is available.

Solution 3 - Python

The reason you are having trouble is because character restriction does not work in version 4.0. You have to force legacy mode (oem 0) to have it limit found characters. There is a bug somewhere in the tesseract team that they have not yet addressed.

Solution 4 - Python

Tesseract version 5.0.0-alpha can use the following command: (use psm=13 and oem=1 or 3)

pytesseract.image_to_string(export_image ,lang='eng', config='--psm 13 --oem 1 -c tessedit_char_whitelist=ABCDEFG0123456789')

Note that eng trained dataset is taken: https://github.com/tesseract-ocr/tessdata_fast/blob/master/eng.traineddata

Note:Tested on binary input images of +-60x60px with single character

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNiall OswaldView Question on Stackoverflow
Solution 1 - PythonthewaywewereView Answer on Stackoverflow
Solution 2 - PythonJonel Dominic BraveView Answer on Stackoverflow
Solution 3 - PythonRALPH BURLESONView Answer on Stackoverflow
Solution 4 - PythonMattView Answer on Stackoverflow