-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproposal.html
More file actions
executable file
·141 lines (129 loc) · 5.68 KB
/
proposal.html
File metadata and controls
executable file
·141 lines (129 loc) · 5.68 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width"/>
<title>Responsive Design website template</title>
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/responsee.css">
<link rel="stylesheet" href="owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="owl-carousel/owl.theme.css">
<!-- CUSTOM STYLE -->
<link rel="stylesheet" href="css/template-style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800&subset=latin,latin-ext'
rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<script type="text/javascript" src="js/responsee.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
</head>
<body class="size-1140">
<!-- TOP NAV WITH LOGO -->
<header>
<nav>
<div class="line">
<div class="top-nav">
<div class="logo hide-l">
<a href="index.html">PROJECT <br/><strong>INFO</strong></a>
</div>
<p class="nav-text">Custom menu text</p>
<div class="top-nav s-12 l-5">
<ul class="right top-ul chevron">
<li><a href="proposal.html">Proposal</a>
</li>
<li><a href="progress.html">Progress</a>
</li>
</ul>
</div>
<ul class="s-12 l-2">
<li class="logo hide-s hide-m">
<a href="index.html"> PROJECT <br/><strong> INFO </strong></a>
</li>
</ul>
<div class="top-nav s-12 l-5">
<ul class="top-ul chevron">
<li><a href="system.html">System</a>
</li>
<li><a href="index.html">Demo</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<section>
<div id="head">
<div class="line">
<h1>Proposal</h1>
</div>
</div>
<div id="content">
<div class="line">
<p class="s-12 m-12 l-8 center">Sharing cars in recent years is very popular. More and more people choose
shared car or taxi to travel so to secure passengers and drivers' safety is very important. We plan to
develop a real-time drivers’ behavior anomaly detection application, which can be used to monitor taxi
or shared car drivers’ violations or other emergencies, such as drunk driving, fatigue driving, or even
a robbery. The videos are captured by drivers’ mobile phone’s front camera and transferred to the
processing platform in real time. The processing center will send the recognition result to the app
immediately.
</p>
<h2>reference</h2>
<p class="s-12 m-12 l-8 center">
- Drunk driving detection:
[https://github.com/wuling31715/drunk_detect](https://github.com/wuling31715/drunk_detect);
[https://arxiv.org/pdf/1805.10030.pdf](https://arxiv.org/pdf/1805.10030.pdf).
- Fatigue driving detection:
[https://www.researchgate.net/publication/322592166_Deep_Learning_for_Fatigue_Estimation_on_the_Basis_of_Multimodal_Human-Machine_Interactions](https://www.researchgate.net/publication/322592166_Deep_Learning_for_Fatigue_Estimation_on_the_Basis_of_Multimodal_Human-Machine_Interactions);
[https://github.com/raja434/driver-fatigue-detection-system](https://github.com/raja434/driver-fatigue-detection-system).
- Object detection:
[https://pjreddie.com/darknet/yolo/](https://pjreddie.com/darknet/yolo/).
- Distracted driver detection:
[https://github.com/omnigeeker/mlnd_distracted_driver_detection](https://github.com/omnigeeker/mlnd_distracted_driver_detection).
- Apache Flink:
[https://flink.apache.org](https://flink.apache.org).
</p>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="line">
<div class="s-12 l-6">
<p>Copyright 2019, HKU MSc
</p>
</div>
<div class="s-12 l-6">
<p class="right">
<a class="right" href="http://www.myresponsee.com" title="Responsee - lightweight responsive framework">
By: Li, Ran, Zhang
</a>
</p>
</div>
</div>
</footer>
<script type="text/javascript" src="owl-carousel/owl.carousel.js"></script>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$("#owl-demo").owlCarousel({
slideSpeed: 300,
autoPlay: true,
navigation: false,
pagination: false,
singleItem: true
});
$("#owl-demo2").owlCarousel({
slideSpeed: 300,
autoPlay: true,
navigation: false,
pagination: true,
singleItem: true
});
});
</script>
</body>
</html>