python detect text from a photo code example
Example: get text from image python
img = cv2.imread('image.png')
text = pytesseract.image_to_string(img)
print(text)
img = cv2.imread('image.png')
text = pytesseract.image_to_string(img)
print(text)