Skip to content

supratim-manna/yolov8-object-tracking

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yolov8-object-tracking

This will only work with ultralytics==8.0.0. However, I strongly recommend using the latest Ultralytics package and following the official Ultralytics code: GitHub Repository.

Train YOLOv8 on Custom Data

Steps to run Code

  • Clone the repository
https://github.com/RizwanMunawar/yolov8-object-tracking.git
  • Cd to cloned folder
cd yolov8-object-tracking
  • Install the ultralytics package
pip install ultralytics==8.0.0
  • Do Tracking with the mentioned command below
#video file
python yolo\v8\detect\detect_and_trk.py model=yolov8s.pt source="test.mp4" show=True

#imagefile
python yolo\v8\detect\detect_and_trk.py model=yolov8m.pt source="path to image"

#Webcam
python yolo\v8\detect\detect_and_trk.py model=yolov8m.pt source=0 show=True

#External Camera
python yolo\v8\detect\detect_and_trk.py model=yolov8m.pt source=1 show=True
  • Output file will be created in the working-dir/runs/detect/train with original filename

Results

YOLOv8s Object Tracking YOLOv8m Object Tracking

References

Some of my articles/research papers | Computer vision awesome resources for learning | How do I appear to the world? 🚀

Ultralytics YOLO11: Object Detection and Instance Segmentation🤯 Published Date

Parking Management using Ultralytics YOLO11 Published Date

My 🖐️Computer Vision Hobby Projects that Yielded Earnings Published Date

Best Resources to Learn Computer Vision Published Date

Roadmap for Computer Vision Engineer Published Date

How did I spend 2022 in the Computer Vision FieldPublished Date

Domain Feature Mapping with YOLOv7 for Automated Edge-Based Pallet Racking Inspections Published Date

Exudate Regeneration for Automated Exudate Detection in Retinal Fundus ImagesPublished Date

Feature Mapping for Rice Leaf Defect Detection Based on a Custom Convolutional ArchitecturePublished Date

Yolov5, Yolo-x, Yolo-r, Yolov7 Performance Comparison: A Survey Published Date

Explainable AI in Drug Sensitivity Prediction on Cancer Cell Lines Published Date

Train YOLOv8 on Custom Data Published Date

More Information

For more details, you can reach out to me on Medium or connect with me on LinkedIn

About

YOLOv8 Object Tracking Using PyTorch, OpenCV and Ultralytics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 99.1%
  • Shell 0.9%