Spaces:
Paused
Paused
<html> | |
<head> | |
<title>Object Detection App</title> | |
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> | |
</head> | |
<body> | |
<h1>Real-Time Object Detection</h1> | |
<p>Upload an image to detect objects using DETR.</p> | |
<form method="POST" enctype="multipart/form-data" action="/upload"> | |
<input type="file" name="file" accept="image/*"> | |
<input type="submit" value="Detect Objects"> | |
</form> | |
</body> | |
</html> |