Answers for "python get text of png"

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

Python Answers by Framework

Browse Popular Code Answers by Language