-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
139 lines (118 loc) · 4.48 KB
/
app.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
from flask import Flask, render_template, Response
import os
import cv2
import numpy as np
from keras.models import load_model
from pygame import mixer
import threading
app = Flask(__name__)
# Initialize the video capture outside of the route
cap = cv2.VideoCapture(0)
# Flag to control drowsiness detection
run_detection = False
def generate_frames():
while run_detection:
success, frame = cap.read()
if not success:
break
else:
ret, buffer = cv2.imencode('.jpg', frame)
frame = buffer.tobytes()
yield (b'--frame\r\n'
b'Content-Type:image/jpeg\r\n\r\n' + frame + b'\r\n')
def drowsiness_detection():
global run_detection
mixer.init()
sound = mixer.Sound('flask_app_drowsiness/static/alarm.wav')
face = cv2.CascadeClassifier('flask_app_drowsiness/static/haarcascade_frontalface_alt.xml')
leye = cv2.CascadeClassifier('flask_app_drowsiness/static/haarcascade_lefteye_2splits.xml')
reye = cv2.CascadeClassifier('flask_app_drowsiness/static/haarcascade_righteye_2splits.xml')
lbl = ['Close', 'Open']
model = load_model('flask_app_drowsiness/models/cnnCat2.h5')
path = os.getcwd()
font = cv2.FONT_HERSHEY_COMPLEX_SMALL
count = 0
score = 0
thicc = 2
rpred = [99]
lpred = [99]
while run_detection:
ret, frame = cap.read()
height, width = frame.shape[:2]
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
faces = face.detectMultiScale(gray, minNeighbors=5, scaleFactor=1.1, minSize=(25, 25))
left_eye = leye.detectMultiScale(gray)
right_eye = reye.detectMultiScale(gray)
cv2.rectangle(frame, (0, height - 50), (200, height), (0, 0, 0), thickness=cv2.FILLED)
for (x, y, w, h) in faces:
cv2.rectangle(frame, (x, y), (x + w, y + h), (100, 100, 100), 1)
for (x, y, w, h) in right_eye:
r_eye = frame[y:y + h, x:x + w]
count = count + 1
r_eye = cv2.cvtColor(r_eye, cv2.COLOR_BGR2GRAY)
r_eye = cv2.resize(r_eye, (24, 24))
r_eye = r_eye / 255
r_eye = r_eye.reshape(24, 24, -1)
r_eye = np.expand_dims(r_eye, axis=0)
rpred = model.predict(r_eye)
rpred = np.argmax(rpred, axis=1)
if rpred[0] == 1:
lbl = 'Open'
if rpred[0] == 0:
lbl = 'Closed'
break
for (x, y, w, h) in left_eye:
l_eye = frame[y:y + h, x:x + w]
count = count + 1
l_eye = cv2.cvtColor(l_eye, cv2.COLOR_BGR2GRAY)
l_eye = cv2.resize(l_eye, (24, 24))
l_eye = l_eye / 255
l_eye = l_eye.reshape(24, 24, -1)
l_eye = np.expand_dims(l_eye, axis=0)
lpred = model.predict(l_eye)
lpred = np.argmax(lpred, axis=1)
if lpred[0] == 1:
lbl = 'Open'
if lpred[0] == 0:
lbl = 'Closed'
break
if rpred[0] == 0 and lpred[0] == 0:
score = score + 1
cv2.putText(frame, "Closed", (10, height - 20), font, 1, (255, 255, 255), 1, cv2.LINE_AA)
else:
score = score - 1
cv2.putText(frame, "Open", (10, height - 20), font, 1, (255, 255, 255), 1, cv2.LINE_AA)
if score < 0:
score = 0
cv2.putText(frame, 'Score:' + str(score), (100, height - 20), font, 1, (255, 255, 255), 1, cv2.LINE_AA)
if score > 15:
cv2.imwrite(os.path.join(path, 'image.jpg'), frame)
try:
sound.play()
except:
pass
if thicc < 16:
thicc = thicc + 2
else:
thicc = thicc - 2
if thicc < 2:
thicc = 2
cv2.rectangle(frame, (0, 0), (width, height), (0, 0, 255), thicc)
cv2.imshow('frame', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
@app.route('/')
def index():
return render_template('index.html')
@app.route('/run_drowsiness_detection', methods=['POST'])
def run_drowsiness_detection():
global run_detection
if not run_detection:
run_detection = True
detection_thread = threading.Thread(target=drowsiness_detection)
detection_thread.daemon = True
detection_thread.start()
return Response(generate_frames(), mimetype='multipart/x-mixed-replace;boundary=frame')
if __name__ == '__main__':
# Run the Flask app
app.run(debug=True)