-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm1.py
448 lines (235 loc) · 6.4 KB
/
m1.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# coding: utf-8
# ## Pothole Detection
# #### Load important libraries
# In[1]:
import cv2
import numpy as np
import pygame
import time
import smtplib
from matplotlib import pyplot as plt
# In[2]:
# Show the image
# Open a new thread to manage the external cv2 interaction
cv2.startWindowThread()
def plt_show(image, title=""):
if len(image.shape) == 3:
image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
plt.axis("off")
plt.title(title)
# plt.imshow(image, cmap="Greys_r")
# plt.imshow(image, cmap=plt.cm.Spectral)
plt.imshow(image, cmap=plt.cm.Greys_r)
plt.show()
# #### Resize the image
# In[3]:
def image_resize(image, width = None, height = None, inter = cv2.INTER_AREA):
# initialize the dimensions of the image to be resized and
# grab the image size
dim = None
(h, w) = image.shape[:2]
# if both the width and height are None, then return the
# original image
if width is None and height is None:
return image
# check to see if the width is None
if width is None:
# calculate the ratio of the height and construct the
# dimensions
r = height / float(h)
dim = (int(w * r), height)
# otherwise, the height is None
else:
# calculate the ratio of the width and construct the
# dimensions
r = width / float(w)
dim = (width, int(h * r))
# resize the image
resized = cv2.resize(image, dim, interpolation = inter)
# return the resized image
return resized
# In[4]:
r_image1 = cv2.imread('Pothole.jpg')
r_image2 = image_resize(r_image1, width = 275, height = 180)
# In[5]:
plt_show(r_image2)
# In[6]:
plt.title("Pothole Image")
plt.imshow(r_image2)
plt.show()
#resize_image = cv2.resize(r_image1, (275,180))
#plt_show(resize_image)
# In[7]:
#im = cv2.imread('index4.jpg')
im = r_image2
plt_show(im)
# In[8]:
# Convert the GrayScale
gray1 = cv2.cvtColor(im, cv2.COLOR_BGR2GRAY)
plt_show(gray1)
# In[9]:
# save the image
cv2.imwrite('grayImg.jpg', gray1)
# #### Contour Detection Code
# In[10]:
imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
plt_show(imgray)
# In[11]:
ret,thresh = cv2.threshold(imgray,127,255,0)
# In[12]:
#contours1, _, a = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
image1, contours1, hierarchy1 = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_NONE)
# In[13]:
plt_show(image1)
# In[14]:
#print(contours1)
#contours1.shape
# plt.title("Pothole Image")
# plt.imshow(image1)
# plt.show()
# In[15]:
image2, contours2, hierarchy2 = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
# In[16]:
plt_show(image2)
# In[17]:
# copy the real image
img2 = im.copy()
# In[18]:
plt_show(img2)
# In[19]:
out = cv2.drawContours(img2, contours2, -1, (0,250,0),1)
# In[20]:
plt.title("drawContours Pothole Image")
plt.imshow(out)
plt.show()
# #### Detec the pothole
# In[21]:
cv2.imshow('img1',img2)
cv2.waitKey(0)
plt.subplot(331),plt.imshow(im),plt.title('GRAY')
plt.xticks([]), plt.yticks([])
# In[22]:
img = cv2.imread('index2.jpg',0)
# In[23]:
plt_show(img)
# In[24]:
ret,thresh = cv2.threshold(img,127,255,0)
# In[25]:
image, contours, hierarchy = cv2.findContours(thresh, 1, 2)
# In[26]:
cnt = contours[0]
M = cv2.moments(cnt)
print(M)
# In[27]:
perimeter = cv2.arcLength(cnt,True)
print (perimeter)
# In[28]:
area = cv2.contourArea(cnt)
print (area)
# In[29]:
epsilon = 0.1*cv2.arcLength(cnt,True)
approx = cv2.approxPolyDP(cnt,epsilon,True)
print (epsilon)
print (approx)
# In[30]:
for c in contours:
rect = cv2.boundingRect(c)
if rect[2] < 100 or rect[3] < 100: continue
#print cv2.contourArea(c)
x,y,w,h = rect
cv2.rectangle(img2,(x,y),(x+w,y+h),(0,255,0),8)
cv2.putText(img2,'Moth Detected',(x+w+40,y+h),0,2.0,(0,255,0))
plt.title("Moth Detected Pothole Image")
plt.imshow(img2)
plt.show()
cv2.imshow("Show",img2)
#cv2.imshow('img' , resize_img)
x = cv2.waitKey(0)
if x == 27:
cv2.destroyWindow('img')
cv2.waitKey()
cv2.destroyAllWindows()
# In[31]:
k = cv2.isContourConvex(cnt)
print(k)
# In[32]:
#blur
blur = cv2.blur(im,(5,5))
# In[33]:
plt_show(blur)
# In[34]:
#guassian blur
gblur = cv2.GaussianBlur(im,(5,5),0)
plt_show(gblur)
# In[35]:
#median
median = cv2.medianBlur(im,5)
plt_show(median)
# In[36]:
#erosion
kernel = np.ones((5,5),np.uint8)
erosion = cv2.erode(median,kernel,iterations = 1)
# In[37]:
dilation = cv2.dilate(erosion,kernel,iterations = 5)
# In[38]:
#erosion followed dilation
closing = cv2.morphologyEx(dilation, cv2.MORPH_CLOSE, kernel)
# In[39]:
#canny edge detection
edges = cv2.Canny(dilation,9,220)
# In[40]:
#plotting using matplotlib
plt.subplot(332),plt.imshow(blur),plt.title('BLURRED')
plt.xticks([]), plt.yticks([])
plt.show()
# In[41]:
plt.subplot(333),plt.imshow(gblur),plt.title('guassianblur')
plt.xticks([]), plt.yticks([])
plt.show()
# In[42]:
plt.subplot(334),plt.imshow(median),plt.title('Medianblur')
plt.xticks([]), plt.yticks([])
plt.show()
# In[43]:
plt.subplot(337),plt.imshow(img,cmap = 'gray')
plt.title('dilated Image'), plt.xticks([]), plt.yticks([])
plt.show()
# In[44]:
plt.subplot(338),plt.imshow(edges,cmap = 'gray')
plt.title('Edge Image'), plt.xticks([]), plt.yticks([])
plt.show()
# In[45]:
plt.subplot(335),plt.imshow(erosion),plt.title('EROSION')
plt.xticks([]), plt.yticks([])
plt.show()
# In[46]:
plt.subplot(336),plt.imshow(closing),plt.title('closing')
plt.xticks([]), plt.yticks([])
plt.show()
#
# #### Plot all images
# In[47]:
#plotting using matplotlib
plt.subplot(332),plt.imshow(blur),plt.title('BLURRED')
plt.xticks([]), plt.yticks([])
plt.subplot(333),plt.imshow(gblur),plt.title('guassianblur')
plt.xticks([]), plt.yticks([])
plt.subplot(334),plt.imshow(median),plt.title('Medianblur')
plt.xticks([]), plt.yticks([])
plt.subplot(337),plt.imshow(img,cmap = 'gray')
plt.title('dilated Image'), plt.xticks([]), plt.yticks([])
plt.subplot(338),plt.imshow(edges,cmap = 'gray')
plt.title('Edge Image'), plt.xticks([]), plt.yticks([])
plt.subplot(335),plt.imshow(erosion),plt.title('EROSION')
plt.xticks([]), plt.yticks([])
plt.subplot(336),plt.imshow(closing),plt.title('closing')
plt.xticks([]), plt.yticks([])
plt.show()
# #### alerting the driver
# In[48]:
pygame.init()
pygame.mixer.music.load("buzz.mp3")
pygame.mixer.music.play()
time.sleep(5)
# # End of Pothhole Detection Project
# In[ ]: