Untitled

Anonymous
plain_text
03/02/2025 2:05 AM
312 B
13
Indexable
import pytesseract
from PIL import Image

# Load the image
image_path = "/mnt/data/IMG_20250302_073311.jpg"
image = Image.open(image_path)

# Extract text using OCR
extracted_text = pytesseract.image_to_string(image)
extracted_text

Editor is loading...
Leave a Comment