├── .github └── workflows │ └── manual.yml ├── CODEOWNERS ├── LICENSE ├── P1.ipynb ├── README.md ├── examples ├── P1_example.mp4 ├── grayscale.jpg ├── laneLines_thirdPass.jpg ├── line-segments-example.jpg └── raw-lines-example.mp4 ├── set_git.sh ├── test_images ├── solidWhiteCurve.jpg ├── solidWhiteRight.jpg ├── solidYellowCurve.jpg ├── solidYellowCurve2.jpg ├── solidYellowLeft.jpg └── whiteCarLaneSwitch.jpg ├── test_videos ├── challenge.mp4 ├── solidWhiteRight.mp4 └── solidYellowLeft.mp4 ├── test_videos_output └── ignore.txt └── writeup_template.md /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/LICENSE -------------------------------------------------------------------------------- /P1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/P1.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/README.md -------------------------------------------------------------------------------- /examples/P1_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/examples/P1_example.mp4 -------------------------------------------------------------------------------- /examples/grayscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/examples/grayscale.jpg -------------------------------------------------------------------------------- /examples/laneLines_thirdPass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/examples/laneLines_thirdPass.jpg -------------------------------------------------------------------------------- /examples/line-segments-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/examples/line-segments-example.jpg -------------------------------------------------------------------------------- /examples/raw-lines-example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/examples/raw-lines-example.mp4 -------------------------------------------------------------------------------- /set_git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/set_git.sh -------------------------------------------------------------------------------- /test_images/solidWhiteCurve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/solidWhiteCurve.jpg -------------------------------------------------------------------------------- /test_images/solidWhiteRight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/solidWhiteRight.jpg -------------------------------------------------------------------------------- /test_images/solidYellowCurve.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/solidYellowCurve.jpg -------------------------------------------------------------------------------- /test_images/solidYellowCurve2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/solidYellowCurve2.jpg -------------------------------------------------------------------------------- /test_images/solidYellowLeft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/solidYellowLeft.jpg -------------------------------------------------------------------------------- /test_images/whiteCarLaneSwitch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_images/whiteCarLaneSwitch.jpg -------------------------------------------------------------------------------- /test_videos/challenge.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_videos/challenge.mp4 -------------------------------------------------------------------------------- /test_videos/solidWhiteRight.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_videos/solidWhiteRight.mp4 -------------------------------------------------------------------------------- /test_videos/solidYellowLeft.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/test_videos/solidYellowLeft.mp4 -------------------------------------------------------------------------------- /test_videos_output/ignore.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /writeup_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/CarND-LaneLines-P1/HEAD/writeup_template.md --------------------------------------------------------------------------------