text recognition python library

Solutions on MaxInterview for text recognition python library by the best coders in the world

showing results for - "text recognition python library"
Thiago
04 Mar 2020
1pip install pytesseract
Dina
01 Oct 2020
1import cv2 
2import pytesseract
3
4img = cv2.imread('image.jpg')
5
6# Adding custom options
7custom_config = r'--oem 3 --psm 6'
8pytesseract.image_to_string(img, config=custom_config)
similar questions
queries leading to this page
text recognition python library