File size: 572 Bytes
2e77964
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import pytesseract
from PIL import Image

# Path to Tesseract executable (if not in PATH, otherwise omit this line)
pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'

# Function to extract text from an image using Tesseract
def extract_text_from_image(image_path):
    # Open the image using PIL
    image = Image.open(image_path)
    
    # Extract text from image using Tesseract
    extracted_text = pytesseract.image_to_string(image, lang='eng+hin')  # OCR for both English and Hindi
    
    return extracted_text