Answers for "how to take a text from a img in python"

2

get text from image python

img = cv2.imread('image.png')

text = pytesseract.image_to_string(img)
print(text)
Posted by: Guest on April-06-2021

Code answers related to "how to take a text from a img in python"

Python Answers by Framework

Browse Popular Code Answers by Language