Facebook
From oracle, 3 Years ago, written in Python.
Embed
Download Paste or View Raw
Hits: 617
  1. from PIL import Image
  2. import pytesseract
  3.  
  4. image = Image.open("NADA.png")
  5. path_pytes = r"/usr/bin/tesseract"
  6. pytesseract.pytesseract.tesseract_cmd = path_pytes
  7. text = pytesseract.image_to_string(image)
  8. print(text)

Replies to Untitled rss

Title Name Language When
Re: Untitled Morose Kangaroo python 3 Years ago.
Re: Untitled Colorant Meerkat python 3 Years ago.
Re: Untitled Silly Crocodile python 3 Years ago.
Re: Untitled Cobalt Peafowl python 3 Years ago.