Update README.md
Browse files
README.md
CHANGED
@@ -1,16 +1,17 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
-
library_name:
|
|
|
4 |
---
|
5 |
-
#
|
6 |
|
7 |
-
This
|
8 |
|
9 |
## How to Use
|
10 |
|
11 |
-
|
12 |
|
13 |
-
|
14 |
|
15 |
```bash
|
16 |
-
pip install ultralytics
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
library_name: custom
|
4 |
+
pipeline_tag: object-detection
|
5 |
---
|
6 |
+
# Expiry Date Detection Model
|
7 |
|
8 |
+
This model uses a custom object detection pipeline followed by OCR to detect and extract expiry dates from product package images.
|
9 |
|
10 |
## How to Use
|
11 |
|
12 |
+
The model consists of a YOLOv8 object detection model followed by OCR for date extraction. The detection model identifies regions of interest (ROIs) containing dates, and OCR is used to extract the date from these ROIs.
|
13 |
|
14 |
+
### Installation
|
15 |
|
16 |
```bash
|
17 |
+
pip install ultralytics pytesseract opencv-python-headless matplotlib
|