Create index.html
Browse files- index.html +18 -0
index.html
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Korean Jelly Identifier</title>
|
| 7 |
+
</head>
|
| 8 |
+
<body>
|
| 9 |
+
<h1>Korean Jelly Identifier</h1>
|
| 10 |
+
<video id="video" width="300" height="300" autoplay></video>
|
| 11 |
+
<button id="capture">Capture</button>
|
| 12 |
+
<canvas id="canvas" width="300" height="300" style="display: none;"></canvas>
|
| 13 |
+
<p id="result"></p>
|
| 14 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
|
| 15 |
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/ml5/0.6.0/ml5.min.js"></script>
|
| 16 |
+
<script src="app.js"></script>
|
| 17 |
+
</body>
|
| 18 |
+
</html>
|