Detect objects in images and videos using YOLOv5
Generic YOLO Models Trained on COCO
Upload image to detect objects
Detect forklifts in images
Detect objects in images using 🤗 Transformers.js
Detect objects in anime images
Identify the top 3 objects in an image
Ultralytics YOLO11 Gradio Application for Testing
Welcome to my portfolio
Identify car damage in images
Detect face masks in images
Identify objects in images and return details
Track objects in live stream or uploaded videos
YOLOv5 is a real-time object detection system that is part of the You Only Look Once (YOLO) series. It is designed to detect objects in images and videos efficiently and accurately. YOLOv5 is known for its simplicity, flexibility, and strong performance, making it a popular choice for developers and researchers.
git clone https://github.com/ultralytics/yolov5.git
cd yolov5
pip install -r requirements.txt
detect.py
script to detect objects in images or videos:
python detect.py --weights yolov5s.pt --source input.jpg
What does YOLOv5 support?
YOLOv5 supports object detection in images and video streams. It works with various input formats, including webcam, video files, and image files.
How do I train YOLOv5 on my own dataset?
To train YOLOv5 on your dataset, you need to prepare your data in the YOLO format (images and labels), modify the configuration files, and run the training script. Detailed instructions are available in the official documentation.
Where are the detection results saved?
By default, detection results are saved in the runs/detect
directory. You can change the output path by modifying the --output
parameter in the detect script.