Skip to content

This repository implements Semantic Segmentation of the Indian Driving Dataset. It contains two architectures to achieve this: FCN8s and SegNet.

Notifications You must be signed in to change notification settings

anishmadan23/semantic-segmentation-indian-driving-dataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Semantic Segmentation on Indian Driving Dataset

Team Members: Anish Madan, Apoorv Khattar

About the project

We perform semantic segmentation using FCN8s and SegNet on the Indian Driving Dataset and compare the performance of the two models based on accuracy and IOU score.

Dataset

The Indian Driving Dataset consists of 6906 and 979 high resolution images in the training and validation set. There are a total of 39 unique class labels. We work with a subset consisting of 1000 training and 100 test samples for our project.

Data Preprocessing

For each image, we have a json file containing the number of different classes in the image and the polygon vertices for segmentation map of each class. We simplify this directory structure as follows:

  • img
    • train
    • val
  • seg
    • train
    • val

We create segmentation maps as .png files and store them in the seg directory. Refer to Preprocessing.ipynb to understand how the preprocessing is done.

Models

We refer to the implementaion by zijundeng for FCN8s and SegNet architectures. We use a pretrained VGG16 and pretrained VGG19 with batch normalization layers as a feature extractor for FCN8s and SegNet respectively.

The weights for the trained models are available here.

Results

Accuracy And IOU Scores

The following summarises the accuracy and IOU for the trained networks on the validation set:

Model Accuracy IOU
FCN8s 74.46 60.23
SegNet 79.19 63.44

Qualitative Results for FCN8s

The following are the visualizations of the output for the FCN8s (from left to right- input, ground truth, model output):

screenschot

Qualitative Results for SegNet

The following are the visualizations of the output for the SegNet (from left to right- input, ground truth, model output):

screenschot

Acknowledgements

We would like to thank Dr. Saket Anand for providing us with the Indian Driving Dataset for this project. We would also like to thank Zijun Deng for making their repository on semantic segmentation publicly available which we have referred to for FCN and SegNet architectures.

This work was done as part of our project for CSE343: Machine Learning course at IIIT Delhi.
The original code can be found in the here but with the lockdown due to COVID-19, we had some time on our hands so we decided to clean up the code.

About

This repository implements Semantic Segmentation of the Indian Driving Dataset. It contains two architectures to achieve this: FCN8s and SegNet.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages