Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

extract text from image python without tesseract

from PIL import Image
from pytesseract import pytesseract
  
# Defining paths to tesseract.exe
# and the image we would be using
path_to_tesseract = r"C:Program FilesTesseract-OCR	esseract.exe"
image_path = r"csvsample_text.png"
  
# Opening the image & storing it in an image object
img = Image.open(image_path)
  
# Providing the tesseract executable
# location to pytesseract library
pytesseract.tesseract_cmd = path_to_tesseract
  
# Passing the image object to image_to_string() function
# This function will extract the text from the image
text = pytesseract.image_to_string(img)
  
# Displaying the extracted text
print(text[:-1])
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #extract #text #image #python #tesseract
ADD COMMENT
Topic
Name
1+5 =