-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (127 loc) · 7.53 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<title>GEMS Web App</title>
<script type="text/javascript" src="./js/piwik/piwik.js"></script>
<script type="text/javascript" src="./js/jsgif/LZWEncoder.js"></script>
<script type="text/javascript" src="./js/jsgif/NeuQuant.js"></script>
<script type="text/javascript" src="./js/jsgif/GIFEncoder.js"></script>
<script type="text/javascript" src="./js/jsgif/b64.js"></script>
<script type='text/javascript' src='./js/utils.js'></script>
<script type='text/javascript' src='./js/canvasy/canvasy.js'></script>
<script type='text/javascript' src='./js/animation.js'></script>
<script type='text/javascript' src='./js/grid.js'></script>
<script type='text/javascript' src='./js/display.js'></script>
<script type='text/javascript' src='./js/renderer.js'></script>
<script type='text/javascript' src='./js/ui.js'></script>
<!--
<script type='text/javascript' src='./js/main.js'></script>
-->
<link rel='stylesheet' href='./css/normalize.css'>
<link rel='stylesheet' href='./css/skeleton.css'>
<link rel='stylesheet' href='./css/styles.css'>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700,800" rel="stylesheet">
</head>
<body onload='init();'>
<div class='container'>
<div class='header twelve columns'>
<h1 class='title '>GEMS</h1>
<h5 style='margin-top:-0.4em;line-height:1.3em;'>Generative Embedded Mapping Systems</h5>
<div class=''>
<span class='four columns'>
Tom White <br>
<a href='mailto:[email protected]'>[email protected]</a>
</span>
<span class='four columns'>
Phoebe Zeller<br>
<a href='mailto:[email protected]'>[email protected]</a>
</span>
<span class='four columns'>
Hannah Dockerty<br>
<a href='mailto:[email protected]'>[email protected]</a>
</span>
</div>
</div>
<div class='twelve columns toolbar' style="background-color:none;">
<button title='Previous grid' id ='prev-grid-button' class='tool-button'>
<img src="./imgs/icons/ic_grid_left_24px.svg"> </button>
<button title='Next grid' id='next-grid-button' class='tool-button'>
<img src="./imgs/icons/ic_grid_right_24px.svg"> </button>
<!-- File inputs are notorious to style, so this is a workaround-->
<button title='Previous example path' id='prev-path-button' class='tool-button'>
<img src='imgs/icons/ic_prev_path_24px.svg'>
</button>
<button title='Next example path' id='next-path-button' class='tool-button'>
<img src='imgs/icons/ic_next_path_24px.svg'>
</button>
<button title='Clear path' id='clear-button' class='tool-button'>
<img src='./imgs/icons/ic_clear_path_24px.svg'>
</button>
<button id='render-button' class='tool-button'>
(app coming soon)
</button>
<div id='dropdown'>
<button id='dropdown-icon' class='tool-button'>
<img src='./imgs/icons/ic_more_horiz_black_24px.svg'>
</button>
<div id='dropdown-list'>
<div class='dropdown-button file-input-container'>
<p>Add Path</p>
<input id='load-json-button' class='file-input-button' type='file'>
</div>
<a id='save-json-button' href='default.json' target='_blank' download='path.json'>
<div title='Save path' class='dropdown-button'>
<p>Save Path</p>
</div>
</a>
<div class='dropdown-button file-input-container'>
<p>Add Grid</p>
<input id='load-grid-button' class='file-input-button' type='file'>
</div>
</div>
</div>
</div>
<div id='anim-windows' class='twelve columns' style="background-color:lightgrey;">
<canvas id='anim-grid' class='six columns' style="background-color:lightgrey;"></canvas>
<canvas id='anim-display' class='six columns'></canvas>
</div>
<div class='twelve columns toolbar' id='play-toolbar' style='margin-bottom:2em;'>
<div id='play-button-container'>
<button id='play-button' class='tool-button'>
<img id='play-button-icon' src="./imgs/icons/ic_play_arrow_black_24px.svg">
</button>
</div>
<div id='timeline-container'>
<input type='range' id='timeline' value='5000'>
<p id='timeline-counter' class='readout'></p>
</div>
</div>
<h4 id='renders-header' style="display:none;">Rendered Animations</h4>
<!--<p id='no-animations-sign'>No animations yet, render something!</p>-->
<div id='render-container' style="display:none;" class='twelve columns'>
<!--<div id='placement-guide'></div> renders will be placed before to this element-->
</div>
<div class='twelve columns' style="display:none;">
<p id='fps' class='readout'></p>
</div>
<h4>Abstract</h4>
<p>
We introduce a computational design workflow based on training examples: Generative Embedded Mapping Systems (GEMS). GEMS enable a designer to leverage embedded spaces to provide parametric systems with automatic mappings to future input data. Instead of specifying a rule-based system for mapping data based on predefined attributes, designers provide parameter values across a set of training examples. These training values serve as anchor points bridging a parameter and embedding space. Settings for new data can then be extrapolated from known pairs. A Neural Caricature application is examined as an example implementation of this workflow. The Neural Caricature architecture is more modular, upgradable, and can capture more nuance than systems using more traditional representation based mappings.
</p>
<!--
<div class='video-container' class='twelve columns'>
<iframe src="https://www.youtube.com/embed/lNjXbKNhtGA?rel=0&showinfo=0&enablejsapi=1" frameborder="0" allowfullscreen></iframe>
</div>
-->
<!--
<div class='footer'>
<a href="https://docs.google.com/presentation/d/11ia5Zeg7AiiIi5y10S6z5SQci3ASgJW6cbKwvQAAv1E/edit?usp=sharing">(slides)<a>
</div>
-->
<div class='footer'>
<a href='https://github.com/vusd/gems/' target='_blank'>View on GitHub</a>
</div>
</div>
</body>
</html>