我之前写的关于DuerOS开发日记:

今天看了2017百度世界大会上李彦宏董事长介绍了百度的疲劳驾驶检测,正好我之前阿德里安·罗斯布鲁克的文章中介绍了利用Facial landmarks + drowsiness detection with OpenCV and dlib在树莓派上进行疲劳驾驶检测,当然这个准确性肯定没有百度的准确但是给我们玩是够了的。阿德里安·罗斯布鲁克他在文章中利用的是TrafficHAT进行警告我进行了简化,使用espeak进行语音警告'hi,wake up!'。

现在进入正题。

硬件:一个树莓派一个音箱。

1.软件安装

关于numpy、dlib、opencv在树莓派上的安装我在【君奉天|开发日记】人脸识别-更新已完结,可用求顶中已经详细介绍过了,大家可以去看一下。

sudo pip install RPi.GPIO

sudo pip install gpiozero

sudo pip install imutils

sudo apt-get install espeak python espeak

sudo apt-get install python-pyaudio

2.软件检测

检测软件是否安装

python

>>> import RPi.GPIO

>>> import gpiozero

>>> import numpy

>>> import dlib

>>> import cv2

>>> import imutils

如果没有报错,说明成功了。在此说明我这里用的是python2.7为例的。

我们测试一下espeak:

espeak "hello world

但可能会爆这个错误。

通过下面四步即可解决。

pulseaudio --kill

jak_control start

jak_control exit

pulseaudio --start

3.代码

以下是test.py代码。

from imutils.video import VideoStream

from imutils import face_utils

import numpy as np

import argparse

import imutils

import time

import dlib

import cv2

def euclidean_dist(ptA, ptB):

# compute and return the euclidean distance between the two

# points

return np.linalg.norm(ptA - ptB)

def eye_aspect_ratio(eye):

# compute the euclidean distances between the two sets of

# vertical eye landmarks (x, y)-coordinates

A = euclidean_dist(eye[1], eye[5])

B = euclidean_dist(eye[2], eye[4])

# compute the euclidean distance between the horizontal

# eye landmark (x, y)-coordinates

C = euclidean_dist(eye[0], eye[3])

# compute the eye aspect ratio

ear = (A + B) / (2.0 * C)

# return the eye aspect ratio

return ear

# construct the argument parse and parse the arguments

ap = argparse.ArgumentParser()

ap.add_argument("-c", "--cascade", required=True,

help = "path to where the face cascade resides")

ap.add_argument("-p", "--shape-predictor", required=True,

help="path to facial landmark predictor")

ap.add_argument("-a", "--alarm", type=int, default=0,

help="boolean used to indicate if TraffHat should be used")

args = vars(ap.parse_args())

# check to see if we are using GPIO/TrafficHat as an alarm

if args["alarm"] > 0:

from espeak import espeak

th = espeak.synth("hi,wake up!")

print("[INFO] using espeak alarm...")

# define two constants, one for the eye aspect ratio to indicate

# blink and then a second constant for the number of consecutive

# frames the eye must be below the threshold for to set off the

# alarm

EYE_AR_THRESH = 0.3

EYE_AR_CONSEC_FRAMES = 16

# initialize the frame counter as well as a boolean used to

# indicate if the alarm is going off

COUNTER = 0

ALARM_ON = False

# load OpenCV's Haar cascade for face detection (which is faster than

# dlib's built-in HOG detector, but less accurate), then create the

# facial landmark predictor

print("[INFO] loading facial landmark predictor...")

detector = cv2.CascadeClassifier(args["cascade"])

predictor = dlib.shape_predictor(args["shape_predictor"])

# grab the indexes of the facial landmarks for the left and

# right eye, respectively

(lStart, lEnd) = face_utils.FACIAL_LANDMARKS_IDXS["left_eye"]

(rStart, rEnd) = face_utils.FACIAL_LANDMARKS_IDXS["right_eye"]

# start the video stream thread

print("[INFO] starting video stream thread...")

vs = VideoStream(src=0).start()

# vs = VideoStream(usePiCamera=True).start()

time.sleep(1.0)

# loop over frames from the video stream

while True:

# grab the frame from the threaded video file stream, resize

# it, and convert it to grayscale

# channels)

frame = vs.read()

frame = imutils.resize(frame, width=450)

gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

# detect faces in the grayscale frame

rects = detector.detectMultiScale(gray, scaleFactor=1.1,

minNeighbors=5, minSize=(30, 30),

flags=cv2.CASCADE_SCALE_IMAGE)

# loop over the face detections

for (x, y, w, h) in rects:

# construct a dlib rectangle object from the Haar cascade

# bounding box

rect = dlib.rectangle(int(x), int(y), int(x + w),

int(y + h))

# determine the facial landmarks for the face region, then

# convert the facial landmark (x, y)-coordinates to a NumPy

# array

shape = predictor(gray, rect)

shape = face_utils.shape_to_np(shape)

# extract the left and right eye coordinates, then use the

# coordinates to compute the eye aspect ratio for both eyes

leftEye = shape[lStart:lEnd]

rightEye = shape[rStart:rEnd]

leftEAR = eye_aspect_ratio(leftEye)

rightEAR = eye_aspect_ratio(rightEye)

# average the eye aspect ratio together for both eyes

ear = (leftEAR + rightEAR) / 2.0

# compute the convex hull for the left and right eye, then

# visualize each of the eyes

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)

# check to see if the eye aspect ratio is below the blink

# threshold, and if so, increment the blink frame counter

if ear

COUNTER += 1

# if the eyes were closed for a sufficient number of

# frames, then sound the alarm

if COUNTER >= EYE_AR_CONSEC_FRAMES:

# if the alarm is not on, turn it on

if not ALARM_ON:

ALARM_ON = True

# check to see if the TrafficHat buzzer should

# be sounded

if args["alarm"] > 0:

th = espeak.synth("hi,wake up!")

# draw an alarm on the frame

cv2.putText(frame, "DROWSINESS ALERT!", (10, 30),

cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)

# otherwise, the eye aspect ratio is not below the blink

# threshold, so reset the counter and alarm

else:

COUNTER = 0

ALARM_ON = False

# draw the computed eye aspect ratio on the frame to help

# with debugging and setting the correct eye aspect ratio

# thresholds and frame counters

cv2.putText(frame, "EAR: {:.3f}".format(ear), (300, 30),

cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)

# show the frame

cv2.imshow("Frame", frame)

key = cv2.waitKey(1) & 0xFF

# if the `q` key was pressed, break from the loop

if key == ord("q"):

break

# do a bit of cleanup

cv2.destroyAllWindows()

vs.stop()

以下是代码下载链接:

链接:http://pan.baidu.com/s/1pLV32Y3 密码:952u。

解压后进入目录执行:

python test.py --cascade haarcascade_frontalface_default.xml \

--shape-predictor shape_predictor_68_face_landmarks.dat --alarm 1

即可。

申明:这只是测试代码大家不可用于实际驾驶的疲劳驾驶检测且不可用于商业用途。

求顶

当闭眼的时候音箱会提示"hi,wake up!"

python疲劳检测代码_【君奉天|开发日记】疲劳驾驶检测相关推荐

  1. python画兔子代码_【后端开发】如何用Python画一只兔子——turtle库circle()画圆函数的详细用法介绍...

    周末学习了一下turtle库的基本函数,试着画了一只大耳朵小兔子,灵感来源是jellycat邦尼兔.turtle库中circle()函数用来画弧,但和通常先确定原点,再根据半径.夹角画弧的方法有所不同 ...

  2. python嵌入shell代码_小白进!嵌入式开发如何快速入门?

    文章字数3600   干货指数:☆ ☆ ☆ ☆ ☆ 留意没?其实智能手环.智能音箱.智能家电.共享单车.无人驾驶.....这些属于嵌入式系统的产品都早已融入了我们的日常生活. 嵌入式究竟是什么?嵌入式 ...

  3. python新年有趣代码_搞几款由“Python”语言编写的“有趣、恶搞、好玩”的程序代码!...

    下载好向圈APP可以快速联系圈友 您需要 登录 才可以下载或查看,没有帐号?立即注册 x 为提高大家对"Python"编程语言的学习兴趣,今天给大家分享几款有趣的Python程序代 ...

  4. 小程序分享到朋友圈功能_小程序开发日记 分享到朋友圈

    贵州 水司楼 图片来自 视频截图 最近微信小程序开始公测小程序分享到朋友圈的功能了.记得前两天刚开始内测时,小程序社区里就不断有人发帖问关于分享到朋友圈的各种问题.很显然大家对这个新特性都特别关心.那 ...

  5. 探索工业智能检测,基于轻量级YOLOv5s开发构建焊接缺陷检测识别系统

    前面也有讲过将智能模型应用和工业等领域结合起来是有不错市场前景的,比如:布匹瑕疵检测.瓷砖瑕疵检测.PCB缺陷检测等等,在工业领域内也有很多可为的方向,本文的核心目的就是想要基于目标检测模型来开发构建 ...

  6. 人脸检测算法_腾讯已开源高精度人脸检测算法DSFD

    腾讯提出一种高精度双分支人脸检测器DSFD并开源.该算法曾在全球两大权威人脸检测数据集WIDERFACE和FDDB上均取得了第一. 任务介绍 人脸检测算法是在图像上检测出人脸的位置(通常以矩形框形式输 ...

  7. yolov3为什么对大目标检测不好_从YOLOv1到YOLOv3,目标检测的进化之路

    引言:如今基于深度学习的目标检测已经逐渐成为自动驾驶,视频监控,机械加工,智能机器人等领域的核心技术,而现存的大多数精度高的目标检测算法,速度较慢,无法适应工业界对于目标检测实时性的需求,这时YOLO ...

  8. python画动物代码_如何用python画简单的动物_后端开发

    python3.x完全兼容python2.x吗?_后端开发 可以说是完全不兼容.相对于Python的早期版本,Python3是一个较大的升级,为了不带入过多的累赘,Python 3.0在设计的时候没有 ...

  9. python人脸检测代码_如何用不到25行Python代码实现人脸检测

    本文我们会讲讲怎样利用不到 25 行 Python 代码和开源库 OpenCV,以很简单的方式实现人脸识别. 在正式开始前,先提以下两点小小的建议:先别急着跳到代码部分,最好在前文理解一下代码是干什么 ...

最新文章

  1. 那些对混合云开发和应用程序环境的错误认识
  2. eclipse下java.lang.OutOfMemoryError: PermGen space解决方法
  3. 让 .NET 轻松构建中间件模式代码
  4. 经常使用的webservice接口
  5. everything搭配什么软件_重磅推荐一款神级工具软件!有了它,90%的软件都可以卸载了!...
  6. 【Python】一句话 if else 简洁写法
  7. 系统学习深度学习(四十三)--GAN简单了解
  8. linux进程名称最大长度,linux – 进程名称长度的最大允许限制是多少?
  9. java 对象流 乱码,JAVA 中的 IO 流
  10. 深度学习软件资源列表
  11. 单行和多行文字溢出省略号显示
  12. 【POJ 3348】Cows【凸包裸题】
  13. 编译原理:c语言词法分析器的实现
  14. 2021年下软考高项信息系统项目管理师真题试卷答案解析
  15. svg, ttf, woff, woff2图标的转换
  16. CentOS7.6 安装Oracle12C(上)
  17. BC26低功耗的OPENCPU代码注意事项
  18. 《土豆荣耀》重构笔记(五)创建角色以及怪物的动画
  19. 光电器件(发光器件)特征与发光特性介绍
  20. 鼠标手--IT人士/电脑使用者、网民的职业病,给网友们提个醒

热门文章

  1. 华为笔记本转轴坏了修复指南记录
  2. 文本操作的相关概念和方法+pickle序列化+csv文件操作+操作系统命令(os和os.path)+shutil模块+zipfile模块+递归算法打印目录树
  3. 电化学工作站求峰高实现设计
  4. 最受程序员欢迎的20本书
  5. SCT2330CTVBR
  6. linux网卡是百兆还千兆,查看网卡是百兆还是千兆
  7. kernel网络之软中断
  8. 路由分配和pbx以及cti
  9. JavaScript最简单的方法实现简易的计算器
  10. 97岁的诺奖得主,活着就会有好事发生