Untitled
Anonymous
plain_text
12/23/2024 5:21 PM
356 B
13
Indexable
from PIL import Image import pytesseract # Load the image image_path = "/mnt/data/IMG-20241223-WA0092.jpg" image = Image.open(image_path) # Extract text from the image using pytesseract extracted_text = pytesseract.image_to_string(image) extracted_text
Editor is loading...
Leave a Comment