Untitled
Anonymous
plain_text
01/01/2025 3:07 AM
380 B
13
Indexable
from PIL import Image import pytesseract # Load the image file image_path = "/mnt/data/9-18 (1).jpg" image = Image.open(image_path) # Use OCR to extract text from the image extracted_text = pytesseract.image_to_string(image) # Display the extracted text extracted_text
Editor is loading...
Leave a Comment