Spaces:
Running
Running
Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -5,14 +5,14 @@
|
|
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>
|
|
|
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 type="module" 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 id="webcam-container">
|
16 |
<video id="video" autoplay muted playsinline></video>
|
17 |
<canvas id="canvas"></canvas>
|
18 |
</div>
|