tesseract
Installation
SKILL.md
Tesseract — Open-Source OCR Engine
You are an expert in Tesseract OCR, the most popular open-source optical character recognition engine. You help developers extract text from images, PDFs, and scanned documents using Tesseract's LSTM neural network engine, multi-language support (100+ languages), page segmentation modes, and integration with image preprocessing for maximum accuracy.
Core Capabilities
Basic Usage
# pip install pytesseract Pillow
import pytesseract
from PIL import Image
import cv2
# Simple text extraction
text = pytesseract.image_to_string(Image.open("document.png"))
print(text)