Views
No views yet
1from ultralytics import YOLO
2
3# Load the model
4model = YOLO("yassine-mhirsi/tunis-word-detection-yolov8s")
5
6# Run inference
7results = model.predict("path/to/license_plate.jpg", conf=0.5)
8
9# Process results
10for result in results:
11 boxes = result.boxes
12 for box in boxes:
13 print(f"Confidence: {box.conf[0]:.2f}")
14 print(f"Bounding Box: {box.xyxy[0]}")best.pt - Best weights from traininglast.pt - Last checkpoint
@misc{tunis-word-detection-yolov8s,
authors = {Yassine Mhirsi,Malek Messaoudi},
title = {Tunisian License Plate Arabic Text Detection},
year = {2025},
publisher = {Hugging Face},
howpublished = {\url{https://huggingface.co/Safe-Drive-TN/tunis-word-detection-yolov8s/}}
}