Answers for "using tesseract ocr with python"

5

text recognition 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)
Posted by: Guest on November-08-2020
0

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)
Posted by: Guest on May-03-2021

Code answers related to "using tesseract ocr with python"

Python Answers by Framework

Browse Popular Code Answers by Language