Recognition of traffic signal images with deep learning

At the end of my degree at the university I went to a series of seminars that dealt with the topic of Deep Learning, and I found it fascinating how an algorithm could learn just by passing it a sufficient number of examples. So I decided that I wanted to learn more and do my TFG on that topic.

The main objective of the final degree project is to build a traffic sign image recognizer that is capable of working with the highest precision that we can achieve, testing different Machine Learning and Deep Learning techniques.

To do this, we had to develop a complete machine learning project, which includes data preprocessing, learning to use specific tools and implementing different machine learning and deep learning techniques and algorithms in code, both classic and modern, as well as designed experiments to compare them effectively, with the aim of finding the method that most accurately classifies the images.

We have tested different algorithms and approaches to the problem of image classification, two of them, the random forest and the neural network without convolutions, are classic approaches within machine learning, while the others fall within the set of modern techniques that we call deep learning. Among the latter, we differentiate between approaches that make use of pre-trained networks (VGG16/19, Xception, Resnet) and those that have been designed and trained from scratch for this specific problem using the Keras framework with Tensorflow as backend.

Finally, it is these latest neural networks designed from scratch that have the best performance, among all the algorithms tested.

Links:

TFG in PDF: https://github.com/MrRobert91/traffic_sign_machine_learning/blob/master/tfg_david_robert.pdf

GitHub repo: https://github.com/MrRobert91/traffic_sign_machine_learning