-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·56 lines (47 loc) · 1.94 KB
/
index.html
File metadata and controls
executable file
·56 lines (47 loc) · 1.94 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Neural Style Transfer : WebGL</title>
<meta charset="utf-8">
<script src="js/inflate.min.js"></script>
<script src="js/webdnn.js"></script>
<script src="js/webcam.js"></script>
<script src="js/script.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="Layer OutputLayer" onclick="togglePause(); return false;">
<canvas id="result" width="192" height="144"></canvas>
</div>
<div class="Layer CameraLayer"></div>
<canvas id="snap" width="192" height="144"></canvas>
<div class="menu">
<p style="font-size: 22px; font-weight: normal; color: #fff;">REALTIME STYLE TRANSFER</p>
<p style="margin-top:50px;font-size: 18px;">STYLES</p>
<a href="javascript:initialize('./output-candy', 'CANDY');">CANDY</a>
<hr>
<a href="javascript:initialize('./output-composition', 'COMP');">COMP</a>
<hr>
<a href="javascript:initialize('./output-edtaonisl', 'EDTAONISL');">EDTAONISL</a>
<hr>
<a href="javascript:initialize('./output-fur_0', 'FUR');">FUR</a>
<hr>
<a href="javascript:initialize('./output-hokusai', 'HOKUSAI');">HOKUSAI</a>
<hr>
<a href="javascript:initialize('./output-hundertwasser', 'HUNDERTWASSER');">HUNDERTWASSER</a>
<hr>
<a href="javascript:initialize('./output-kanagawa', 'WAVE');">WAVE</a>
<hr>
<a href="javascript:initialize('./output-kandinsky_e2_full512', 'KANDINSKY');">KANDINSKY</a>
<hr>
<a href="javascript:initialize('./output-seurat', 'SEURAT');">SEURAT</a>
<hr>
<a href="javascript:initialize('./output-starrynight', 'STARRYNIGHT');">STARRYNIGHT</a>
<hr>
<p style="margin-top:60px;font-size: 18px;">STATUS</p>
<div id="status" onclick="togglePause(); return false;">
SELECT A STYLE
</div>
</div>
</body>
</html>