ping1988/YOLOV8s-Barcode-Detection
<div align="center"> <p> <a href="https://www.ultralytics.com" target="_blank"> <img width="100%" src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/yolov8detectotcover.png" alt="YOLO Vision banner"></a> </p> <!-- <div> <a href="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml"><img src="https://github.com/ultralytics/ultralytics/actions/workflows/ci.yaml/badge.svg" alt="Ultralytics CI"></a> <a href="https://colab.research.google.com/github/ultralytics/ultralytics/blob/main/examples/tutorial.ipynb"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open Ultralytics In Colab"></a> </div> <br> --> <h1 align="center">YOLOV8s Barcode/QR Code Detection Model</h1>
<div align="center">Special thanks to <a href="https://huggingface.co/armaggheddon97">Armaggheddon97</a> and his <strong align="center">4090</strong></div>
This repository hosts a finetuned Ultralytics YOLOv8s model specifically designed for barcode and QR code classification and detection. Building upon the robust and efficient architecture of YOLOv8, this model has been fine-tuned on a comprehensive dataset of over 5,000 images, encompassing various barcode types (EAN13, Code128, etc.) and QR codes.
YOLOv8 is renowned for its speed, accuracy, and ease of use, making it an excellent foundation for specialized object detection tasks like barcode and QR code recognition. This finetuned model aims to provide a reliable and performant solution for applications requiring automated barcode and QR code scanning and identification.
We hope this model proves useful for your projects! For general YOLOv8 documentation, please refer to the Ultralytics <a href="https://docs.ultralytics.com/">Docs</a>. For specific questions or discussions related to this finetuned model, please raise an issue on its Hugging Face model page.
<div align="center">Documentation & Usage</div>
Below is a quickstart guide for installing the necessary dependencies and using this finetuned model.
<details open> <summary>Install</summary>
To use this model, you'll need the ultralytics package, which can be installed via pip. Ensure you have a **Python>=3.8** environment with **PyTorch>=1.8**.
  
pip install ultralyticsFor alternative installation methods or more detailed instructions on setting up your environment, please refer to the Ultralytics Quickstart Guide.
 
</details>
<details open> <summary>Usage</summary>
CLI
You can use this model directly from the Command Line Interface (CLI) using the yolo command. Make sure the YOLOV8s_Barcode_Detection.pt model file is accessible in your current directory or specified with its full path.
yolo predict model=YOLOV8s_Barcode_Detection.pt source='path/to/your/image.jpg'The yolo command offers various modes and arguments (e.g., imgsz=640). For more details, consult the YOLOv8 CLI Docs.
Python
This model can also be easily integrated into your Python applications. The usage mirrors the standard Ultralytics YOLO API.
from ultralytics import YOLO
# Load your finetuned model
model = YOLO("YOLOV8s_Barcode_Detection.pt")
# Perform object detection on an image
results = model("path/to/image.jpg")
# Optionally, visualize the results
results[0].show()
# You can also export the model to other formats (e.g., ONNX)
# This is useful for deployment in various environments.
# path = model.export(format="onnx") # uncomment to exportFor more advanced Python usage, including training, validation, and different prediction modes, refer to the YOLOv8 Python Docs.
</details>
<div align="center">Model Details</div>
This specific model, YOLOV8s_Barcode_Detection.pt, is a finetuned instance of the YOLOv8s (small) detection model. It has been specifically trained for barcode and QR code classification and detection.
Dataset
The model was finetuned on a custom dataset comprising over 5,000 images. This dataset includes a wide variety of barcode types such as EAN13, Code128, and many more, alongside various QR code instances, ensuring robustness across different real-world scenarios.
Training Parameters
The training process leveraged a pre-trained yolov8s.pt checkpoint and was conducted with the following key parameters:
# Base model used for finetuning
model = YOLO('yolov8s.pt')
# Training parameters
results = model.train(
data='dataset/data_autosplit.yaml', # Path to the custom dataset
epochs=30, # Number of training epochs
patience=10, # Early stopping patience
batch=16, # Batch size (adjust based on GPU memory)
imgsz=640, # Image size for training
name='yolov8_large_dataset_v1', # Run name
# Augmentation parameters
degrees=180, # Random rotation (0-180 degrees)
translate=0.1, # Image translation (0-1)
scale=0.5, # Image scaling (0-1)
shear=10, # Image shearing (degrees)
perspective=0.001, # Image perspective (0-0.001)
fliplr=0.5, # Horizontal flip (probability)
flipud=0.5, # Vertical flip (probability)
cutmix=0.2, # CutMix augmentation (probability)
)The combination of a robust base model, a diverse custom dataset, and carefully selected training parameters aims to provide high accuracy and generalization for barcode and QR code detection across various real-world scenarios.
<img width="1024" src="https://raw.githubusercontent.com/ultralytics/assets/main/im/banner-tasks.png" alt="Ultralytics YOLO supported tasks">
While the table below provides a general overview of the YOLOv8s base model's performance on the COCO dataset, which serves as a reference for its architectural capabilities. Please note that the performance metrics for `YOLOV8s_Barcode_Detection.pt` will differ, reflecting its specialized training on barcode and QR code data.
<details open><summary>Base YOLOv8s Detection (COCO Reference)</summary>
See Detection Docs for usage examples with these models trained on COCO, which include 80 pre-trained classes.
- mAP<sup>val</sup> values are for single-model single-scale on COCO val2017 dataset. <br>Reproduce by
yolo val detect data=coco.yaml device=0 - Speed averaged over COCO val images using an Amazon EC2 P4d instance. <br>Reproduce by
yolo val detect data=coco.yaml batch=1 device=0|cpu
</details>
<div align="center">Performance and Results</div>
Below are the key performance metrics and visualizations from the training and validation of the YOLOV8s_Barcode_Detection.pt model.
Key Metrics from Training (Last Epoch)
These metrics demonstrate the model's high precision and recall, especially at an IoU threshold of 0.5 (mAP50), indicating excellent performance in detecting both barcode and QR code instances.
Visual Results
Here are various plots generated during the training process, providing deeper insights into the model's performance and behavior:
Example Prediction Batches
Visual examples of the model's predictions on validation images, showing detected bounding boxes and class labels (before and after confidence thresholding for clarity).
<details><summary>Labeled Predictions (Ground Truth)</summary> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch0labels.jpg" width="100%" alt="Labeled Predictions (Ground Truth)"> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch1labels.jpg" width="100%" alt="Labeled Predictions (Ground Truth)"> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch2labels.jpg" width="100%" alt="Labeled Predictions (Ground Truth)"> </details>
<details><summary>Predicted Bounding Boxes (with Confidence)</summary> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch0pred.jpg" width="100%" alt="Predicted Bounding Boxes (with Confidence)"> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch1pred.jpg" width="100%" alt="Predicted Bounding Boxes (with Confidence)"> <img src="https://images-and-logos.pages.dev/HuggingFace/YoloV8BarcodeDetector/valbatch2pred.jpg" width="100%" alt="Predicted Bounding Boxes (with Confidence)"> </details>
<div align="center">License</div>
Ultralytics offers two licensing options to accommodate diverse use cases:
- AGPL-3.0 License: This OSI-approved open-source license is ideal for students and enthusiasts, promoting open collaboration and knowledge sharing. See the LICENSE file for more details. –––
