Untitled
unknown
plain_text
7 months ago
265 B
5
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