-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (31 loc) · 917 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Segmentation Demo</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./static/index.css" type="text/css" media="all">
</head>
<style>
</style>
<body>
<header>
<div class="header-title">
<h1 id="logo">Segmentation Demo</h1>
</div>
</header>
<div class="container">
<main>
<canvas id="canvas"></canvas>
<div id="message">Loading Model...</div>
<div id="photo-album"></div>
</main>
</div>
<img id="bg-img" src="static/land.jpg">
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js">
</script>
<script src="./static/model.js"></script>
</body>
</html>