-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha.html
26 lines (21 loc) · 954 Bytes
/
a.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
<html>
<head>
<script type="text/javascript" src="https://unpkg.com/@tensorflow/tfjs"></script>
<script type="text/javascript" src="https://unpkg.com/@tensorflow-models/posenet"></script>
<script type="text/javascript" src="https://unpkg.com/pts/dist/pts.js"></script>
<script type="text/javascript" src="./js/bodypose.js"></script>
<style type="text/css">
body { margin: 0; padding: 20px; font-family: sans-serif; }
#pts { position: relative; width: 600px; height: 600px; }
#video { position: absolute; top: 0; left: 0; display: none; }
small { color: #abc; font-size: 11px;}
</style>
</head>
<body>
<div id="pts">
<img src="./img/sample.jpg" style="width:809px; height:1080px;" id="video" />
</div>
<p><small>Photo credit (cc): pexels.com/photo/animal-canine-dog-grass-220968/</small></p>
<script type="text/javascript" src="./js/a.js"></script>
</body>
</html>