Object Detection Using YOLO Algorithm

YOLO is a state-of-the-art object detection and classification algorithm which stands for “You Only Look Once”. It is extremely fast and thus real-time object detection is possible. “Only Look Once” in the algorithm means it requires only one forward propagation pass through the network to make predictions of object classes and bounding boxes.

Requirements

Download

Originally YOLO is written in C and Darknet. Darknet is a neural network library for C. However, the TensorFlow implementation of Darknet, Darkflow and Python has been used here.

Outputs

This is how the outputs of YOLO look like.

References