├── .gitignore ├── Camera Calibration.py ├── Gradient and Color threshold.py ├── Images ├── BinaryandColorfilter.png ├── CombineColorandGradient.png ├── DistortionCorrection_CameraCalibration.png ├── DistortionCorrection_RawImage.png ├── Equid apply.png ├── Equidistant curve.png ├── ImageProcess.png ├── LUV_thres.png ├── PerspectiveTransform.png ├── Perspective_binary.png ├── SlidingWindow-Convolution.png ├── SlidingWindow.png ├── challenge.gif ├── equidistance.png ├── gamma_dark.png ├── harder_challenge.gif ├── histogram.png ├── project.gif └── workflow.png ├── Project.py ├── Project_harder_challenge.py ├── README.md ├── Sliding Window Search.py ├── camera_cal ├── calibration1.jpg ├── undist.jpg └── undist_c1.jpg ├── helper.py ├── output_videos ├── challenge.mp4 ├── harder_challenge.mp4 └── project.mp4 ├── test_images ├── center_1.jpg ├── center_2.jpg ├── straight_lines1.jpg ├── straight_lines2.jpg ├── test1.jpg ├── test2.jpg ├── test3.jpg ├── test4.jpg ├── test5.jpg ├── test6.jpg ├── test_ch0.jpg ├── test_ch1.jpg ├── test_ch10.jpg ├── test_ch11.jpg ├── test_ch12.jpg ├── test_ch13.jpg ├── test_ch14.jpg ├── test_ch2.jpg ├── test_ch3.jpg ├── test_ch4.jpg ├── test_ch5.jpg ├── test_ch6.jpg ├── test_ch7.jpg ├── test_ch8.jpg └── test_ch9.jpg ├── test_videos ├── challenge_video.mp4 ├── harder_challenge_video.mp4 └── project_video.mp4 └── wide_dist_pickle.p /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera Calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Camera Calibration.py -------------------------------------------------------------------------------- /Gradient and Color threshold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Gradient and Color threshold.py -------------------------------------------------------------------------------- /Images/BinaryandColorfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/BinaryandColorfilter.png -------------------------------------------------------------------------------- /Images/CombineColorandGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/CombineColorandGradient.png -------------------------------------------------------------------------------- /Images/DistortionCorrection_CameraCalibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/DistortionCorrection_CameraCalibration.png -------------------------------------------------------------------------------- /Images/DistortionCorrection_RawImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/DistortionCorrection_RawImage.png -------------------------------------------------------------------------------- /Images/Equid apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/Equid apply.png -------------------------------------------------------------------------------- /Images/Equidistant curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/Equidistant curve.png -------------------------------------------------------------------------------- /Images/ImageProcess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/ImageProcess.png -------------------------------------------------------------------------------- /Images/LUV_thres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/LUV_thres.png -------------------------------------------------------------------------------- /Images/PerspectiveTransform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/PerspectiveTransform.png -------------------------------------------------------------------------------- /Images/Perspective_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/Perspective_binary.png -------------------------------------------------------------------------------- /Images/SlidingWindow-Convolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/SlidingWindow-Convolution.png -------------------------------------------------------------------------------- /Images/SlidingWindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/SlidingWindow.png -------------------------------------------------------------------------------- /Images/challenge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/challenge.gif -------------------------------------------------------------------------------- /Images/equidistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/equidistance.png -------------------------------------------------------------------------------- /Images/gamma_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/gamma_dark.png -------------------------------------------------------------------------------- /Images/harder_challenge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/harder_challenge.gif -------------------------------------------------------------------------------- /Images/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/histogram.png -------------------------------------------------------------------------------- /Images/project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/project.gif -------------------------------------------------------------------------------- /Images/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Images/workflow.png -------------------------------------------------------------------------------- /Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Project.py -------------------------------------------------------------------------------- /Project_harder_challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Project_harder_challenge.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/README.md -------------------------------------------------------------------------------- /Sliding Window Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/Sliding Window Search.py -------------------------------------------------------------------------------- /camera_cal/calibration1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/camera_cal/calibration1.jpg -------------------------------------------------------------------------------- /camera_cal/undist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/camera_cal/undist.jpg -------------------------------------------------------------------------------- /camera_cal/undist_c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/camera_cal/undist_c1.jpg -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/helper.py -------------------------------------------------------------------------------- /output_videos/challenge.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/output_videos/challenge.mp4 -------------------------------------------------------------------------------- /output_videos/harder_challenge.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/output_videos/harder_challenge.mp4 -------------------------------------------------------------------------------- /output_videos/project.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/output_videos/project.mp4 -------------------------------------------------------------------------------- /test_images/center_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/center_1.jpg -------------------------------------------------------------------------------- /test_images/center_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/center_2.jpg -------------------------------------------------------------------------------- /test_images/straight_lines1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/straight_lines1.jpg -------------------------------------------------------------------------------- /test_images/straight_lines2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/straight_lines2.jpg -------------------------------------------------------------------------------- /test_images/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test1.jpg -------------------------------------------------------------------------------- /test_images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test2.jpg -------------------------------------------------------------------------------- /test_images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test3.jpg -------------------------------------------------------------------------------- /test_images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test4.jpg -------------------------------------------------------------------------------- /test_images/test5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test5.jpg -------------------------------------------------------------------------------- /test_images/test6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test6.jpg -------------------------------------------------------------------------------- /test_images/test_ch0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch0.jpg -------------------------------------------------------------------------------- /test_images/test_ch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch1.jpg -------------------------------------------------------------------------------- /test_images/test_ch10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch10.jpg -------------------------------------------------------------------------------- /test_images/test_ch11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch11.jpg -------------------------------------------------------------------------------- /test_images/test_ch12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch12.jpg -------------------------------------------------------------------------------- /test_images/test_ch13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch13.jpg -------------------------------------------------------------------------------- /test_images/test_ch14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch14.jpg -------------------------------------------------------------------------------- /test_images/test_ch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch2.jpg -------------------------------------------------------------------------------- /test_images/test_ch3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch3.jpg -------------------------------------------------------------------------------- /test_images/test_ch4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch4.jpg -------------------------------------------------------------------------------- /test_images/test_ch5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch5.jpg -------------------------------------------------------------------------------- /test_images/test_ch6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch6.jpg -------------------------------------------------------------------------------- /test_images/test_ch7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch7.jpg -------------------------------------------------------------------------------- /test_images/test_ch8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch8.jpg -------------------------------------------------------------------------------- /test_images/test_ch9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_images/test_ch9.jpg -------------------------------------------------------------------------------- /test_videos/challenge_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_videos/challenge_video.mp4 -------------------------------------------------------------------------------- /test_videos/harder_challenge_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_videos/harder_challenge_video.mp4 -------------------------------------------------------------------------------- /test_videos/project_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/test_videos/project_video.mp4 -------------------------------------------------------------------------------- /wide_dist_pickle.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uranus4ever/Advanced-Lane-Detection/HEAD/wide_dist_pickle.p --------------------------------------------------------------------------------