Description: use Fully Convolutional Network to segment road (drivable regions) and lane marks for self driving.
The network was trained on the huge segmentation datasets for future maps provided by Mapillary. The testing videos are a random dashcam video on Youtube. The result for road segmentation is highly accurate but the result for lane mark segmentation is a lot less accurate. However, it is still good enough to estimate the rough positions of the lanes.
Thanks to https://github.com/JihongJu/keras-fcn and https://www.mapillary.com/.
- More advanced post processing using Edge Detection. [DONE]
- Fine tune the segmentation result using Dilated Net or SegNet with Conditional Random Field.
- Additionally trains on CamVid dataset and SYNTHIA dataset.
- Download the data from https://www.mapillary.com/ (need to make a request) or download the pretrained weights from https://goo.gl/cnUCzv.
- Follow the instructions in Lane Detection.ipynb to construct and train the network for road and lane mark segmentation on random dashcam video.