paddleocr
11
—
by
deepghs
Image Model
OTHER
New
0 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary
AI model with specialized capabilities.
Code Examples
Usagebash
# Installation
pip install dghs-imgutilsUsagepython
# Basic OCR usage
from imgutils.ocr import ocr, list_det_models, list_rec_models
# List available models
print("Detection models:", list_det_models())
print("Recognition models:", list_rec_models())
# Perform OCR on an image
results = ocr('your_image.jpg')
for bbox, text, confidence in results:
print(f"Text: {text}, Confidence: {confidence:.4f}, BBox: {bbox}")
# Custom model selection
results = ocr('your_image.jpg',
detect_model='ch_PP-OCRv4_det',
recognize_model='japan_PP-OCRv3_rec')Deploy This Model
Production-ready deployment in minutes
Together.ai
Instant API access to this model
Production-ready inference API. Start free, scale to millions.
Try Free APIReplicate
One-click model deployment
Run models in the cloud with simple API. No DevOps required.
Deploy NowDisclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.