Self Driving Car


This solves the autonomous driving issue which is supported by deep learning technology. Given a video, it splits into images and predicts the angle of turning for each frame.

An autonomous car (also known as a driverless car, self-driving car, and robotic car) is a vehicle that is capable of sensing its environment and navigating without human input. Autonomous cars combine a variety of techniques to perceive their surroundings, including radar, laser light, GPS, odometry, and computer vision. Advanced control systems interpret sensory information to identify appropriate navigation paths, as well as obstacles and relevant signage

Objective

Given images of road you need to predict its degree of turning.

Inspiration ?

  1. Udacity Self driving car
  2. End to End Learning for Self-Driving Cars

Code Requirements ?

  • pip install requirements.txt

Dataset 1

Approximately 45,500 images, 2.2GB. One of the original datasets I made in 2017. Data was recorded around Rancho Palos Verdes and San Pedro California.

Link

Data format is as follows: filename.jpg angle

Dataset 2

Approximately 63,000 images, 3.1GB. Data was recorded around Rancho Palos Verdes and San Pedro California.

Link

Data format is as follows: filename.jpg angle,year-mm-dd hr:min:sec:millisec

if you use second dataset, you need to convert it in the form of filename.jpg angle

Use python train.py to train the model

Use python run.py to run the model on a live webcam feed

Use python run_dataset_C.py to run the model on the dataset

You will see

video

Use python app.py if you want to see running it on flask
then enter into the url http://127.0.0.1:5000/.After that you see

image

when you click show demo

image

File Organization ?️

├── selfDrivingCar (Current Directory)
        ├── deploy
        ├── static
        ├── templates
        ├── app.py
        ├── driving_data.py
        ├── modelckpt
        ├── model.py
        ├── requirements.txt
        ├── run_dataset_C.py
        ├── steering_wheel_image.jpg
        ├── train.py
        └── Readme.Md

References ?

GitHub

GitHub - Sagor-Saha/Self-Driving-Car: This solves the autonomous driving issue which is supported by deep learning technology. Given a video, it splits into images and predicts the angle of turning for each frame.
This solves the autonomous driving issue which is supported by deep learning technology. Given a video, it splits into images and predicts the angle of turning for each frame. - GitHub - Sagor-Saha...