├── .gitignore ├── LICENSE ├── README.md ├── doc └── img │ ├── lane_Detection.jpg │ └── lane_detection.gif ├── image_lane_detection.py ├── lstr ├── __init__.py └── lstr.py ├── models └── .gitkeep ├── requirements.txt └── video_lane_detection.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/README.md -------------------------------------------------------------------------------- /doc/img/lane_Detection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/doc/img/lane_Detection.jpg -------------------------------------------------------------------------------- /doc/img/lane_detection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/doc/img/lane_detection.gif -------------------------------------------------------------------------------- /image_lane_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/image_lane_detection.py -------------------------------------------------------------------------------- /lstr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/lstr/__init__.py -------------------------------------------------------------------------------- /lstr/lstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/lstr/lstr.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /video_lane_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-LSTR-Lane-Detection/HEAD/video_lane_detection.py --------------------------------------------------------------------------------