Introduction

Driver drowsy detection dataset consists of both male and female drivers, with various facial characteristics, different ethnicities, and 5 different scenarios.
The videos are taken in real and varying illumination conditions. The scenarios contain BareFace(NoGlasses), Glasses, Sunglasses, Night-BareFace(Night-NoGlasses)
and Night-Glasses. Every video may contain 2 kinds of status: drowsy, non-drowsy. Each video is different situation with different status transition.

驾驶员疲劳检测数据集包含了男性和女性驾驶员,涵盖不同的面部特征、种族、以及5个不同的场景。

这些视频在实际和不同光照的状态下拍摄。场景中包含了BareFace(NoGlasses), Glasses, Sunglasses, Night-BareFace(Night-NoGlasses)和Night-Glasses,

每个视频可能包含了2种状态:drowsy, non-drowsy. 每个视频都是在不同的状态转换下完成的。

--------------------------------------------------------------------------------------------------------

Camera Setting and Video Format

We used the active infrared (IR) illumination and acquire IR videos in the dataset collection.
The videos are in 640x480 pixels and 15/30 frames per second AVI format without audio.
[Notice] The videos in night_noglasses and night_glasses scenarios are 15 frame per second, and the videos in the other scenarios are 30 frame per second.

在这个数据集中我们使用主动红外照明并获取红外视频。

这个视频集有640x480的像素,15/30fps,不带声音的AVI格式。

[注意] 这个视频集在night_noglasses和night_glasses场景下是15fps,在其他场景中是30fps。

--------------------------------------------------------------------------------------------------------

Driver's Behaviors

Yawning : The driver opens his mouth wide due to tiredness.
Nodding : The driver's head falls forward when drowsy or asleep.
Looking aside : The driver turns his head left and right.
Talking & laughing : The driver is talking or laughing while driving.
Sleepy-eyes : The driver closes his eyes due to drowsiness while driving.
Drowsy : The driver looks like sleepy and lethargic.(including nodding, slowly blinking and yawning.)
Stillness : The driver drives normally.

Yawning(打哈欠): 驾驶员由于困倦张大嘴巴。

Nodding: 当疲劳和睡着时驾驶员向前低下头。

Looking aside: 驾驶员向左或向右转头。

Talking & laughing: 在驾驶中,驾驶员说话或大笑。

Sleepy-eyes: 在驾驶中,驾驶员由于疲劳闭上眼睛。

Drowsy: 驾驶员看起来睡着和昏昏欲睡。(包括低头,缓慢眨眼和打哈欠。)

Stillness: 驾驶员正常驾驶。

--------------------------------------------------------------------------------------------------------

Training Dataset

The training dataset provides 18 subject folders. Each subject will contain five different scenarios(noglasses, glasses, night_noglasses, night_glasses, sunglasses),
and each scenario will contain 4 videos with different situation and corresponding annotation files.
"yawning.avi" :The video includes yawning behaviors.
"slowBlinkWithNodding.avi" : The video includes sleepy-eyes and nodding behaviors.
"sleepyCombination.avi" : The video includes combination of drowsy behaviors, e.g. sleepy-eyes, yawning, nodding.
"nonsleepyCombination.avi" : The videos includes combination of non-drowsy behaviors, e.g. laughing, talking, looking aside.
[Notice] There is no video in Number-005 subject's night_glasses scenario.

训练集提供了18个人的文件夹。每个人包含了5个不同场景(noglasses, glasses, night_noglasses, night_glasses, sunglasses),

每个场景包含4个视频,含有不同的状况和相关的标注文件。

"yawning.avi" :包含了打哈欠的行为.

"slowBlinkWithNodding.avi" : 包含了睡着的眼睛和低头行为。

"sleepyCombination.avi" : 包含有各种疲劳行为,如睡着的眼睛、打哈欠、低头。

"nonsleepyCombination.avi" : 包含了不疲劳的各种行为,如大笑、说话、四处看。

[注意] 在005中没有night_glasses场景。

--------------------------------------------------------------------------------------------------------

Evaluation Dataset

The evaluation dataset provides 4 subject folders. Each subject will contain 5 videos with different scenarios and corresponding annotation files. The videos would perform
various situations with different drowsy, non-drowsy status transition.

验证集提供了4个人的文件夹。每个人包含5个在不同场景下的视频和相关的标注文件。视频展示了不同状况,其中有疲劳、非疲劳的状态转换。

--------------------------------------------------------------------------------------------------------

Annotation

There are four annotations of each video and a single digit is used to indicate the status of the frame.
[video name]_drowsiness.txt : 0 means Stillness and 1 means Drowsy.
[video name]_head.txt : 0 means Stillness, 1 means Nodding and 2 means Looking aside.
[video name]_mouth.txt : 0 means Stillness and 1 means Yawning and 2 means Talking & Laughing.
[video name]_eye.txt : 0 means Stillness and 1 means Sleepy-eyes.

每个视频中有4个标注,一个数字用来表示帧的状态。

drowsiness: 0---Stillness, 1---Drowsy.
head: 0---Stillness, 1---Nodding, 2---Looking aside.
mouth: 0---Stillness, 1---Yawning, 2---Talking & Laughing.
eye: 0---Stillness, 1---Sleepy-eyes.

--------------------------------------------------------------------------------------------------------

Evaluation Function

The evaluation function consists of both Matlab and C++ version and is provided for user to evaluate the drowsiness performance on the evaluation dataset. It supports any environment that contains Matlab or C++ compiler.The function allows:

(1) evaluate the drowsy results(*_drowsiness.txt) for the evaluation dataset;
(2) output the accuracy score for both indivial video and overall video.

In order to use the evaluation function with your detection algorithm, you will have to make sure the format of your algorithm and compared groud-truth is indentical.
For more details, please find the instruction in the function.

Driver drowsy detection dataset的更多相关文章

  1. 目标检测数据集The Object Detection Dataset

    目标检测数据集The Object Detection Dataset 在目标检测领域,没有像MNIST或Fashion MNIST这样的小数据集.为了快速测试模型,我们将组装一个小数据集.首先,我们 ...

  2. UR fall detection dataset

    http://fenix.univ.rzeszow.pl/~mkepski/ds/uf.html

  3. 课程四(Convolutional Neural Networks),第三 周(Object detection) —— 2.Programming assignments:Car detection with YOLOv2

    Autonomous driving - Car detection Welcome to your week 3 programming assignment. You will learn abo ...

  4. Autonomous driving - Car detection YOLO

    Andrew Ng deeplearning courese-4:Convolutional Neural Network Convolutional Neural Networks: Step by ...

  5. YOLO object detection with OpenCV

    Click here to download the source code to this post. In this tutorial, you’ll learn how to use the Y ...

  6. code and dataset resources of computer vision

    From:http://rogerioferis.com/VisualRecognitionAndSearch2014/Resources.html Source Code Non-exhaustiv ...

  7. 【计算机视觉】detection/region/object proposal 方法综述文章

    目录(?)[-] Papers 大纲 各种OP方法的回顾 Grouping proposal methods Window scoring proposal methods Aliternate pr ...

  8. Viola–Jones object detection framework--Rapid Object Detection using a Boosted Cascade of Simple Features中文翻译 及 matlab实现(见文末链接)

    ACCEPTED CONFERENCE ON COMPUTER VISION AND PATTERN RECOGNITION 2001 Rapid Object Detection using a B ...

  9. MBMD(MobileNet-based tracking by detection algorithm)作者答疑

    If you fail to install and run this tracker, please email me (zhangyunhua@mail.dlut.edu.cn) Introduc ...

随机推荐

  1. np中的随机函数

      numpy.random.uniform介绍: 1. 函数原型:  numpy.random.uniform(low,high,size)  ==>也即其他函数是对该函数的进一步封装 功能: ...

  2. PHP流协议

    目前对PHP流协议的定义是数据传输过程中,不同数据类型采用不同处理函数的技术规范(个人理解)这一规范比起传统文件处理函数来的更规范(诸如fget,fwrite,fopen,fclose等) $opts ...

  3. CloseableHttpClient设置超时

    Java开发我们常常需要和第三方系统进行通信,通信的方式有多种,如dubbo方式,webservice,微服务和CloseableHttpClient等方式,常涉及到超时问题,这里主要说的是Close ...

  4. sqlalchemy 基本操作

    表操作 models.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 ...

  5. JavaScript三元运算符

    ㈠条件运算符也叫做三元运算符 ⑴语法:条件表达式?语句1:语句2: ⑵执行的流程: ①条件运算符在执行时,首先对条件表达式进行求值 ▶如果该值为true,则执行语句1,并返回执行结果 ▶如果该值为fa ...

  6. 2019CSP-J第二轮 B题C题

    B.简单模拟 /* 寻找每一张公交票可用的最早的地铁优惠票,使用过之后一定要销毁*/ #include <iostream> #include <cstdio> #includ ...

  7. node 中的global对象和process对象

    官方文档:http://nodejs.cn/api/ 因为Node.js是运行在服务区端的JavaScript环境,服务器程序和浏览器程序相比,最大的特点是没有浏览器的安全限制了,而且,服务器程序必须 ...

  8. Django Admin中增加导出Excel功能

    参考: https://www.cnblogs.com/yoyo008/p/9232805.html 在使用Django Admin时, 对于列表我们有时需要提供数据导出功能, 如下图: 在Djang ...

  9. HTTP第八、九章之网关、隧道、web机器人

    网关 网关(gateway): 资源和应用程序之间的粘合剂.应用程序可以(通过HTTP或其它已定义的接口)请求网关来处理某条请求,网关可以提供一条响应.网关可以向数据库发送查询语句,或者生成动态的内容 ...

  10. AtCoder AGC001E BBQ Hard (DP、组合计数)

    题目链接: https://atcoder.jp/contests/agc001/tasks/agc001_e 题解: 求\(\sum^n_{i=1}\sum^n_{j=i+1} {A_i+A_j+B ...