YOLO is a state-of-the-art, real-time object detection system that uses a single neural network to detect multiple object classes. While not the most accurate algorithm, YOLO is the fastest model with reasonable accuracy compared to other models. The latest version, YOLOv3, recognizes 80 objects in images and videos and is nearly as fast and accurate as SSD. For traffic detection, this document proposes using YOLO with a smartphone camera to detect objects in real-time and send the data to a laptop for processing using Python.
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
33 views
Introduction
YOLO is a state-of-the-art, real-time object detection system that uses a single neural network to detect multiple object classes. While not the most accurate algorithm, YOLO is the fastest model with reasonable accuracy compared to other models. The latest version, YOLOv3, recognizes 80 objects in images and videos and is nearly as fast and accurate as SSD. For traffic detection, this document proposes using YOLO with a smartphone camera to detect objects in real-time and send the data to a laptop for processing using Python.
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Introduction:
Traffic detection is widely used for autonomous vehicles
The detection process must meet the requirements of reliability and fast One method of traffic detection is YOLO You Only Look Once (YOLO) is a state-of-the-art, real-time detection system, done by Joseph Redmon and Ali Farhadi. In spite of the fact that it isn't the most accurate algorithm, it is the fastest model for object detection with a reasonable little accuracy compared to others models. It has till now three models YOLOv1, YOLO v2 (YOLO9000), and recently YOLO v3 (YOLOV3). YOLOv3 is the latest variant of a popular object detection algorithm YOLO. The published model recognizes 80 different objects in images and videos, but most importantly it is super fast and nearly as accurate as Single Shot MultiBox (SSD). YOLO: It's an object detector that uses features learned by a deep convolutional neural network to detect an object. YOLO makes use of only convolutional layers, making it a fully convolutional network (FCN). The design will be made using a smartphone-camera / usb-camera and sent to a laptop using the Python programming language.