├── .gitignore ├── .idea ├── DVCNN_Lane_Detection.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── DVCNN ├── __pycache__ │ ├── cnn_util.cpython-35.pyc │ ├── data_provider.cpython-35.pyc │ ├── dvcnn_model.cpython-35.pyc │ └── preprocess.cpython-35.pyc ├── cnn_util.py ├── data_provider.py ├── dvcnn_model.py ├── lane_result.txt ├── model │ ├── checkpoint │ ├── dvcnn.ckpt-5995.data-00000-of-00001 │ ├── dvcnn.ckpt-5995.index │ ├── dvcnn.ckpt-5995.meta │ ├── dvcnn.ckpt-5996.data-00000-of-00001 │ ├── dvcnn.ckpt-5996.index │ ├── dvcnn.ckpt-5996.meta │ ├── dvcnn.ckpt-5997.data-00000-of-00001 │ ├── dvcnn.ckpt-5997.index │ ├── dvcnn.ckpt-5997.meta │ ├── dvcnn.ckpt-5998.data-00000-of-00001 │ ├── dvcnn.ckpt-5998.index │ ├── dvcnn.ckpt-5998.meta │ ├── dvcnn.ckpt-5999.data-00000-of-00001 │ ├── dvcnn.ckpt-5999.index │ └── dvcnn.ckpt-5999.meta ├── model_def │ ├── DVCNN.json │ ├── __pycache__ │ │ └── dvcnn_global_variable.cpython-35.pyc │ └── dvcnn_global_variable.py ├── preprocess.py └── tboard │ └── events.out.tfevents.1503316578.baidu-pc ├── Extract_line_candidates ├── __pycache__ │ ├── binarized_filter_result.cpython-35.pyc │ ├── dataset_util.cpython-35.pyc │ ├── extract_candidate.cpython-35.pyc │ ├── filter_util.cpython-35.pyc │ ├── inverse_perspective_map.cpython-35.pyc │ └── ransac_fitline.cpython-35.pyc ├── binarized_filter_result.py ├── dataset_util.py ├── dataset_util.pyc ├── extract_candidate.py ├── extract_candidate.pyc ├── filter_util.py ├── filter_util.pyc ├── inverse_perspective_map.py ├── inverse_perspective_map.pyc └── ransac_fitline.py ├── Global_Configuration ├── __pycache__ │ ├── config.cpython-35.pyc │ ├── imdb.cpython-35.pyc │ └── utils.cpython-35.pyc ├── config.py ├── imdb.py └── utils.py ├── Global_Optimization ├── __pycache__ │ ├── dvcnn_classifier.cpython-35.pyc │ ├── extract_roi.cpython-35.pyc │ └── global_optimization.cpython-35.pyc ├── dvcnn_classifier.py ├── extract_roi.py └── global_optimization.py ├── LICENSE ├── README.md ├── Tools ├── crop_top_patch.py ├── detect_lane_line.py ├── extract_roi_patch.py ├── extract_roi_patch.sh ├── make_dvcnn_training_dataset.py ├── test_dvcnn.py ├── test_dvcnn.sh ├── train_dvcnn.py └── train_dvcnn.sh └── data ├── front_view └── test_fv.jpg └── top_view └── test_top.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/DVCNN_Lane_Detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/DVCNN_Lane_Detection.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /DVCNN/__pycache__/cnn_util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/__pycache__/cnn_util.cpython-35.pyc -------------------------------------------------------------------------------- /DVCNN/__pycache__/data_provider.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/__pycache__/data_provider.cpython-35.pyc -------------------------------------------------------------------------------- /DVCNN/__pycache__/dvcnn_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/__pycache__/dvcnn_model.cpython-35.pyc -------------------------------------------------------------------------------- /DVCNN/__pycache__/preprocess.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/__pycache__/preprocess.cpython-35.pyc -------------------------------------------------------------------------------- /DVCNN/cnn_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/cnn_util.py -------------------------------------------------------------------------------- /DVCNN/data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/data_provider.py -------------------------------------------------------------------------------- /DVCNN/dvcnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/dvcnn_model.py -------------------------------------------------------------------------------- /DVCNN/lane_result.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/model/checkpoint -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5995.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5995.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5995.meta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5996.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5996.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5996.meta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5997.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5997.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5997.meta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5998.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5998.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5998.meta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5999.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5999.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model/dvcnn.ckpt-5999.meta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DVCNN/model_def/DVCNN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/model_def/DVCNN.json -------------------------------------------------------------------------------- /DVCNN/model_def/__pycache__/dvcnn_global_variable.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/model_def/__pycache__/dvcnn_global_variable.cpython-35.pyc -------------------------------------------------------------------------------- /DVCNN/model_def/dvcnn_global_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/model_def/dvcnn_global_variable.py -------------------------------------------------------------------------------- /DVCNN/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/DVCNN/preprocess.py -------------------------------------------------------------------------------- /DVCNN/tboard/events.out.tfevents.1503316578.baidu-pc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/binarized_filter_result.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/binarized_filter_result.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/dataset_util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/dataset_util.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/extract_candidate.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/extract_candidate.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/filter_util.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/filter_util.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/inverse_perspective_map.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/inverse_perspective_map.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/__pycache__/ransac_fitline.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/__pycache__/ransac_fitline.cpython-35.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/binarized_filter_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/binarized_filter_result.py -------------------------------------------------------------------------------- /Extract_line_candidates/dataset_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/dataset_util.py -------------------------------------------------------------------------------- /Extract_line_candidates/dataset_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/dataset_util.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/extract_candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/extract_candidate.py -------------------------------------------------------------------------------- /Extract_line_candidates/extract_candidate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/extract_candidate.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/filter_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/filter_util.py -------------------------------------------------------------------------------- /Extract_line_candidates/filter_util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/filter_util.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/inverse_perspective_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/inverse_perspective_map.py -------------------------------------------------------------------------------- /Extract_line_candidates/inverse_perspective_map.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/inverse_perspective_map.pyc -------------------------------------------------------------------------------- /Extract_line_candidates/ransac_fitline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Extract_line_candidates/ransac_fitline.py -------------------------------------------------------------------------------- /Global_Configuration/__pycache__/config.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/__pycache__/config.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Configuration/__pycache__/imdb.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/__pycache__/imdb.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Configuration/__pycache__/utils.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/__pycache__/utils.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Configuration/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/config.py -------------------------------------------------------------------------------- /Global_Configuration/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/imdb.py -------------------------------------------------------------------------------- /Global_Configuration/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Configuration/utils.py -------------------------------------------------------------------------------- /Global_Optimization/__pycache__/dvcnn_classifier.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/__pycache__/dvcnn_classifier.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Optimization/__pycache__/extract_roi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/__pycache__/extract_roi.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Optimization/__pycache__/global_optimization.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/__pycache__/global_optimization.cpython-35.pyc -------------------------------------------------------------------------------- /Global_Optimization/dvcnn_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/dvcnn_classifier.py -------------------------------------------------------------------------------- /Global_Optimization/extract_roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/extract_roi.py -------------------------------------------------------------------------------- /Global_Optimization/global_optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Global_Optimization/global_optimization.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/README.md -------------------------------------------------------------------------------- /Tools/crop_top_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/crop_top_patch.py -------------------------------------------------------------------------------- /Tools/detect_lane_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/detect_lane_line.py -------------------------------------------------------------------------------- /Tools/extract_roi_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/extract_roi_patch.py -------------------------------------------------------------------------------- /Tools/extract_roi_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/extract_roi_patch.sh -------------------------------------------------------------------------------- /Tools/make_dvcnn_training_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/make_dvcnn_training_dataset.py -------------------------------------------------------------------------------- /Tools/test_dvcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/test_dvcnn.py -------------------------------------------------------------------------------- /Tools/test_dvcnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/test_dvcnn.sh -------------------------------------------------------------------------------- /Tools/train_dvcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/train_dvcnn.py -------------------------------------------------------------------------------- /Tools/train_dvcnn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/Tools/train_dvcnn.sh -------------------------------------------------------------------------------- /data/front_view/test_fv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/data/front_view/test_fv.jpg -------------------------------------------------------------------------------- /data/top_view/test_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaybeShewill-CV/DVCNN_Lane_Detection/HEAD/data/top_view/test_top.jpg --------------------------------------------------------------------------------