-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
152 lines (139 loc) · 5.88 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drive Guardian</title>
<link rel="stylesheet" href="./styles.css">
<link rel="icon" href="./assets/favicon.ico" type="image/x-icon"><link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Stick+No+Bills:[email protected]&display=swap" rel="stylesheet">
<style>
::-webkit-scrollbar {
width: 13px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgb(77, 242, 22);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgb(104, 158, 23);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(25, 152, 25);
}
</style>
</head>
<body>
<header>
<nav>
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#" id="teamButton">Team</a>
<a href="#">Contact</a>
</nav>
</header>
<section id="home" class="home">
<div class="overlay">
<div class="popup">
<h2>Disclaimer</h2>
<p>This project is currently in development and is not authorized for on-road use.</br>User discretion is advised. The publishing team disclaims responsibility for any misuse.</p>
<button id="acceptButton">Accept</button>
</div>
</div>
<img src="assets/landing-page/bush_left.svg" class="bush1">
<img src="assets/landing-page/bush_right.svg" class="bush2">
<img src="assets/landing-page/leaf_left.svg" class="leaf1">
<img src="assets/landing-page/road.svg" class="road">
<img src="assets/landing-page/leaf_right.svg" class="leaf2">
<img src="assets/landing-page/header.svg" class="title">
<img src="assets/landing-page/ground.svg" class="ground">
<input type="image" src="assets/landing-page/upload.svg" class="upload" onclick="document.getElementById('fileInput').click();">
<input type="file" id="fileInput" style="display:none;">
<input type="image" src="assets/landing-page/stream.svg" class="stream" onclick="window.location.href='http://localhost:5000/video_stream?type=w'">
</section>
<section class="how-to-use">
<h1># How To Use</h1>
<div class="htu-container">
<div class="room-one">
<img src="./assets/how-to-use/how-to(1).png">
<p class="speech-bubble stream">STREAM</p>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Excepturi, quaerat temporibus repellat odit ad maxime consectetur, aut non porro eos fugit, debitis a quis iste iure minima ducimus. Minus, iusto!
</p>
</div>
<div class="room-two">
<img src="./assets/how-to-use/how-to(2).png">
<p class="speech-bubble process">PROCESS</p>
<p class="description">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Illum veniam sunt maxime consequatur, beatae placeat necessitatibus nostrum dolore architecto a laboriosam ut ex tempore quo? Exercitationem, placeat? Harum, tempora obcaecati.
</p>
</div>
<div class="room-three">
<img src="./assets/how-to-use/how-to(3).png">
<p class="speech-bubble observe">OBSERVE</p>
<p class="description">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Recusandae maiores tenetur illum quo dignissimos assumenda nihil doloremque totam molestiae, dolorum, repudiandae cumque delectus explicabo, placeat officia! Qui aperiam quis modi!
</p>
</div>
</div>
</section>
<div class="s1d623h8f1">
<h2>
<span class="black">HOW IT WORKS</span>
<span class="white">HOW IT WORKS</span>
</h2>
</div>
<section class="how-it-works">
<div class="hiw- wrapper">
<div class="hiw-container">
<input type="radio" name="slide" id="c1" checked>
<label for="c1" class="card">
<div class="row">
<div class="icon">1</div>
<div class="description">
<h4>Sobel-Feldman Filter</h4>
<p>Creates a binary image - Advanced color transformation techniques</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c2" >
<label for="c2" class="card">
<div class="row">
<div class="icon">2</div>
<div class="description">
<h4>Estimating the polynomials</h4>
<p>Plotting a smoother curve using Ax²+Bx+C</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c3" >
<label for="c3" class="card">
<div class="row">
<div class="icon">3</div>
<div class="description">
<h4>Preprocessing data & extracting features</h4>
<p>Object Detection using HOG Sub-Sampling</p>
</div>
</div>
</label>
<input type="radio" name="slide" id="c4" >
<label for="c4" class="card">
<div class="row">
<div class="icon">4</div>
<div class="description">
<h4>Lane + Object Detection</h4>
<p>The final part: Putting this all together</p>
</div>
</div>
</label>
</div>
</div>
</section>
<div class="spacer layer1"></div>
<section class="contact">
</section>
<script src="script.js"></script>
</body>
</html>