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