Skip to content

Commit 819c211

Browse files
authored
Add more and better plate detection models (#1)
* Remove placeholder test * Add HUB tests * Use HEAD method in test * Add more plate detection models * Update readme * Bump minor version
1 parent 4ce734b commit 819c211

File tree

5 files changed

+53
-17
lines changed

5 files changed

+53
-17
lines changed

README.md

+27-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# Open Image Models
22

33
[![Actions status](https://github.com/ankandrew/open-image-models/actions/workflows/main.yaml/badge.svg)](https://github.com/ankandrew/open-image-models/actions)
4-
[![image](https://img.shields.io/pypi/v/open-image-models.svg)](https://pypi.python.org/pypi/open-image-models)
4+
[![GitHub version](https://img.shields.io/github/v/release/ankandrew/fast-alpr)](https://github.com/ankandrew/fast-alpr/releases)
55
[![image](https://img.shields.io/pypi/pyversions/open-image-models.svg)](https://pypi.python.org/pypi/open-image-models)
66
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
7+
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg)](https://ankandrew.github.io/open-image-models/)
78
[![Pylint](https://img.shields.io/badge/linting-pylint-yellowgreen)](https://github.com/pylint-dev/pylint)
89
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
9-
[![image](https://img.shields.io/pypi/l/open-image-models.svg)](https://pypi.python.org/pypi/open-image-models)
10+
[![ONNX Model](https://img.shields.io/badge/model-ONNX-blue?logo=onnx&logoColor=white)](https://onnx.ai/)
1011
[![Hugging Face Spaces](https://img.shields.io/badge/🤗%20Hugging%20Face-Spaces-orange)](https://huggingface.co/spaces/ankandrew/open-image-models)
11-
12-
<p>
13-
<img src="https://raw.githubusercontent.com/ankandrew/open-image-models/4053f058a80e5ba7edf5d59614e9f8167f83c0f2/assets/open-image-models-logo.png" alt="Open Image Models Logo" width="650"/>
14-
</p>
12+
![License](https://img.shields.io/github/license/ankandrew/fast-alpr)
1513

1614
<!-- TOC -->
1715
* [Open Image Models](#open-image-models)
@@ -22,6 +20,7 @@
2220
* [Plate Detection](#plate-detection)
2321
* [Installation](#installation)
2422
* [Contributing](#contributing)
23+
* [Citation](#citation)
2524
<!-- TOC -->
2625

2726
---
@@ -58,14 +57,14 @@ lp_detector.predict("path/to/license_plate_image.jpg")
5857

5958
![](https://raw.githubusercontent.com/ankandrew/LocalizadorPatentes/2e765012f69c4fbd8decf998e61ed136004ced24/extra/demo_localizador.gif)
6059

61-
| Model | Image Size | Precision (P) | Recall (R) | mAP50 | mAP50-95 | Speed (ms) <sup>[1]</sup> |
62-
|----------|------------|---------------|------------|-------|----------|---------------------------|
63-
| yolov9-t | 640 | 0.955 | 0.91 | 0.959 | 0.75 | 9.96 |
64-
| yolov9-t | 512 | 0.948 | 0.901 | 0.95 | 0.718 | 7.10 |
65-
| yolov9-t | 384 | 0.943 | 0.863 | 0.921 | 0.688 | 5.76 |
66-
| yolov9-t | 256 | 0.937 | 0.797 | 0.858 | 0.606 | 2.65 |
67-
68-
_<sup>[1]</sup> Inference on a Mac M1._
60+
| Model | Image Size | Precision (P) | Recall (R) | mAP50 | mAP50-95 |
61+
|:-------------------------------------:|------------|---------------|------------|-------|----------|
62+
| `yolo-v9-s-608-license-plate-end2end` | 608 | 0.957 | 0.917 | 0.966 | 0.772 |
63+
| `yolo-v9-t-640-license-plate-end2end` | 640 | 0.966 | 0.896 | 0.958 | 0.758 |
64+
| `yolo-v9-t-512-license-plate-end2end` | 512 | 0.955 | 0.901 | 0.948 | 0.724 |
65+
| `yolo-v9-t-416-license-plate-end2end` | 416 | 0.94 | 0.894 | 0.94 | 0.702 |
66+
| `yolo-v9-t-384-license-plate-end2end` | 384 | 0.942 | 0.863 | 0.92 | 0.687 |
67+
| `yolo-v9-t-256-license-plate-end2end` | 256 | 0.937 | 0.797 | 0.858 | 0.606 |
6968

7069
<details>
7170
<summary>Usage</summary>
@@ -101,6 +100,9 @@ cv2.destroyAllWindows()
101100

102101
</details>
103102

103+
> [!TIP]
104+
> Checkout the [docs](https://ankandrew.github.io/open-image-models)!
105+
104106
### Installation
105107

106108
To install open-image-models via pip, use the following command:
@@ -128,3 +130,14 @@ To start contributing or to begin development, you can follow these steps:
128130
```shell
129131
make checks
130132
```
133+
134+
### Citation
135+
136+
```
137+
@article{wang2024yolov9,
138+
title={{YOLOv9}: Learning What You Want to Learn Using Programmable Gradient Information},
139+
author={Wang, Chien-Yao and Liao, Hong-Yuan Mark},
140+
booktitle={arXiv preprint arXiv:2402.13616},
141+
year={2024}
142+
}
143+
```

open_image_models/detection/core/hub.py

+5
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,25 @@
1616
BASE_URL: str = "https://github.com/ankandrew/open-image-models/releases/download"
1717
"""Base URL where models will be fetched."""
1818
PlateDetectorModel = Literal[
19+
"yolo-v9-s-608-license-plate-end2end",
1920
"yolo-v9-t-640-license-plate-end2end",
2021
"yolo-v9-t-512-license-plate-end2end",
22+
"yolo-v9-t-416-license-plate-end2end",
2123
"yolo-v9-t-384-license-plate-end2end",
2224
"yolo-v9-t-256-license-plate-end2end",
2325
]
2426
"""Available ONNX models for doing detection."""
2527

2628
AVAILABLE_ONNX_MODELS: dict[PlateDetectorModel, str] = {
2729
# Plate Detection
30+
"yolo-v9-s-608-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-s-608-license-plates-end2end.onnx",
2831
"yolo-v9-t-640-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-t-640-license-plates-end2end.onnx",
2932
"yolo-v9-t-512-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-t-512-license-plates-end2end.onnx",
33+
"yolo-v9-t-416-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-t-416-license-plates-end2end.onnx",
3034
"yolo-v9-t-384-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-t-384-license-plates-end2end.onnx",
3135
"yolo-v9-t-256-license-plate-end2end": f"{BASE_URL}/assets/yolo-v9-t-256-license-plates-end2end.onnx",
3236
}
37+
"""Available ONNX models for doing inference."""
3338
MODEL_CACHE_DIR: pathlib.Path = pathlib.Path.home() / ".cache" / "open-image-models"
3439
"""Default location where models will be stored."""
3540

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "open-image-models"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Pre-trained image models using ONNX for fast, out-of-the-box inference."
55
authors = ["ankandrew <[email protected]>"]
66
readme = "README.md"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
"""
2+
Tests for ONNX hub module.
3+
"""
4+
5+
from http import HTTPStatus
6+
7+
import pytest
8+
import requests
9+
10+
from open_image_models.detection.core.hub import AVAILABLE_ONNX_MODELS
11+
12+
13+
@pytest.mark.parametrize("model_name", AVAILABLE_ONNX_MODELS.keys())
14+
def test_model_and_config_urls(model_name):
15+
"""
16+
Test to check if the model URLs of AVAILABLE_ONNX_MODELS are valid.
17+
"""
18+
model_url = AVAILABLE_ONNX_MODELS[model_name]
19+
response = requests.head(model_url, timeout=5, allow_redirects=True)
20+
assert response.status_code == HTTPStatus.OK, f"URL {model_url} is not accessible, got {response.status_code}"

test/open_image_models/test_placeholder.py

-2
This file was deleted.

0 commit comments

Comments
 (0)