Spaces:
Sleeping
Sleeping
| from PIL import Image | |
| import pytesseract | |
| def extract_text(image_path: str): | |
| img = Image.open(image_path) | |
| text = pytesseract.image_to_string(img) | |
| return text |
| from PIL import Image | |
| import pytesseract | |
| def extract_text(image_path: str): | |
| img = Image.open(image_path) | |
| text = pytesseract.image_to_string(img) | |
| return text |