Spaces:
Running
Running
Update index.html
Browse files- index.html +17 -15
index.html
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
-
<head>
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
<
|
10 |
-
|
11 |
-
<
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
|
|
|
|
18 |
</html>
|
|
|
1 |
<!DOCTYPE html>
|
2 |
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>Real-Time Object Detection for Blind Assistance</title>
|
7 |
+
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
|
8 |
+
<script src="assets/detection.js"></script>
|
9 |
+
<link rel="stylesheet" href="assets/styles.css" />
|
10 |
+
</head>
|
11 |
+
<body>
|
12 |
+
<h1>Real-Time Object Detection for Blind Assistance</h1>
|
13 |
+
<p>This app detects objects in real-time using a webcam feed and provides audio feedback for blind assistance.</p>
|
14 |
+
<button id="start">Start Real-Time Detection</button>
|
15 |
+
<div>
|
16 |
+
<video id="video" autoplay muted playsinline></video>
|
17 |
+
<canvas id="canvas"></canvas>
|
18 |
+
</div>
|
19 |
+
</body>
|
20 |
</html>
|