Facebook
From Colorant Meerkat, 3 Years ago, written in Python.
This paste is a reply to Untitled from oracle - go back
Embed
Viewing differences between Untitled and Re: Untitled
from PIL import Image
import pytesseract

image = Image.open("NADA.png")
path_pytes = r"/usr/bin/tesseract"
pytesseract.pytesseract.tesseract_cmd = path_pytes
text = pytesseract.image_to_string(image)
print(text)