ποΈ OpenMLkit OCR Models
This repository hosts a collection of highly optimized, lightweight, on-device OCR (Optical Character Recognition) models extracted from Google ML Kit APK components. These models are designed to run fully offline and are fully compatible with OpenMLkitOCR, a lightweight offline OCR engine for Python.
The repository includes:
- Text Detection Model: A Region Proposal Network (RPN) architecture (
rpn_detector.tflite) that identifies text bounding boxes in image tiles. - Text Recognition Models: Lightweight CRNN + CTC model pipelines for 15+ different languages and scripts.
ποΈ Supported Languages and Scripts
Below is the registry of the available models, vocabulary maps, and language model priors stored in this repository:
π File Types Explained
*.tflite/*.fb(Neural Network weights):detector/rpn_detector.tfliteis a Convolutional Neural Network (CNN) that processes256x256tiles of the image and predicts text bounding boxes.recognizer_*.tfliteandline_recognizer.fbare CRNN (Convolutional Recurrent Neural Network) architectures that predict CTC logits for cropped text line images.
*_label_map.pb/LabelMap.pb(Vocabulary):- Binary Protobuf files mapping character indices to Unicode symbols for decoding CTC outputs.
*_lm.compact_fst.gz&*.syms(Language Models):- Compact Finite State Transducer (FST) language models and symbol mapping files. These are used for advanced Beam Search decoding, correcting spelling and character sequences based on word frequencies.
*_prior.pb/*_config.pb(Priors & Config):- Character prior probabilities and model configurations used to calibrate neural network outputs before applying the language model.
π How to Use with openmlkitOCR
The Python package openmlkitOCR handles automatic downloading and caching of these models from Hugging Face if they are not present locally.
1. Installation
Install the library directly using pip:
pip install openmlkitOCR
2. Python Usage Example
import os
import cv2
from openmlkit import OpenMLKitOCR
# Configure the pipeline to pull models from this Hugging Face repository
os.environ["OPENMLKIT_MODEL_REPO"] = "0cve0/OpenMLKitOCR"
# Initialize the pipeline for a specific language (e.g., 'en' for English/Latin)
# This will automatically download and cache the detector and recognizer files.
ocr = OpenMLKitOCR(lang='en')
# Load an image
image = cv2.imread("test_image.jpg")
# Run OCR (detection & recognition)
results = ocr.run(image, score_threshold=0.35)
# Output the localized text bounding boxes and recognised characters
for item in results:
print(f"Box: {item['box']} -> Text: {item['text']}")
βοΈ License and Disclaimer
- Software: The Python library OpenMLkitOCR is licensed under the Apache 2.0 License.
- Model Weights: The model weights and configurations in this repository are extracted from Google ML Kit APK components and are subject to Google's terms of service and license agreements. These models are intended for educational, research, and non-commercial local testing purposes.
- Downloads last month
- 158