Spaces:
Running
Running
<!-- | |
Copyright (c) 2018 ml5 | |
This software is released under the MIT License. | |
https://opensource.org/licenses/MIT | |
--> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>PoseNet example using p5.js</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/addons/p5.dom.min.js"></script> | |
<script src="https://unpkg.com/ml5@latest/dist/ml5.min.js" type="text/javascript"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script> | |
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/face_mesh"></script> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<h1>PoseNet example using p5.js</h1> | |
<p id='status'>Loading model...</p> | |
<script src="sketch.js"></script> | |
</body> | |
</html> |