Learn Before
Concept
YOLO (You Only Look Once)
This algorithm uses a single convolution neural network but instead of processing the image pixel by pixel and developing more broad features with every step in the hidden layer. It takes in the whole image and performs the object detection in a single regression problem. It first splits up the image into an SxS grid before passing it into the neural network where bounding boxes and class predictions are then created. Intersect over Union and non-maximum suppression are needed to formulate the founded boxes.

0
1
Updated 2021-10-16
Tags
Data Science