YOLO Algorithm for Object detection.pptx

AMYPRASANNATELLA 455 views 28 slides Jun 12, 2024
Slide 1
Slide 1 of 28
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24
Slide 25
25
Slide 26
26
Slide 27
27
Slide 28
28

About This Presentation

YOLO Algorithm for Object detection


Slide Content

YOLO Algorithm for Object detection

Introduction to YOLO YOLO (You only look once) is a state of the art object detection algorithm that has become main method of detecting objects in the field of computer vision. Previously people used techniques such as sliding window object detection, R CNN, Fast R CNN and Faster R CNN. But after its invention in 2015, YOLO has become an industry standard for object detection due to its speed and accuracy

Object detection Object detection consists of two separate tasks that are classification and localization.

YOLO algorithm for Multiple Objects YOLO algorithm works using the following three techniques Residual blocks Bounding box regression Intersection Over Union (IOU)

Residual blocks First, the image is divided into various grids. Each grid has a dimension of S x S. The following image shows how an input image is divided into grids.  Every grid cell will detect objects that appear within them. For example, if an object center appears within a certain grid cell, then this cell will be responsible for detecting it.

Bounding box regression A bounding box is an outline that highlights an object in an image. Every bounding box in the image consists of the following attributes: Width ( bw ) Height ( bh ) Class (for example, person, car, traffic light, etc.)- This is represented by the letter c. Bounding box center (bx , by)

Issues

Intersection over union (IOU) YOLO uses IOU to provide an output box that surrounds the objects perfectly. Each grid cell is responsible for predicting the bounding boxes and their confidence scores. The IOU is equal to 1 if the predicted bounding box is the same as the real box. This mechanism eliminates bounding boxes that are not equal to the real box.

YOLO Versions
Tags