py tesseract ocr code example
Example 1: pytesseract
pip install pytesseract
Example 2: ocr python library
import cv2
import pytesseract
img = cv2.imread('image.jpg')
# Adding custom options
custom_config = r'--oem 3 --psm 6'
pytesseract.image_to_string(img, config=custom_config)
Example 3: ocr python
# https://github.com/mindee/doctr
from doctr.models import ocr_predictor
model = ocr_predictor(det_arch='db_resnet50', reco_arch='crnn_vgg16_bn', pretrained=True)