Facebook
From Silly Crocodile, 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)

Replies to Re: Untitled rss

Title Name Language When
Re: Re: Untitled Scorching Hedgehog python 3 Years ago.