├── .gitignore ├── LICENSE ├── README.md ├── dataset.py ├── images └── lane-detection.gif ├── model ├── decoder_fcn.py ├── enet.py ├── icnet.py ├── lanenet.py ├── loss.py ├── resnet.py ├── resnetv1b.py └── utils.py ├── requirements.txt ├── test_lanenet-tusimple_benchmark.py └── train_lanenet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/README.md -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/dataset.py -------------------------------------------------------------------------------- /images/lane-detection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/images/lane-detection.gif -------------------------------------------------------------------------------- /model/decoder_fcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/decoder_fcn.py -------------------------------------------------------------------------------- /model/enet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/enet.py -------------------------------------------------------------------------------- /model/icnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/icnet.py -------------------------------------------------------------------------------- /model/lanenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/lanenet.py -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/loss.py -------------------------------------------------------------------------------- /model/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/resnet.py -------------------------------------------------------------------------------- /model/resnetv1b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/resnetv1b.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/model/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ujson 2 | tensorboardX 3 | scikit-learn 4 | opencv-python 5 | torch 6 | -------------------------------------------------------------------------------- /test_lanenet-tusimple_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/test_lanenet-tusimple_benchmark.py -------------------------------------------------------------------------------- /train_lanenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenhanQian/Lane_Detection-An_Instance_Segmentation_Approach/HEAD/train_lanenet.py --------------------------------------------------------------------------------