-
Notifications
You must be signed in to change notification settings - Fork 1
/
cam.html
21 lines (18 loc) · 850 Bytes
/
cam.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<meta charset="UTF-8">
<!-- importing javascript libraries of ML5 and P5 libraries -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
</head>
<body>
<!-- Show a cute intro to the user -->
<h1>Welcome to demo of poseNet ML model</h1>
<!-- As loading takes time, show the below message. We will change this later when the model
will be ready to use using id name "status" to change the text inside.-->
<p id='status'>Loading model...</p>
<!-- put our poseNet code. We seperated this to another file for better readability.-->
<script src="poseNet_webcam.js"></script>
</body>
</html>