Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

Commit 26e9389

Browse files
committed
Merge branch 'v0.3.1' into release
2 parents 4c2326f + 7692160 commit 26e9389

File tree

70 files changed

+662
-57
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+662
-57
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ ml5.js does not require p5.js, however as ml5.js and p5.js have been designed to
4848
### p5js
4949

5050
* [CVAE](https://ml5js.github.io/ml5-examples/p5js/CVAE)
51+
* [BodyPix_Image](https://ml5js.github.io/ml5-examples/p5js/BodyPix/BodyPix_Image)
52+
* [BodyPix_Webcam](https://ml5js.github.io/ml5-examples/p5js/BodyPix/BodyPix_Webcam)
53+
* [BodyPix_Webcam_Parts](https://ml5js.github.io/ml5-examples/p5js/BodyPix/BodyPix_Webcam_Parts)
5154
* [DCGAN](https://ml5js.github.io/ml5-examples/p5js/DCGAN)
5255
* [Sentiment](https://ml5js.github.io/ml5-examples/p5js/Sentiment)
5356
* [UNET](https://ml5js.github.io/ml5-examples/p5js/UNET/UNET_webcam)

javascript/FeatureExtractor_Image_Classification/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Image Classification using Feature Extraction with MobileNet</title>
66

77

8-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
8+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
99

1010
<style></style>
1111
</head>

javascript/ImageClassification/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Image Classification Example</title>
66

77

8-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
8+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
99
</head>
1010

1111
<body>

javascript/ImageClassification_Video/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<title>Webcam Image Classification using MobileNet</title>
66

77

8-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
8+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
99
</head>
1010

1111
<body>

javascript/PoseNet/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<title>PoseNet Example</title>
66

7-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
7+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
88

99
</head>
1010

javascript/Sentiment/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<head>
44
<title>ml5 - Sentiment</title>
5-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
5+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
66

77
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script>
88
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>

javascript/StyleTransfer_Image/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Style Transfer Image Example with Promises</title>
6-
<script src="https://unpkg.com/[email protected].0/dist/ml5.min.js" type="text/javascript"></script>
6+
<script src="https://unpkg.com/[email protected].1/dist/ml5.min.js" type="text/javascript"></script>
77

88
<style></style>
99
</head>
102 KB
Loading
80.2 KB
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<html>
2+
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>BodyPix with Webcam</title>
6+
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.min.js"></script>
7+
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
8+
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
9+
10+
<style></style>
11+
</head>
12+
13+
<script src="sketch.js"></script>
14+
15+
<body>
16+
<h1>BodyPix with Image</h1>
17+
<small>images via: https://commons.wikimedia.org</small>
18+
19+
</body>
20+
21+
</html>

0 commit comments

Comments
 (0)