An open API service indexing awesome lists of open source software.

https://github.com/kiritoind/autonomous-driving-object-detection

The ideas and methodologies implemented in this project are inspired by YOLO (You Only Look Once) version 8, a state-of-the-art object detection model known for its speed and accuracy. The system leverages YOLOv8 to detect and classify objects on the road
https://github.com/kiritoind/autonomous-driving-object-detection

algorithms bounding-boxes convolutional-neural-networks neural-network nonmaxima-suppression object-detection python3 tensorflow unet yolo

Last synced: 4 months ago
JSON representation

The ideas and methodologies implemented in this project are inspired by YOLO (You Only Look Once) version 8, a state-of-the-art object detection model known for its speed and accuracy. The system leverages YOLOv8 to detect and classify objects on the road

Awesome Lists containing this project

README

        

# Autonomous Driving System

Welcome to the Autonomous Driving System project! This repository contains the codebase for an autonomous vehicle system designed to detect and respond to road conditions, objects, and traffic signs using machine learning and computer vision technologies.

```Final ouput```

https://github.com/kiritoInd/Autonomous-Driving-Object-Detection/assets/96108214/0af7c4af-4065-4dfb-abe3-6388ce385099

```Input```

https://github.com/kiritoInd/Autonomous-Driving-Object-Detection/assets/96108214/23086dbc-df78-42b8-be9e-91670269de72

## Acknowledgments

The ideas presented in this notebook came primarily from the two YOLO papers. The implementation here also took significant inspiration and used many components from Allan Zelener's GitHub repository. The pre-trained weights used in this exercise came from the official YOLO website.
- Joseph Redmon, Santosh Divvala, Ross Girshick, Ali Farhadi - [You Only Look Once: Unified, Real-Time Object Detection](https://arxiv.org/abs/1506.02640) (2015)
- Joseph Redmon, Ali Farhadi - [YOLO9000: Better, Faster, Stronger](https://arxiv.org/abs/1612.08242) (2016)
- Allan Zelener - [YAD2K: Yet Another Darknet 2 Keras](https://github.com/allanzelener/YAD2K)
- The official YOLO website (https://pjreddie.com/darknet/yolo/)