Skip to content

Mostafa-Mansour/CarND-Semantic-Segmentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Semantic Segmentation

Introduction

In this project, you'll label the pixels of a road in images using a Fully Convolutional Network (FCN).

Setup

Frameworks and Packages

Make sure you have the following is installed:

Dataset

Download the Kitti Road dataset from here. Extract the dataset in the data folder. This will create the folder data_road with all the training a test images.

Implementation

  1. The following steps are followed to implement Fully Connected Network (FCN):
  • The weights and the model of VGG16 are restored.
  • The outputs of the interesting layers (layer_3,layer_4,layer_7) are saved to be used later.
  • A 1X1 convolution has been implemented to the output of the interesting layers.
  • Layer_7 was upsampled using a stride of (2,2) ---> upsampled_layer_7
  • the upsampled_layer_7 was fused with layer_4 ----> fused_7_4
  • the fused_7_4 was upsampled with stride of (2,2) --> upsampled_7_4
  • The upsampled_7_4 was fused with the output of layer_3 ---> fused_7_4_3
  • The output of fused_7_4_3 was upsampled with stride of (8,8) to get the final output (semantic segmented image)
  1. The Network was trained using Adam optimizer with softmax cross entropy cost function.

  2. The learning rate was 0.0009 and a dropout of 0.5 was used.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages