├── .gitattributes ├── .xet └── config.toml ├── LICENSE ├── README.md ├── image ├── Lane_Detection_Demo.jpg └── lane-detection-demo.gif └── lane-detector ├── README.md ├── checkpoint1.py ├── checkpoint2.py ├── checkpoint3.py ├── checkpoint4.py ├── checkpoint5.py ├── detector.py ├── input.mp4 ├── lane_detection.png ├── profile.png └── solution.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.xet/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/.xet/config.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/README.md -------------------------------------------------------------------------------- /image/Lane_Detection_Demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/image/Lane_Detection_Demo.jpg -------------------------------------------------------------------------------- /image/lane-detection-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/image/lane-detection-demo.gif -------------------------------------------------------------------------------- /lane-detector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/README.md -------------------------------------------------------------------------------- /lane-detector/checkpoint1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/checkpoint1.py -------------------------------------------------------------------------------- /lane-detector/checkpoint2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/checkpoint2.py -------------------------------------------------------------------------------- /lane-detector/checkpoint3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/checkpoint3.py -------------------------------------------------------------------------------- /lane-detector/checkpoint4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/checkpoint4.py -------------------------------------------------------------------------------- /lane-detector/checkpoint5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/checkpoint5.py -------------------------------------------------------------------------------- /lane-detector/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/detector.py -------------------------------------------------------------------------------- /lane-detector/input.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/input.mp4 -------------------------------------------------------------------------------- /lane-detector/lane_detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/lane_detection.png -------------------------------------------------------------------------------- /lane-detector/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/profile.png -------------------------------------------------------------------------------- /lane-detector/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Charmve/Awesome-Lane-Detection/HEAD/lane-detector/solution.py --------------------------------------------------------------------------------