Facebook
From Scorching Hedgehog, 3 Years ago, written in Python.
This paste is a reply to Re: Untitled from Silly Crocodile - go back
Embed
Viewing differences between Re: Untitled and Re: 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)