jlabhishek / Udacity_Advanced_Lane_Finding

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Writeup Template


Advanced Lane Finding Project

The goals / steps of this project are the following:

  • Compute the camera calibration matrix and distortion coefficients given a set of chessboard images.
  • Apply a distortion correction to raw images.
  • Use color transforms, gradients, etc., to create a thresholded binary image.
  • Apply a perspective transform to rectify binary image ("birds-eye view").
  • Detect lane pixels and fit to find the lane boundary.
  • Determine the curvature of the lane and vehicle position with respect to center.
  • Warp the detected lane boundaries back onto the original image.
  • Output visual display of the lane boundaries and numerical estimation of lane curvature and vehicle position.

Rubric Points

Here I will consider the rubric points individually and describe how I addressed each point in my implementation.


Writeup / README

1. Provide a Writeup / README that includes all the rubric points and how you addressed each one. You can submit your writeup as markdown or pdf. Here is a template writeup for this project you can use as a guide and a starting point.

You're reading it!

Camera Calibration

1. Briefly state how you computed the camera matrix and distortion coefficients. Provide an example of a distortion corrected calibration image.

The code for this step is contained in the second code cell of the IPython notebook located in "./P2.ipynb" in a function called 'calibrate_camera'

I start by preparing "object points", which will be the (x, y, z) coordinates of the chessboard corners in the world. Here I am assuming the chessboard is fixed on the (x, y) plane at z=0, such that the object points are the same for each calibration image. Thus, objp is just a replicated array of coordinates, and objpoints will be appended with a copy of it every time I successfully detect all chessboard corners in a test image. imgpoints will be appended with the (x, y) pixel position of each of the corners in the image plane with each successful chessboard detection. Most of the example code for this can found in the course.

I then used the output objpoints and imgpoints(corners) to compute the camera calibration and distortion coefficients using the cv2.calibrateCamera() function. I applied this distortion correction to the test image using the cv2.undistort() function and obtained this result: Distorted: alt text

Undistorted: alt text

Pipeline (single images)

1. Provide an example of a distortion-corrected image.

To demonstrate this step, I will describe how I apply the distortion correction to one of the test images like this one: alt text

2. Describe how (and identify where in your code) you used color transforms, gradients or other methods to create a thresholded binary image. Provide an example of a binary image result.

I used a combination of color and gradient thresholds to generate a binary image in the third cell of notebook in 'pipeline' function. For this I used Sobel operator and hue layer of the image with similar threshold as used in the course. Here's an example of my output for this step. (note: this is not actually from one of the test images)

alt text

3. Describe how (and identify where in your code) you performed a perspective transform and provide an example of a transformed image.

The code for my perspective transform includes a function called perspective(), which appears in the 4th code cell of the IPython notebook). The function takes as inputs an image (img), as well as source (src) and destination (dst) points. I chose the hardcode the source and destination points in the following manner:

    offset = 100
    # image.shape = (720, 1280)
    src = np.float32([[538, 489], [747, 489],  
                             [1040, 677], 
                             [265 , 677]])
    dst = np.float32([[image.shape[1]//4, offset], [3*image.shape[1]//4, offset], 
                             [3*image.shape[1]//4, image.shape[0] - offset], 
                             [image.shape[1]//4,  image.shape[0] - offset]])

This resulted in the following source and destination points:

Source Destination
538, 489 180, 100
747, 489 540, 100
1040, 677 540, 620
265 , 677 180, 620

I verified that my perspective transform was working as expected by drawing the src and dst points onto a test image and its warped counterpart to verify that the lines appear parallel in the warped image.

alt text

4. Describe how (and identify where in your code) you identified lane-line pixels and fit their positions with a polynomial?

I use the function find_lane_pixels_plot_base_curve() and fit_polynomial() which take a binary warped image after perspective transform and draw sliding windows on it to finally find the x coordinated of the lane lines to be drawn. This works on the initial frame when I dont have any previous lane lines drawn with me.

Once I have values for the first lane lines(both left and right lane), I use functions fit_poly() and search_around_poly() which drawn lanes lines based on the previously drawn lane lines(as per the second method explained in the sliding window section of the course. Most of the code is taken from example provided in the course.

One major change which I did was to change the 'margin' paramter from 100 to 50 as there was too much noise in some of the images and my lanes were not being drawn accurately, using a smaller margin helped in correcting this issue

alt text

5. Describe how (and identify where in your code) you calculated the radius of curvature of the lane and the position of the vehicle with respect to center.

I have a function poly_rl_coeff() which is called by the functions from the previous section to calculate the radius of curvature of the lanes, I also return col(Centre of lane) from those function and use it calculate relative position of the vehicle with respect to centre of the lane. Position is calculated as per the bottom part of projected line(closest to camera).

6. Provide an example image of your result plotted back down onto the road such that the lane area is identified clearly.

In the cells 13 and 14, I define a process which call the above functions and plots the detected lanes on the image

alt text


Pipeline (video)

Here's a link to my video result


Discussion

1. Briefly discuss any problems / issues you faced in your implementation of this project. Where will your pipeline likely fail? What could you do to make it more robust?

Personally, I feel I could have written code in a cleaner way to avoid some of the troubles as at one points there were too many function and variables calling each other that I lost track of which variable and function signifies what. Initially I had faced an issue that one of plotted lanes were curving off from the original track, due to noise in the image. This was corrected using a smalled margin.

From the challenge video I found that sometimes, some other lines other than the lane lines could have more pixels in the histogram and hence might get detected as the original lane.

For calculating the position of vehicle I used the left and right lanes points from historgram and then the bottom most points for the plotted lines.Sometimes the curvature might not be accurately detected as I haven't done any Sanity Check

Also sometimes the detections might not be accurate, so it is good to keep a history and take an approximate decision. Since this is a complicated architecture, I feel that robust sanity checks are important though the result on project_video is workable.

About

License:MIT License


Languages

Language:Jupyter Notebook 100.0%Language:Shell 0.0%