Project: Build a Traffic Sign Recognition Program

The goals / steps of this project are the following:

Here is a link to my project code

Data Set Summary & Exploration

1. Provide a basic summary of the data set. In the code, the analysis should be done using python, numpy and/or pandas methods rather than hardcoding results manually.

I used the pandas library to calculate summary statistics of the traffic signs data set:

2. Include an exploratory visualization of the dataset.

Here is an exploratory visualization of the data set. It is a bar chart showing how the data is distributed in each of the test, train and validation set

alt text

alt text

alt text

It can be observed that the distribution of the sample are similar across all 3 datasets.

Sample image of each of the 43 sign that are contained in the dataset.

alt text

Design and Test a Model Architecture

1. Describe how you preprocessed the image data. What techniques were chosen and why did you choose these techniques? Consider including images showing the output of each preprocessing technique. Pre-processing refers to techniques such as converting to grayscale, normalization, etc. (OPTIONAL: As described in the “Stand Out Suggestions” part of the rubric, if you generated additional data for training, describe why you decided to generate additional data, how you generated the data, and provide example images of the additional data. Then describe the characteristics of the augmented training set like number of images in the set, number of images for each class, etc.)

As a first step of preprocesing, I decided to convert the images to grayscale because my earlier attempt to use the color images and contract addjustment did not produce a better result model. It might eventually get batter if agumented with more samples. Taking lead from earlier project of lane detection it made more sense to use the grayscale which might help in identifying patterns in the singages.

Here is an example of random traffic sign images before and after grayscaling.

alt text

alt text

I decided to generate additional data because the given data set was small to train the model to get good accuracy. Given that the data set is of images or signs they remain constant and easy to creat copies with soem variations.

To add more data to the the data set, I used the techinique of just random shifting the image, this mimics the true world where the image might be slightly at different angle as observed. At first I created 3 random shift copeis of the image, but this was still not sufficient and hence bumped the multiplier factory by 4. Each image gets 4 copies of the image with some shift transformations.

Here is an example of an original image and 4 set of augmented images:

alt text

alt text

alt text

The difference between the original data set and the augmented data set is that there is a shift in the image. OpenCV functions are used to get the resulted transform effect.

As a last step, I normalized the image data so that all images follow a mean and the signs dont get distinguised differently.

Here is the random sample of normalized images.

alt text

2. Describe what your final model architecture looks like including model type, layers, layer sizes, connectivity, etc.) Consider including a diagram and/or table describing the final model.

My final model consisted of the following layers:

Layer Description
Input 32x32x1 grayscale image
Convolution 5x5 2x2 stride, valid padding, outputs 28x28x6
RELU  
Max pooling 2x2 stride, outputs 14x14x6
Convolution 5x5 2x2 stride, valid padding, outputs 10x10x16
RELU  
Max pooling 2x2 stride, outputs 5x5x16
Convolution 1x1 2x2 stride, valid padding, outputs 1x1x412
RELU  
Fully connected input 412, output 122
RELU  
Dropout 50% keep
Fully connected input 122, output 84
RELU  
Dropout 50% keep
Fully connected input 84, output 43

3. Describe how you trained your model. The discussion can include the type of optimizer, the batch size, number of epochs and any hyperparameters such as learning rate.

To train the model, I followed the original LeNet architecture. Just using the same architecture was giving validation accuracy of 89%. I added a additional convolution layer before flattening the image. The key to the model was to generate more data to train the model, these steps have already been explained. I used EPOCH of 10 and pretty much followed as much of the LeNet lab, I randomly picked a batch size and finally settled with 164, not much analysis and experiment was done on that part. I used the AdamOptimizer with a learning rate of 0.00097. I also added dropout as suggested in the lecture with 50% dropout ratio.

4. Describe the approach taken for finding a solution and getting the validation set accuracy to be at least 0.93. Include in the discussion the results on the training, validation and test sets and where in the code these were calculated. Your approach may have been an iterative process, in which case, outline the steps you took to get to the final solution and why you chose those steps. Perhaps your solution involved an already well known implementation or architecture. In this case, discuss why you think the architecture is suitable for the current problem.

My final model results were:

If an iterative approach was chosen:

LeNet -> It was simple and was already doing a prety good job of classifying number images

The architecture was giving desired accuracy with german signal sign images

The model was adjusted to include one more convolution layer and additonaly included dropoffs at the full connected layers/

The pooling and sub sampling layers was tweeked to categorise 43 classes of the iamges from 32*32 size images

One important choice was to included dropoff which was bit restricitve given the small sample size, but with data agumentation it made the model to not overfit with agumented images. The agumented iamges were slight variation of the actual image. Without dropoff the model would have certainly be overfitted. It would have event led to memorization.

If a well known architecture was chosen:

LeNet

It was simple efficient and had already proved effective in classifing numbers

It is surprising to see the model make 100% predictions on random test sample outside of the sample dataset. Given the fixed nature of the sign images this is a really good model.

Test a Model on New Images

1. Choose five German traffic signs found on the web and provide them in the report. For each image, discuss what quality or qualities might be difficult to classify.

Here are some German traffic signs that I found on the web:

Before preprocessing

alt text

After preprocessing

alt text

The difficult of the sign is the “No Vehicles” label “15”, A slight shadow can cause the sign to be classifed as the other speed limit signs or any other sign with round border.

2. Discuss the model’s predictions on these new traffic signs and compare the results to predicting on the test set. At a minimum, discuss what the predictions were, the accuracy on these new predictions, and compare the accuracy to the accuracy on the test set (OPTIONAL: Discuss the results in more detail as described in the “Stand Out Suggestions” part of the rubric).

Here are the results of the prediction:

Image Prediction Accuracy
Speed Limit (30 km/hr) Speed Limit (30 km/hr) 1.000
Bumpy road Bumpy road 1.000
Ahead only Ahead only 1.000
No vehicles No vehicles 0.750
Go straight or left Go straight or left 0.800

The model was able to correctly guess 5 of the 5 traffic signs, which gives an accuracy of 100%.

3. Describe how certain the model is when predicting on each of the five new images by looking at the softmax probabilities for each prediction. Provide the top 5 softmax probabilities for each image along with the sign type of each probability. (OPTIONAL: as described in the “Stand Out Suggestions” part of the rubric, visualizations can also be provided such as bar charts)

The model is able to predict most of the images correctly and with 100% confidence.

alt text

alt text

alt text

alt text

alt text

alt text

alt text

alt text

alt text

alt text

alt text