ocr-tesseract-wrapper

Tiny wrapper around pytesseract with image preprocessing and OCR configurations


License
MIT
Install
pip install ocr-tesseract-wrapper==0.0.8

Documentation

ocr-tesseract-wrapper

Tiny wrapper around pytesseract with image preprocessing and OCR configurations

Requirements

Basic usage

from ocr_tesseract_wrapper import OCR
ocr_tool = OCR()
results = ocr_tool.ocr([image])  # where image is Pillow image or string image path

Advanced usage

from ocr_tesseract_wrapper import OCR
ocr_tool = OCR()
results = ocr_tool.ocr([image1, image2], config=[])
"""
where config parameter is list of additional configs and restrictions for each of the 
images given to the OCR. for instance: [None, 'tessedit_char_whitelist=0123456789'] will 
apply no restriction to the first but will only return numeric characters from the second image.
"""