Hand-Pose-Detection / index.html
DHEIVER's picture
Update index.html
b9c9575 verified
raw
history blame
652 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hand Pose Detection</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>3D Hand Pose Detection</h1>
<div id="container">
<img id="inputImage" src="hand.jpg" alt="Input Image">
<canvas id="outputCanvas"></canvas>
</div>
<p id="status">Loading model...</p>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/hand-pose-detection"></script>
<script src="app.js"></script>
</body>
</html>