Skip to content

suubh/Final-year-proj

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

INTRODUCTION

  • In India, the nature of traffic is very erratic and random in nature.
  • Generally, the traffic signs provide the driver with a variety of information for safe and efficient navigation
  • As we are headed towards ADAS (Advanced Driver Assistance System), in the context of Indian roads special needs to be covered. And here traffic signs classification and detection plays a major role.
  • In India there are various roads where traffic signs are mostly broken or covered in trees or damaged by people which causes more traffic sign violations. So to overcome this problem it is necessary to build a system which will help in classification and detection of traffic signs and prevent traffic accidents and make the roads safer for the drivers.
  • The traffic sign classification and detection is a field of applied computer vision and concerned with automatic detection and classification of traffic signs.
  • The aim of this project is to use Deep Learning to implement a model that classifies and detects traffic signs in images.
  • The ultimate goal of our work is to present an efficacious solution to detect traffic signs by detecting and classifying the detected signs using Deep Learning and then using the trained model to classify the Indian traffic signs.
  • We also built a web application for general practicality. Where we can upload a traffic sign image and can know its detail.

SETUP

Experiment Setup

  • We have developed and tested our whole project in python.
  • We are using Google Colab for creating, training, testing and development of our model.
  • Kaggle for the Dataset.
  • Streamlit for FrontEnd.

Dataset

  • German Traffic Sign Recognition and Benchmark (GTSRB)
  • Indian Traffic Sign Image Dataset

DATASET & DATA PREPROCESSING

  • We are using the benchmark dataset GTSRB (German Traffic Sign Recognition Benchmark) . It has around 51,839 images of road signs, divided into 43 classes. 238914-pdf 5-15-2022 8-56-00 PM
  • We used Kaggle API to get the GTSRB data in our Google Colab notebook and extracted the dataset at runtime. The information in the form of image is 39,209 and we fixed all the image sizes to be 30x30.
  • All the images and their labels with respect to their classes were stored in data and labels in a python list and then converted into a numpy array. Then the train_test_split of sklearn.model_selection is used to create X_train, X_test, y_train and y_test.

MODEL

The proposed model developed for Traffic Sign Classification and detection is shown . There are four steps involved in the process, the first one being Data Preprocessing of the GTSRB dataset. The next step involves the designing, training and validation of the CNN model that will classify the signs. After training we the trained model will be tested on new images which were never used in training and validation. This step will ensure us that the model is not overfitting to the dataset.

  • In the first convolution layer we have used 32 filters and filter size of 5x5, after this layer the next convolution layers have 64 filters each and filters of size 3x3
  • ReLU & Softmax Activation function.
  • Epoch
  • Hyperparameter.
    • Optimization (Categorical Cross Entropy)
    • Regularization ( Dropout ) Dissertation--27-28-29-30- - Google Docs 5-18-2022 11-13-33 PM

RESULT

TRAFFIC SIGN CLASSIFICATION AND DETECTION - Google Slides 6-25-2022 10-48-30 PM

REFERENCE

  • German Traffic Sign Recognition Benchmark , GTSRB - German Traffic Sign Recognition Benchmark | Kaggle
  • Colab, https://colab.research.google.com
  • Manjiri Bichkar, Suyasha Bobhate, Prof. Sonal Chaudhari, “Traffic Sign Classification and Detection of Indian Traffic Signs using Deep Learning’’.
  • Tensorflow , https://www.tensorflow.org
  • Jacopo Credi. “Traffic sign classification with deep convolutional neural networks”
  • Github Link of our Project - https://github.com/suubh/Final-year-proj

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks