https://github.com/ankandrew/open-image-models
Pre-trained image models using ONNX for fast, out-of-the-box inference.
https://github.com/ankandrew/open-image-models
computer-vision ml-models object-detection onnx onnx-inference onnx-models open-image-models open-source-models plate-detection pretrained-models
Last synced: about 1 year ago
JSON representation
Pre-trained image models using ONNX for fast, out-of-the-box inference.
- Host: GitHub
- URL: https://github.com/ankandrew/open-image-models
- Owner: ankandrew
- License: mit
- Created: 2024-09-20T21:11:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-04T18:38:37.000Z (about 1 year ago)
- Last Synced: 2025-05-07T10:52:27.848Z (about 1 year ago)
- Topics: computer-vision, ml-models, object-detection, onnx, onnx-inference, onnx-models, open-image-models, open-source-models, plate-detection, pretrained-models
- Language: Python
- Homepage: https://ankandrew.github.io/open-image-models/
- Size: 1.22 MB
- Stars: 12
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# Open Image Models
[](https://github.com/ankandrew/open-image-models/actions)
[](https://github.com/ankandrew/open-image-models/releases)
[](https://pypi.python.org/pypi/open-image-models)
[](https://github.com/astral-sh/ruff)
[](https://ankandrew.github.io/open-image-models/)
[](https://github.com/pylint-dev/pylint)
[](http://mypy-lang.org/)
[](https://onnx.ai/)
[](https://huggingface.co/spaces/ankandrew/open-image-models)

* [Open Image Models](#open-image-models)
* [Introduction](#introduction)
* [Features](#features)
* [Installation](#installation)
* [Available Models](#available-models)
* [Object Detection](#object-detection)
* [Plate Detection](#plate-detection)
* [Contributing](#contributing)
* [Citation](#citation)
---
## Introduction
**Ready-to-use** models for a range of **computer vision** tasks like **detection**, **classification**, and
**more**. With **ONNX** support, you get **fast** and **accurate** results right out of the box.
Easily integrate these models into your apps for **real-time** processing—ideal for edge devices, cloud setups, or
production environments. In **one line of code**, you can have **powerful** model **inference** running!
```python
from open_image_models import LicensePlateDetector
lp_detector = LicensePlateDetector(detection_model="yolo-v9-t-256-license-plate-end2end")
lp_detector.predict("path/to/license_plate_image.jpg")
```
✨ That's it! Powerful license plate detection with just a few lines of code.
## Features
- 🚀 Pre-trained: Models are **ready** for immediate use, no additional training required.
- 🌟 ONNX: Cross-platform support for **fast inference** on both CPU and GPU environments.
- âš¡ Performance: Optimized for both speed and accuracy, ensuring efficient **real-time** applications.
- 💻 Simple API: Power up your applications with robust model inference in just one line of code.
## Installation
To install open-image-models via pip, use the following command:
```shell
pip install open-image-models
```
## Available Models
### Object Detection
#### Plate Detection

| Model | Image Size | Precision (P) | Recall (R) | mAP50 | mAP50-95 |
|:-------------------------------------:|------------|---------------|------------|-------|----------|
| `yolo-v9-s-608-license-plate-end2end` | 608 | 0.957 | 0.917 | 0.966 | 0.772 |
| `yolo-v9-t-640-license-plate-end2end` | 640 | 0.966 | 0.896 | 0.958 | 0.758 |
| `yolo-v9-t-512-license-plate-end2end` | 512 | 0.955 | 0.901 | 0.948 | 0.724 |
| `yolo-v9-t-416-license-plate-end2end` | 416 | 0.94 | 0.894 | 0.94 | 0.702 |
| `yolo-v9-t-384-license-plate-end2end` | 384 | 0.942 | 0.863 | 0.92 | 0.687 |
| `yolo-v9-t-256-license-plate-end2end` | 256 | 0.937 | 0.797 | 0.858 | 0.606 |
Usage
```python
import cv2
from rich import print
from open_image_models import LicensePlateDetector
# Initialize the License Plate Detector with the pre-trained YOLOv9 model
lp_detector = LicensePlateDetector(detection_model="yolo-v9-t-384-license-plate-end2end")
# Load an image
image_path = "path/to/license_plate_image.jpg"
image = cv2.imread(image_path)
# Perform license plate detection
detections = lp_detector.predict(image)
print(detections)
# Benchmark the model performance
lp_detector.show_benchmark(num_runs=1000)
# Display predictions on the image
annotated_image = lp_detector.display_predictions(image)
# Show the annotated image
cv2.imshow("Annotated Image", annotated_image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
> [!TIP]
> Checkout the [docs](https://ankandrew.github.io/open-image-models)!
## Contributing
Contributions to the repo are greatly appreciated. Whether it's bug fixes, feature enhancements, or new models,
your contributions are warmly welcomed.
To start contributing or to begin development, you can follow these steps:
1. Clone repo
```shell
git clone https://github.com/ankandrew/open-image-models.git
```
2. Install all dependencies using [Poetry](https://python-poetry.org/docs/#installation):
```shell
poetry install --all-extras
```
3. To ensure your changes pass linting and tests before submitting a PR:
```shell
make checks
```
## Citation
```
@article{wang2024yolov9,
title={{YOLOv9}: Learning What You Want to Learn Using Programmable Gradient Information},
author={Wang, Chien-Yao and Liao, Hong-Yuan Mark},
booktitle={arXiv preprint arXiv:2402.13616},
year={2024}
}
```