-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (24 loc) · 932 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!--
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/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
</head>
<body>
<h1>Your Favorite RayBan - PoseNet example using p5.js</h1>
<p id='status'>Loading model...</p>
<script src="sketch.js"></script>
<div class="glassWrapper">
<img src="glass1.png" class="glass" onclick="selectGlass('glass1.png')">
<img src="glass2.png" class="glass" onclick="selectGlass('glass2.png')">
<img src="glass3.png" class="glass" onclick="selectGlass('glass3.png')">
</div>
</body>
</html>