Untitled

 avatar
unknown
plain_text
a year ago
240 B
8
Indexable
from PIL import Image

import pytesseract


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

# Perform OCR to extract text
text = pytesseract.image_to_string(image)

te
xt
Editor is loading...
Leave a Comment