Skip to content

Latest commit

 

History

History
52 lines (28 loc) · 1.46 KB

writeup_template.md

File metadata and controls

52 lines (28 loc) · 1.46 KB

Finding Lane Lines on the Road

Writeup Template

You can use this file as a template for your writeup if you want to submit it as a markdown file. But feel free to use some other method and submit a pdf if you prefer.


Finding Lane Lines on the Road

The goals / steps of this project are the following:

  • Make a pipeline that finds lane lines on the road
  • Reflect on your work in a written report

Reflection

1. Describe your pipeline. As part of the description, explain how you modified the draw_lines() function.

My pipeline consisted of 5 steps.

  1. make it gray
  2. apply a gaussian blur with 5x5 kernel
  3. detect canny edges
  4. cut out ROI
  5. detect hough lines

In order to draw a single line on the left and right lanes, I modified the draw_lines() function in 3 steps:

  1. filter out good left/right lane edges by looking at two vertices
  2. fit a line np.polyfit() on those vertices
  3. draw the fitted line.

2. Identify potential shortcomings with your current pipeline

One potential shortcoming would be the params will not work with other FOV cameras (even a same camera but a different mouting point).

Another shortcoming could be not able to hanle curvy road because I assume straight lane lines in above code.

3. Suggest possible improvements to your pipeline

A possible improvement would be use hough transform to detect circles for curvy roads.