Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ from ultralytics import YOLO
|
|
| 5 |
import easyocr
|
| 6 |
|
| 7 |
# Load YOLOv8 model for license plate detection
|
| 8 |
-
model = YOLO("
|
| 9 |
|
| 10 |
# Initialize EasyOCR reader
|
| 11 |
reader = easyocr.Reader(['en'])
|
|
|
|
| 5 |
import easyocr
|
| 6 |
|
| 7 |
# Load YOLOv8 model for license plate detection
|
| 8 |
+
model = YOLO("best (1).pt") # Replace with your trained YOLOv8 weights
|
| 9 |
|
| 10 |
# Initialize EasyOCR reader
|
| 11 |
reader = easyocr.Reader(['en'])
|