Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Real-Time Object Detection</title> | |
<!-- Link to the JavaScript and CSS files --> | |
<script type="module" src="assets/detection.js"></script> | |
<link rel="stylesheet" href="assets/styles.css"> | |
</head> | |
<body> | |
<h1>Real-Time Object Detection</h1> | |
<h4>Powered by YOLO and Transformers.js</h4> | |
<!-- Container for the webcam and canvas --> | |
<div id="container"> | |
<video id="video" autoplay muted playsinline></video> | |
<canvas id="canvas"></canvas> | |
</div> | |
<!-- Status and Controls --> | |
<div id="controls"> | |
<label id="status">Initializing...</label> | |
</div> | |
</body> | |
</html> | |