-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 934 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
<!doctype html>
<html lang="en">
<head>
<style>
html, body {
font-family: Arial, Helvetica, sans-serif;
background: #efefef;
}
.images-wrapper {
display: flex;
}
.images-wrapper img {
display: none;
}
.images-wrapper canvas {
margin: 10px auto;
border: 1px dashed #ccc;
}
</style>
<title>
TensorFlow.js Object Detection
</title>
</head>
<body>
<h1>TensorFlow.js Object Detection</h1>
<label for='base_model'>Base Model</label>
<select id='base_model'>
<option value="lite_mobilenet_v2">SSD Lite Mobilenet V2</option>
<option value="mobilenet_v1">SSD Mobilenet v1</option>
<option value="mobilenet_v2">SSD Mobilenet v2</option>
</select>
<div id="images">
</div>
<script src="index.js"></script>
</body>
</html>