Deep Learning
Intermediate
4.5
Object Detection with YOLO
Detect and locate objects in images with a few lines of code.
1h 35m
1 lesson
1.2K students
What You'll Learn
Learning objectives will be added soon.
Tutorial Content
Beyond classification
Classification says what is in an image; object detection says what and where, drawing boxes around each object. YOLO ("You Only Look Once") does it fast enough for video.
from ultralytics import YOLO
model = YOLO("yolov8n.pt")
results = model("street.jpg")
results[0].show() # boxes + labelsGoing further
Fine-tune on your own labeled images (annotate with Roboflow or Label Studio) to detect custom objects. Watch confidence thresholds and non-max suppression settings to balance precision and recall.
Your Progress
Sign in to track your progress
Tags
Computer Vision
Deep Learning
Python