-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexproject.html
More file actions
182 lines (166 loc) · 4.79 KB
/
indexproject.html
File metadata and controls
182 lines (166 loc) · 4.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Object Detection By harshad jadhav</title>
<style>
body{
font-family:Helvetica, sans-serif;
margin:0px;
padding:0px;
}
header.feature-box.right{
background-color:rgb(6, 6, 6);
color:white;
height:120px;
padding:5px;
text-align:right;
}
header.feature-box.below{
height:800px;
background-color:blue;
margin-top:-30px;
background-image: url("{{ url_for('static', filename='images/pexels-mikebirdy-192364.jpg') }}");
background-size:100%;
background-position:center;
}
ul{
list-style:none;
padding:0px;}
li{
display:inline-block;
background-color:gray;
border-radius:10px;
padding:10px;
margin:10px;
}
li:hover{
background-color:red;
margin:10px;
}
header a{
color:white;
text-decoration:none;
width:100%;
}
.details{
height:80px;
margin:40px;
padding:0px;
font-size:40px;
background-color:gray;
text-align:center;
color:black;
}
.features{
background:white;
color:gray;
display:flex;
flex-direction:row;
padding:20px;
}
.features figure
{/*background:pink;*/
width:400px;
margin:auto;
text-align:center;
text-transform:uppercase;
}
.features figure img{
border-radius:10%;
width:400px;
}
div.main{
display:flex;
margin:40px;
letter-spacing:1px;
h1, h2, h3, h4, h5, h6 {
font-family: "Helvetica";
letter-spacing: 5px;
}
}
.subpart2{
text-align:center;
text-transform:uppercase;
}
.subpart2 figure img{
border-radius:4%;
width:800px;
}
.contactpage{
margin:20px;
}
#textbox {
font-size: 18pt;
height: 42px;
width : 1000px;
}
#textboxes {
font-size: 18pt;
height: 42px;
width : 1000px;
}
footer{
background-color:black;
text-align:center;
margin:0px;
padding:0px;
color:white;
font-size:20px;
}
</style>
</head>
<body>
<header class="feature-box right">
<nav>
<ul>
<li><a href="motion_detection">Motion</a></li>
<li><a href="/FrontPage">Lane & Object Detection</a></li>
</ul>
</nav>
</header>
<header class="feature-box below">
</header>
<section class="details">
<h1>Sample Results</h1>
</section>
<section class="features">
<figure>
<img src="{{ url_for('static', filename='images/image1.jpg') }}" alt="YOLOv11 Results 1">
<figcaption>YOLOv11 Results 1</figcaption>
</figure>
<figure>
<img src="{{ url_for('static', filename='images/image2.jpg') }}" alt="YOLOv11 Results 2">
<figcaption>YOLOv11 Results 2</figcaption>
</figure>
<figure>
<img src="{{ url_for('static', filename='images/image3.jpg') }}" alt="YOLOv11 Results 3">
<figcaption>YOLOv11 Results 3</figcaption>
</figure>
</section>
<div class="main">
<div class="subpart1">
<h1>ADAS Using Deep Learning by harshad jadhav</h1><br>
<h2> FPS of Video</h2>
<p>FPS represents the Frame Rate, in case of GPU the FPS will be high while in case of CPU the FPS will be low</p><br>
<h2>Shape of Current Frame</h2>
<p>The shape of current frame i.e. Resolution will be calculated</p><br>
<h2>Detections in Current Frame</h2>
<p>Total Object detections in each of the frame will be calculated</p><br>
<h2>Drowsiness Detection</h2>
<p>Drowsiness is indicated by yawns, slow or infrequent eye blinks, and longer eye closures.</p>
</div>
<div class="subpart2"><figure>
<img src="../static/images/image.png" alt="Image Missing">
<figcaption>Sample Results</figcaption>
</figure>
</div>
</div>
<footer>
<p><h2>Thank You</h2></p>
</footer>
</body>
</html>