Views
No views yet
1 class — "plate"1from ultralytics import YOLO
2
3# Load model from Hugging Face Hub
4model = YOLO("Safe-Drive-TN/Tunisian-Licence-plate-Detection")
5
6# Run prediction
7results = model.predict("path/to/car.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"BBox: {box.xyxy[0]}")
1@misc{tunisian-license-plate-detection-2025,
2 author = {Yassine Mhirsi and Malek Messaoudi},
3 title = {Tunisian License Plate Detection},
4 year = {2025},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/Malek-Messaoudi/Tunisian-licence-plate-detection}}
7}
8