Skip to content

Commit 25d7fe6

Browse files
Update Advanced-Lane-Finding-P2.md
1 parent 8b7add7 commit 25d7fe6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

‎Advanced-Lane-Finding-P2.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@
2525

2626
#### 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.
2727

28+
Detecting edges around trees or cars is okay because these lines can be mostly filtered out by applying a mask to the image and essentially cropping out the area outside of the lane lines. It's most important that we reliably detect different colors of lane lines under varying degrees of daylight and shadow. So, that our self driving car does not become blind in extreme daylight hours or under the shadow of a tree.
29+
30+
I performed gradient threshold and color threshold individually and then created a binary combination of these two images to map out where either the color or gradient thresholds were met called the combined_binary in the code.
31+
32+
2833
#### 3. Describe how (and identify where in your code) you performed a perspective transform and provide an example of a transformed image.
2934

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

0 commit comments

Comments
 (0)