Skip to main content

Accurate and Efficient General OCR System

Project description

openocry: An Open-Source Toolkit for General-OCR Research and Applications

Note: openocry is a Python library adapted from OpenOCR, packaged with a unified openocr command-line and Python API (from openocr import OpenOCR).

For More Information

Recent Updates

  • 0.1.19: Release openocry Python package based on OpenOCR (pip install openocry==0.1.19).
  • 0.1.5: Support the PDF file as an input; Parallel recognition of document elements; Add skill document
  • 0.1.3: Use a unified interface for OCR, Document Parsing, and Unirec
  • 0.0.10: Remove OpenCV version restrictions.
  • 0.0.9: Fixing torch inference bug.
  • 0.0.8: Automatic Downloading ONNX model.
  • 0.0.7: Releasing the feature of ONNX model export for wider compatibility.

Quick Start Guide

Installation

# Install from PyPI (recommended)
pip install openocry==0.1.19

# Or install from source
git clone https://github.com/GreyRaphael/openocry.git
cd openocry
python build_package.py
pip install ./build/dist/openocry-*.whl

Command Line Usage

1. Text Detection + Recognition (OCR)

End-to-end OCR for Chinese/English text detection and recognition:

# Basic usage
openocr --task ocr --input_path path/to/img

# With visualization
openocr --task ocr --input_path path/to/img --is_vis

# Process directory with custom output
openocr --task ocr --input_path ./images --output_path ./results --is_vis

# Use server mode (higher accuracy)
pip install torch torchvision
openocr --task ocr --input_path path/to/img --mode server --backend torch

2. Text Detection Only

Detect text regions without recognition:

# Basic detection
openocr --task det --input_path path/to/img

# With visualization
openocr --task det --input_path path/to/img --is_vis

# Use polygon detection (more accurate for curved text)
openocr --task det --input_path path/to/img --det_box_type poly

3. Text Recognition Only

Recognize text from cropped word/line images:

# Basic recognition
openocr --task rec --input_path path/to/img

# Use server mode (higher accuracy)
pip install torch torchvision
openocr --task rec --input_path path/to/img --mode server --backend torch

# Batch processing
openocr --task rec --input_path ./word_images --rec_batch_num 16

4. Universal Recognition (UniRec)

Recognize text, formulas, and tables using Vision-Language Model:

# Basic usage
openocr --task unirec --input_path path/to/img

# Process directory
openocr --task unirec --input_path ./images --output_path ./results

5. Document Parsing (OpenDoc)

Parse documents with layout analysis, table/formula/table recognition:

# Full document parsing with all outputs
openocr --task doc --input_path path/to/img --use_layout_detection --save_vis --save_json --save_markdown

# Parse PDF document
openocr --task doc --input_path document.pdf --use_layout_detection --save_vis --save_json --save_markdown

# Custom layout threshold
openocr --task doc --input_path path/to/img --use_layout_detection --save_vis --save_json --save_markdown --layout_threshold 0.5

Launch Interactive Demos

# Install gradio
pip install gradio

OCR Demo

Launch Gradio web interface for OCR tasks:

# Local access only
openocr --task launch_openocr_demo --server_port 7860

# Public share link
openocr --task launch_openocr_demo --server_port 7860 --share

UniRec Demo

Launch Gradio web interface for universal recognition:

openocr --task launch_unirec_demo --server_port 7861 --share

OpenDoc Demo

Launch Gradio web interface for document parsing:

openocr --task launch_opendoc_demo --server_port 7862 --share

Python API Usage

OCR Task

import json
from openocr import OpenOCR

# Initialize OCR engine
ocr = OpenOCR(task='ocr', mode='mobile')

# Process single image
results, time_dicts = ocr(
    image_path='path/to/image.jpg',
    save_dir='./output',
    is_visualize=True
)

# Access results
for result in results:
    image_name, ocr_result = result.split('\t')
    ocr_result = json.loads(ocr_result)
    print(f"✅ OCR: {image_name} results: {ocr_result}")

Detection Task

from openocr import OpenOCR

# Initialize detector
detector = OpenOCR(task='det')

# Detect text regions
results = detector(image_path='path/to/image.jpg')

# Access detection boxes
boxes = results[0]['boxes']
print(f"Found {len(boxes)} text regions")

Recognition Task

from openocr import OpenOCR

# Initialize recognizer
recognizer = OpenOCR(task='rec', mode='server', backend='torch') # pip install torch torchvision

# Recognize text
results = recognizer(image_path='path/to/word.jpg')

# Access recognition result
text = results[0]['text']
score = results[0]['score']
print(f"Text: {text}, Confidence: {score}")

UniRec Task

from openocr import OpenOCR

# Initialize UniRec
unirec = OpenOCR(task='unirec')

# Recognize text/formula/table
result_text, generated_ids = unirec(
    image_path='path/to/image.jpg',
    max_length=2048
)
print(f"Result: {result_text}")

Document Parsing Task

from openocr import OpenOCR

# Initialize OpenDoc
doc_parser = OpenOCR(
    task='doc',
    use_layout_detection=True,
)

# Parse document
result = doc_parser(image_path='path/to/document.jpg')

# Save results
doc_parser.save_to_markdown(result, './output')
doc_parser.save_to_json(result, './output')
doc_parser.save_visualization(result, './output')

Common Parameters

  • --task: Task type (ocr, det, rec, unirec, doc, launch_*_demo)
  • --input_path: Input image/PDF path or directory
  • --output_path: Output directory (default: openocr_output/{task})
  • --use_gpu: GPU usage (auto, true, false)
  • --mode: Model mode (mobile, server) - server mode has higher accuracy
  • --is_vis: Visualize results
  • --save_vis: Save visualization (doc task)
  • --save_json: Save JSON results (doc task)
  • --save_markdown: Save Markdown results (doc task)

Output Structure

Results are saved to openocr_output/{task}/ by default:

  • OCR task: ocr_results.txt + visualization images (if --is_vis)
  • Detection task: det_results.txt + visualization images (if --is_vis)
  • Recognition task: rec_results.txt
  • UniRec task: unirec_results.txt
  • Doc task: JSON files, Markdown files, visualization images (based on flags)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openocry-0.1.23.tar.gz (462.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openocry-0.1.23-py3-none-any.whl (714.5 kB view details)

Uploaded Python 3

File details

Details for the file openocry-0.1.23.tar.gz.

File metadata

  • Download URL: openocry-0.1.23.tar.gz
  • Upload date:
  • Size: 462.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for openocry-0.1.23.tar.gz
Algorithm Hash digest
SHA256 af32aa94111d905a2d90a628056b909637012126ee562e77a6c356800cd37e5c
MD5 b232eb4a928852c9e75bb6ee08369bb3
BLAKE2b-256 01bae0982fa9b2f610d5a3f6c3145f4060cc58f040e20418236257b4f8106725

See more details on using hashes here.

Provenance

The following attestation bundles were made for openocry-0.1.23.tar.gz:

Publisher: release.yml on GreyRaphael/openocry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openocry-0.1.23-py3-none-any.whl.

File metadata

  • Download URL: openocry-0.1.23-py3-none-any.whl
  • Upload date:
  • Size: 714.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for openocry-0.1.23-py3-none-any.whl
Algorithm Hash digest
SHA256 473d71bb67888aef650d896231fc3afabedac5b77a46dec4bf40387bc86a65d1
MD5 755d9457218eb0a089559ac6a535ac75
BLAKE2b-256 30a43d5627769288fbf838a4b1feb65277506e4b6dbdfefbd04b30f395775c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for openocry-0.1.23-py3-none-any.whl:

Publisher: release.yml on GreyRaphael/openocry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page