-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.py
More file actions
255 lines (201 loc) · 7.82 KB
/
server.py
File metadata and controls
255 lines (201 loc) · 7.82 KB
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
from flask import Flask, request, jsonify, render_template, url_for, redirect
from flask_cors import CORS, cross_origin
from flask_googlemaps import GoogleMaps
from flask_googlemaps import Map
from keras.models import load_model
from datetime import datetime
import geocoder
import googlemaps
import pandas as pd
import requests
import json
from scipy.spatial import distance as dist
from imutils.video import VideoStream
from imutils import face_utils
from threading import Thread
import numpy as np
import argparse
import imutils
import time
import dlib
import cv2
import os
import winsound
from bs4 import BeautifulSoup
app = Flask(__name__)
cors = CORS(app)
app.config['CORS_HEADERS'] = 'Content-Type'
app.config['GOOGLEMAPS_KEY'] = "AIzaSyBpGtkmJSz7_PJSvT8LOGXVKZNmoPZsXCM"
GoogleMaps(app, key="8JZ7i18MjFuM35dJHq70n3Hx4")
flag = False
strike = 0
def model_func():
global strike
strike = 0
ap = argparse.ArgumentParser()
ap.add_argument("-w", "--webcam", type=int, default=1,
help="index of webcam on system")
args = vars(ap.parse_args())
EYE_AR_THRESH = 0.3
EYE_AR_CONSEC_FRAMES = 30
YAWN_THRESH = 25
alarm_status = False
alarm_status2 = False
saying = False
COUNTER = 0
print("-> Loading the predictor and detector...")
# detector = dlib.get_frontal_face_detector()
detector = cv2.CascadeClassifier("haarcascade_frontalface_default.xml") # Faster but less accurate
predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat')
print("-> Starting Video Stream")
vs = VideoStream(src=args["webcam"]).start()
# vs= VideoStream(usePiCamera=True).start() //For Raspberry Pi
time.sleep(1.0)
while True:
frame = vs.read()
frame = imutils.resize(frame, width=450)
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# rects = detector(gray, 0)
rects = detector.detectMultiScale(gray, scaleFactor=1.1,
minNeighbors=5, minSize=(30, 30),
flags=cv2.CASCADE_SCALE_IMAGE)
# for rect in rects:
for (x, y, w, h) in rects:
rect = dlib.rectangle(int(x), int(y), int(x + w), int(y + h))
shape = predictor(gray, rect)
shape = face_utils.shape_to_np(shape)
eye = final_ear(shape)
ear = eye[0]
leftEye = eye[1]
rightEye = eye[2]
distance = lip_distance(shape)
leftEyeHull = cv2.convexHull(leftEye)
rightEyeHull = cv2.convexHull(rightEye)
# cv2.drawContours(frame, [leftEyeHull], -1, (0, 255, 0), 1)
# cv2.drawContours(frame, [rightEyeHull], -1, (0, 255, 0), 1)
lip = shape[48:60]
# cv2.drawContours(frame, [lip], -1, (0, 255, 0), 1)
if ear < EYE_AR_THRESH:
COUNTER += 1
if COUNTER >= EYE_AR_CONSEC_FRAMES:
if alarm_status == False:
alarm_status = True
alarm()
strike +=1
cv2.putText(frame, "DROWSINESS ALERT!", (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
else:
COUNTER = 0
alarm_status = False
if (distance > YAWN_THRESH):
cv2.putText(frame, "Yawn Alert", (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
if alarm_status2 == False and saying == False:
alarm_status2 = True
strike += 1
alarm()
else:
alarm_status2 = False
cv2.putText(frame, "EAR: {:.2f}".format(ear), (300, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.putText(frame, "YAWN: {:.2f}".format(distance), (300, 60),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.imshow("Frame", frame)
key = cv2.waitKey(1) & 0xFF
if strike >= 3:
break
if key == ord("q"):
break
cv2.destroyAllWindows()
vs.stop()
def async_model():
thr = Thread(target=model_func)
thr.start()
return thr
def get_instructions():
g = geocoder.ip('me')
print(g.latlng)
key = 'AIzaSyBpGtkmJSz7_PJSvT8LOGXVKZNmoPZsXCM'
gmaps = googlemaps.Client(key)
lat = str(g.latlng[0])
longi = str(g.latlng[1])
url = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=" + lat + "," + longi + "&radius=5000&keyword=reststop&key=" + key
response = requests.get(url).json()
address = [response['results'][0]['geometry']['location']['lat'],
response['results'][0]['geometry']['location']['lng']]
url = "https://maps.googleapis.com/maps/api/directions/json?origin=" + lat + "," + longi + "&destination=" + str(
address[0]) + "," + str(address[1]) + "&key=" + key
response = requests.get(url).json()
distance = response['routes'][0]['legs'][0]['distance']['text']
duration = response['routes'][0]['legs'][0]['duration']['text']
end_address = response['routes'][0]['legs'][0]['end_address']
start_address = response['routes'][0]['legs'][0]['start_address']
print(distance)
print(duration)
print(end_address)
print(start_address)
distancelist = []
durationlist = []
html_instructions_list = []
for i in response['routes'][0]['legs'][0]['steps']:
distancelist.append(i['distance']['text'])
durationlist.append(i['duration']['text'])
html_instructions_list.append(i['html_instructions'])
print(distancelist)
print(durationlist)
directions = ""
html_instructions =''
for i in range(len(html_instructions_list)):
html_str = html_instructions_list[i]
soup = BeautifulSoup(html_str)
html_instructions_list[i] = soup.get_text()
directions += soup.get_text() + "\n"
html_instructions += html_instructions_list[i]
print(directions)
url = "https://www.google.com/maps/dir/?api=1&origin="+str(lat)+","+str(longi)+"1&destination="+str(address[0])+","+str(address[1])
return directions, start_address, end_address, duration, url
def async_model1():
thr = Thread(target=get_instructions)
thr.start()
return thr
def alarm():
global alarm_status
global alarm_status2
global saying
winsound.PlaySound(None, winsound.SND_PURGE)
winsound.PlaySound("alarm.wav", winsound.SND_FILENAME)
def eye_aspect_ratio(eye):
A = dist.euclidean(eye[1], eye[5])
B = dist.euclidean(eye[2], eye[4])
C = dist.euclidean(eye[0], eye[3])
ear = (A + B) / (2.0 * C)
return ear
def final_ear(shape):
(lStart, lEnd) = face_utils.FACIAL_LANDMARKS_IDXS["left_eye"]
(rStart, rEnd) = face_utils.FACIAL_LANDMARKS_IDXS["right_eye"]
leftEye = shape[lStart:lEnd]
rightEye = shape[rStart:rEnd]
leftEAR = eye_aspect_ratio(leftEye)
rightEAR = eye_aspect_ratio(rightEye)
ear = (leftEAR + rightEAR) / 2.0
return (ear, leftEye, rightEye)
def lip_distance(shape):
top_lip = shape[50:53]
top_lip = np.concatenate((top_lip, shape[61:64]))
low_lip = shape[56:59]
low_lip = np.concatenate((low_lip, shape[65:68]))
top_mean = np.mean(top_lip, axis=0)
low_mean = np.mean(low_lip, axis=0)
distance = abs(top_mean[1] - low_mean[1])
return distance
@app.route('/', methods=['GET', 'POST'])
@app.route('/home', methods=['GET', 'POST'])
def home():
return render_template('home.html')
@app.route('/sleep', methods=['GET', 'POST'])
def sleep():
model_func()
instructions, start, end, time, url = get_instructions()
return render_template('sleep.html', instructions=instructions, start=start, end=end, time=time, url=url)
if __name__ == "__main__":
app.run(debug=True)