APIMONSTER commited on
Commit
25191fd
Β·
verified Β·
1 Parent(s): 19f3dd9

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +11 -15
requirements.txt CHANGED
@@ -1,19 +1,15 @@
1
- # ─── 1) Object Detection ─────────────────────────────────────────
2
- ultralytics>=8.0.0 # YOLOv8 for plate detection :contentReference[oaicite:0]{index=0}
3
 
4
- # ─── 2) OCR Recognition ──────────────────────────────────────────
5
- paddlepaddle-gpu>=2.6.0;<3.0.0 # or paddlepaddle>=2.6.0;<3.0.0 on CPU :contentReference[oaicite:1]{index=1}
6
- paddleocr>=2.6.0,<3.0.0 # PP-OCRv3/v4/v5 inference API :contentReference[oaicite:2]{index=2}
7
 
8
- # ─── 3) Image I/O ────────────────────────────────────────────────
9
- opencv-python>=4.6.0 # image read/write/resizing
10
- Pillow>=9.0.0 # optional downstream Pillow ops
11
 
12
- # ─── 4) Numerics ─────────────────────────────────────────────────
13
- numpy>=1.24.4 # array ops
14
 
15
- # ─── 5) Web UI ──────────────────────────────────────────────────
16
- gradio>=3.0.0 # lightweight interface
17
-
18
- # ─── 6) Optional utils ──────────────────────────────────────────
19
- supervision>=0.8.0 # bbox>Mask conversion, visualization
 
1
+ # Detection
2
+ ultralytics>=8.0.0
3
 
4
+ # Paddle & your OCR model
5
+ paddlepaddle>=2.6.0
 
6
 
7
+ # Image I/O
8
+ opencv-python>=4.6.0
9
+ Pillow>=9.0.0
10
 
11
+ # Numerical
12
+ numpy>=1.24.4
13
 
14
+ # Web UI
15
+ gradio>=3.0.0