-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject1.py
153 lines (128 loc) · 5.52 KB
/
project1.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#importing some useful packages
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
import cv2
import os
import math
def grayscale(img):
"""Applies the Grayscale transform
This will return an image with only one color channel
but NOTE: to see the returned image as grayscale
(assuming your grayscaled image is called 'gray')
you should call plt.imshow(gray, cmap='gray')"""
return cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
# Or use BGR2GRAY if you read an image with cv2.imread()
# return cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
def canny(img, low_threshold, high_threshold):
"""Applies the Canny transform"""
return cv2.Canny(img, low_threshold, high_threshold)
def gaussian_blur(img, kernel_size):
"""Applies a Gaussian Noise kernel"""
return cv2.GaussianBlur(img, (kernel_size, kernel_size), 0)
def region_of_interest(img, vertices):
"""
Applies an image mask.
Only keeps the region of the image defined by the polygon
formed from `vertices`. The rest of the image is set to black.
"""
#defining a blank mask to start with
mask = np.zeros_like(img)
#defining a 3 channel or 1 channel color to fill the mask with depending on the input image
if len(img.shape) > 2:
channel_count = img.shape[2] # i.e. 3 or 4 depending on your image
ignore_mask_color = (255,) * channel_count
else:
ignore_mask_color = 255
#filling pixels inside the polygon defined by "vertices" with the fill color
cv2.fillPoly(mask, vertices, ignore_mask_color)
#returning the image only where mask pixels are nonzero
masked_image = cv2.bitwise_and(img, mask)
return masked_image
def draw_lines(img, lines, color=[255, 0, 0], thickness=2):
"""
NOTE: this is the function you might want to use as a starting point once you want to
average/extrapolate the line segments you detect to map out the full
extent of the lane (going from the result shown in raw-lines-example.mp4
to that shown in P1_example.mp4).
Think about things like separating line segments by their
slope ((y2-y1)/(x2-x1)) to decide which segments are part of the left
line vs. the right line. Then, you can average the position of each of
the lines and extrapolate to the top and bottom of the lane.
This function draws `lines` with `color` and `thickness`.
Lines are drawn on the image inplace (mutates the image).
If you want to make the lines semi-transparent, think about combining
this function with the weighted_img() function below
"""
for line in lines:
for x1,y1,x2,y2 in line:
cv2.line(img, (x1, y1), (x2, y2), color, thickness)
def hough_lines(img, rho, theta, threshold, min_line_len, max_line_gap):
"""
`img` should be the output of a Canny transform.
Returns an image with hough lines drawn.
"""
lines = cv2.HoughLinesP(img, rho, theta, threshold, np.array([]), minLineLength=min_line_len, maxLineGap=max_line_gap)
line_img = np.zeros((img.shape[0], img.shape[1], 3), dtype=np.uint8)
draw_lines(line_img, lines)
return line_img
# Python 3 has support for cool math symbols.
def weighted_img(img, initial_img, a=0.8, b=1., c=0.):
"""
`img` is the output of the hough_lines(), An image with lines drawn on it.
Should be a blank image (all black) with lines drawn on it.
`initial_img` should be the image before any processing.
The result image is computed as follows:
initial_img * a + img * b + c
NOTE: initial_img and img must be the same shape!
"""
return cv2.addWeighted(initial_img, a, img, b, c)
# TODO: Build your pipeline that will draw lane lines on the test_images
# then save them to the test_images directory.
fnames = os.listdir("test_images/")
#reading in an image
for name in fnames:
image = mpimg.imread('test_images/'+name)
plt.title(name + " (" + str(image.shape[0]) + "x" + str(image.shape[1]) + ")")
#gray = np.copy(image)
gray = grayscale(image)
edges = canny(gray, 1, 100)
blur_edges = gaussian_blur(edges,5)
imshape = image.shape
height = imshape[0]
width = imshape[1]
vertices = np.array(
[[
(0,imshape[0]), #bottom-left
(width * .5, height *.575), #top-left
(width * .5, height *.575), #top-right
(imshape[1],imshape[0]) #bottom-right
]],
dtype=np.int32)
masked_area = region_of_interest(blur_edges, vertices)
# hough = hough_lines(blur_edges, 1, np.pi/180, threshold, min_line_len, max_line_gap):
blank = np.copy(image)*0 #creating a blank to draw lines on
hough = hough_lines(masked_area, 2, np.pi/180, 25, 60, 30)
weighted = weighted_img(hough, image, 0.8, 1., 0.)
#plt.imshow(image) # if you wanted to show a single color channel image called 'gray', for example, call as plt.imshow(gray, cmap='gray')
plt.imshow(image)
#plt.figure()
#plt.title(name + " (grayscale)")
#plt.imshow(gray, cmap='gray')
#plt.figure()
plt.title(name + " (edges)")
plt.imshow(edges, cmap='gray')
#plt.figure()
#plt.title(name + " (blurred edges)")
#plt.imshow(blur_edges, cmap='gray')
#plt.figure()
#plt.title(name + " (mask edges)")
#plt.imshow(masked_area, cmap='gray')
#plt.figure()
#plt.title(name + " (hough transform)")
#plt.imshow(hough, cmap='gray')
#plt.figure()
#plt.title(name + " (weighted edges)")
#plt.imshow(weighted)
#plt.figure()
plt.show()