• Stars
    star
    420
  • Rank 102,597 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created over 7 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Lane Detection with Deep Learning - My Capstone project for Udacity's ML Nanodegree

MLND-Capstone

My capstone project for Udacity's Machine Learning Nanodegree

Lane Detection with Deep Learning

In this project, I use a deep learning-based approach to improve upon lane detection. My final model uses a fully convolutional neural network to output an image of a predicted lane.

Please see my final Capstone Project Report here.

Also, see my original capstone proposal here.

Lastly, check out the wiki page in this repository to see some more of my steps along the way. The separate "early_steps" branch contains earlier code for previous versions of the neural network as well as files that can extract data for training and perform some automatic labeling.

See an early version of the model detecting lane lines with perspective transformed images here. An early version of my model trained without perspective transformed images, i.e. regular road images, can be seen here!

Lastly, with the finalized fully convolutional model, there are a couple additional videos I made. The first, which is the same video from the above two, has between 10-20% of the frames fed into the mode, as can be seen here. Additionally, a video made from the Challenge Video from Udacity's Advanced Lane Lines project in the SDCND, where the neural network had never seen the video before, can be seen here. The model performs fairly robustly on the never-before-seen video, with the only hitch due to the large light difference as it goes under the overpass.

An additional video can be seen at this Dropbox link.

Dataset

For fully convolutional network

You can download the full training set of images I used here and the full set of 'labels' (which are just the 'G' channel from an RGB image of a re-drawn lane with an extra dimension added to make use in Keras easier) here (157 MB).

Images with coefficient labels

If you just want the original training images with no flips or rotations (downsized to 80x160x3) you can find them here. You can also find the related coefficient labels (i.e. not the drawn lane labels, but the cofficients for a polynomial line) here.

Software Requirements

You can use this conda environment file. In the command line, use conda env create -f lane_environment.yml and then source activate lane_environment (or just activate with the environment name on Windows) to use the environment.

Key Files

Although I have included many of the python files I created to help process my images and various prototype neural networks in the "early_steps" branch, the key files are:

  • fully_conv_NN.py - Assuming you have downloaded the training images and labels above, this is the fully convolutional neural network to train using that data.
  • full_CNN_model.h5 - These are the final outputs from the above CNN. Note that if you train the file above the originals here will be overwritten! These get fed into the below.
  • draw_detected_lanes.py - Using the trained model and an input video, this predicts the lane, averages across 5 frames, and returns the original video with predicted lane lines drawn onto it. Note that it is currently set up to use the basic video from Udacity's SDCND Advanced Lane Lines project here, but the code at the end can be changed to accept different input videos.

Training Image Statistics

  • 21,054 total images gathered from 12 videos (a mix of different times of day, weather, traffic, and road curvatures)
  • 17.4% were clear night driving, 16.4% were rainy morning driving, and 66.2% were cloudy afternoon driving
  • 26.5% were straight or mostly straight roads, 30.2% were a mix or moderate curves, and 43.3% were very curvy roads
  • The roads also contain difficult areas such as construction and intersections
  • 14,235 of the total that were usable of those gathered (mainly due to blurriness, hidden lines, etc.)
  • 1,420 total images originally extracted from those to account for time series (1 in every 10)
  • 227 of the 1,420 unusable due to the limits of the CV-based model used to label (down from 446 due to various improvements made to the original model) for a total of 1,193 images
  • Another 568 images (of 1,636 pulled in) gathered from more curvy lines to assist in gaining a wider distribution of labels (1 in every 5 from the more curved-lane videos; from 8,187 frames)
  • In total, 1,761 original images
  • I pulled in the easier project video from Udacity's Advanced Lane Lines project (to help the model learn an additional camera's distortion) - of 1,252 frames, I used 1 in 5 for 250 total, 217 of which were usable for training
  • A total of 1,978 actual images used between my collections and the one Udacity video
  • After checking histograms for each coefficient of each label for distribution, I created an additional 4,404 images using small rotations of the images outside the very center of the original distribution of images. This was done in three rounds of slowly moving outward from the center of the data (so those further out from the center of the distribution were done multiple times). 6,382 images existed at this point.
  • Finally, I added horizontal flips of each and every road image and its corresponding label, which doubled the total images. All in all, there were a total of 12,764 images for training.

More Repositories

1

MPC-Project

MPC Control - Udacity SDCND Term 2, Project 5
C++
79
star
2

Advanced-Lane-Lines

Udacity SDC Nanodegree Project 4
Python
17
star
3

c-programming

Code worked on for Duke's Intro to Programming in C course
C
15
star
4

Rideshare-Simulation

A Rideshare Simulation built in C++, using OpenStreetMap data
C++
15
star
5

Lane-Detection-GANs

Investigating using GANS to help train a lane detection neural network
Python
12
star
6

Traffic-Sign-Classifier

Udacity SDC nanodegree project for classifying traffic signs
HTML
9
star
7

Path-Planning

Udacity SDCND Term 3, Project 1 - Path Planning
C++
7
star
8

Unscented-Kalman-Filter

Udacity SDCND Term 2, Project 2 - Unscented Kalman Filters
Jupyter Notebook
3
star
9

Vehicle-Detection

Detecting Vehicles for Udacity CarND Term 1 Project 5
Python
3
star
10

DLND-Projects

Projects for Udacity's Deep Learning Foundations Nanodegree
HTML
3
star
11

Extended-Kalman-Filter

Udacity CarND Term 2, Project 1 - Extended Kalman Filters
C++
3
star
12

Kidnapped-Vehicle-Project

Localization with Particle Filters - Udacity SDCND Term 2, Project 3
C++
3
star
13

Finding-Lane-Lines

Udacity SDC Nanodegree Project 1 - Basic Lane Line Discovery
Jupyter Notebook
2
star
14

coursera_ML

Programming assignments from Coursera's Machine Learning course
MATLAB
2
star
15

Behavioral-Cloning

Udacity SDC Nanodegree Project 3
Python
2
star
16

MLND-Capstone-Proposal

My proposal for my capstone project for the Udacity Machine Learning Nanodegree
2
star
17

foam-madness

Simulating a Basketball Tournament on iOS
Swift
1
star
18

smartcab

Udacity ML Nanodegree Reinforcement Learning Project
Jupyter Notebook
1
star
19

fullstack-nd

Projects worked on as part of the Udacity Full Stack Nanodegree
Python
1
star