-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgenerate_report.template.html
407 lines (368 loc) · 18.6 KB
/
generate_report.template.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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<!DOCTYPE html>
<html lang="en">
<head>
<title>$report_name</title>
<meta charSet="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style media="only screen">
html, body {
height: 100%;
width: 100%;
margin: 0;
box-sizing: border-box;
-webkit-overflow-scrolling: touch;
}
html {
position: absolute;
top: 0;
left: 0;
padding: 0;
overflow: auto;
}
body {
padding: 16px;
overflow: auto;
background-color: #181d1f;
font-family: sans-serif;
}
body details {
color: white;
text-align: center;
}
/* for the AG Grid */
#myGrid {
width: 100%;
height: 98%;
}
/* for the Sankey diagram */
.link {
fill: none;
stroke: white;
stroke-opacity: .2;
}
.link:hover {
stroke-opacity: .5;
}
dialog {
height: calc(100% - 100px);
width: calc(100% - 100px);
text-align: center;
background-color: #181d1f;
border: none;
border-radius: 5px;
box-shadow: 0px 0px 10px white;
}
dialog #close-viewer {
position: absolute;
right: 0;
top: 0;
}
dialog button {
background: none;
color: inherit;
border: none;
margin: 2pt;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
border-radius: 50%;
}
dialog button:hover {
background-color: grey;
}
/* thanks Jason Ashdown https://codepen.io/jsonUK/pen/RqgeGp */
.bg-close {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40px' height='40px' viewbox='0 0 40 40'%3E%3Cpath d='M 10,10 L 30,30 M 30,10 L 10,30' stroke='white' stroke-width='4' stroke-linecap='butt' /%3E%3C/svg%3E");
background-size: 100%;
}
dialog label {
color: white;
}
dialog model-viewer{
height: calc(100% - 30px);
width: 100%;
background-color: #181d1f;
}
</style>
</head>
<body>
<dialog>
<button autofocus id="close-viewer"><div class="bg-close" style="width: 2em; height: 2em;"></div></button>
</dialog>
<details>
<summary>Sankey diagram (our method)</summary>
<div id="sankey"></div>
</details>
<div id="myGrid" class="ag-theme-alpine-dark"></div>
<script src="js/ag-grid-community.min.js"></script>
<script src="js/d3.v4.min.js"></script>
<script src="js/sankey.js"></script>
<script type="importmap">
{
"imports": {
"three": "./js/three.module.min.js"
}
}
</script>
<script type="module" src="/js/model-viewer-module.min.js"></script>
<script type="module" src="/js/model-viewer-effects.min.js"></script>
<script>
// open/close 3D model viewer
const dialog = document.querySelector("dialog");
// The "Close" button closes the dialog
const closeButton = document.querySelector("dialog #close-viewer");
closeButton.addEventListener("click", () => {
dialog.close();
dialog.removeChild(document.querySelector("dialog model-viewer"));
dialog.removeChild(document.querySelector("dialog .ssao-label"));
dialog.removeChild(document.querySelector("dialog .slider-label"));
dialog.removeChild(document.querySelector("dialog .ssao"));
dialog.removeChild(document.querySelector("dialog .slider-animation"));
});
// fill the dialog with a <model-viewer>
function make_dialog(filename) {
SSAO_initially_activated = filename.includes('labeling'); // boolean. SSAO on by default for labeling, not for hex-meshes
// create a checkbox and an associated label
let ssaoLabel = dialog.appendChild(document.createElement("label"));
ssaoLabel.setAttribute("for","ssao");
ssaoLabel.setAttribute("class","ssao-label");
ssaoLabel.innerText = "SSAO";
let ssaoCheckbox = dialog.appendChild(document.createElement("input"));
ssaoCheckbox.setAttribute("type","checkbox");
ssaoCheckbox.setAttribute("id","ssao");
ssaoCheckbox.setAttribute("class","ssao");
if(SSAO_initially_activated) {
ssaoCheckbox.setAttribute("checked","1");
}
// create a slider
let sliderLabel = dialog.appendChild(document.createElement("label"));
sliderLabel.setAttribute("for","ssao");
sliderLabel.setAttribute("class","slider-label");
sliderLabel.innerText = "animation polycube";
let slider = dialog.appendChild(document.createElement("input"));
slider.setAttribute("type","range");
slider.setAttribute("min","5");
slider.setAttribute("max","10");
slider.setAttribute("step","0.1");
slider.setAttribute("value","5");
slider.setAttribute("id","slider-animation");
slider.setAttribute("class","slider-animation");
// create a <model-viewer>
let model_viewer = dialog.appendChild(document.createElement("model-viewer"));
model_viewer.setAttribute("alt","labeling 3D viewer");
model_viewer.setAttribute("src", "glb/" + filename);
model_viewer.setAttribute("shadow-intensity", "0"); // no shadow
model_viewer.setAttribute("exposure","1");
model_viewer.setAttribute("tone-mapping","neutral");
model_viewer.setAttribute("camera-controls",true);
model_viewer.setAttribute("touch-action","pan-y");
model_viewer.setAttribute("animation-name","polycube");
let effect_composer = model_viewer.appendChild(document.createElement("effect-composer"));
let ssao_effect = effect_composer.appendChild(document.createElement("ssao-effect"));
if(SSAO_initially_activated) {
ssao_effect.setAttribute("blend-mode","default");
}
else {
ssao_effect.setAttribute("blend-mode","skip");
}
// toggle SSAO with the dedicated checkbox
ssaoCheckbox.addEventListener('change', (e) => ssao_effect.blendMode = e.target.checked ? 'default' : 'skip');
// control polycube animation with the slider
slider.addEventListener("input", () => {
const progress = slider.value;
model_viewer.currentTime = progress; // Set current time based on slider
});
model_viewer.addEventListener("frameupdate", () => {
slider.value = progress;
});
dialog.showModal();
}
class openLabelingViewerButton {
eGui;
eButton;
init(params) {
this.eGui = document.createElement('div');
this.eGui.classList.add('custom-element');
if(params.data.glb_labeling != null) {
if(params.data.glb_labeling == '-') {
this.eGui.innerHTML = '-' // indicate a intentionally missing 3D labeling view (used for graph-cuts outputs)
}
else {
this.eGui.innerHTML = `
<button class="open-viewer" onclick="make_dialog('${params.data.glb_labeling}')">Open</button>
`;
}
}
}
getGui() {
return this.eGui;
}
refresh(params) {
return false;
}
}
class openHexMeshViewerButton {
eGui;
eButton;
init(params) {
this.eGui = document.createElement('div');
this.eGui.classList.add('custom-element');
if(params.data.glb_hexmesh != null) {
this.eGui.innerHTML = `
<button class="open-viewer" onclick="make_dialog('${params.data.glb_hexmesh}')">Open</button>
`;
}
}
getGui() {
return this.eGui;
}
refresh(params) {
return false;
}
}
// Grid API: Access to Grid API methods
let gridApi;
// Grid Options: Contains all of the grid configurations
const gridOptions = {
// Row Data: The data to be displayed.
rowData: $AG_Grid_rowData,
// Column Definitions: Defines & controls grid columns.
columnDefs: [
{ field: "CAD_name", headerName: "CAD model", cellDataType: 'text', filter: true, pinned: 'left' },
{ field: "method", headerName: "method", cellDataType: 'text', filter: true, pinned: 'left' },
{
headerName: 'surface mesh',
children: [
{ field: "nb_vertices", headerName: "#vertices", cellDataType: 'number', filter: true },
{ field: "nb_facets", headerName: "#facets", cellDataType: 'number', filter: true },
{ field: "area_sd", headerName: "sd(area)", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) },
]
},
{
headerName: 'labeling',
children: [
{ field: "nb_charts", headerName: "#charts", cellDataType: 'number', filter: true },
{ field: "nb_boundaries", headerName: "#boundaries", cellDataType: 'number', filter: true },
{ field: "nb_corners", headerName: "#corners", cellDataType: 'number', filter: true },
{ field: "nb_invalid_charts", headerName: "#invalid-charts", cellDataType: 'number', filter: true },
{ field: "nb_invalid_boundaries", headerName: "#invalid-boundaries", cellDataType: 'number', filter: true },
{ field: "nb_invalid_corners", headerName: "#invalid-corners", cellDataType: 'number', filter: true },
{ field: "min_fidelity", headerName: "min(fidelity)", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) },
{ field: "avg_fidelity", headerName: "avg(fidelity)", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) },
{ field: "valid", headerName: "valid", cellDataType: 'boolean', filter: true },
{ field: "nb_turning_points", headerName: "#turning-points", cellDataType: 'number', filter: true },
{ field: "similarity", headerName: "similarity", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(2) + ' %'},
{ field: "duration", headerName: "duration", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) + ' s' },
{ field: "relative_duration", headerName: "relative duration", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : '×' + p.value + ' ours' },
{ field: "glb_labeling", headerName: "open", cellRenderer: openLabelingViewerButton },
]
},
{
headerName: 'feature edges',
children: [
{ field: "percentage_removed", headerName: "ignored", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(2) + ' %' },
{ field: "percentage_lost", headerName: "sharp & lost", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(2) + ' %' },
{ field: "percentage_preserved", headerName: "sharp & preserved", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(2) + ' %' },
]
},
{
headerName: 'hex-mesh',
children: [
{ field: "minSJ", headerName: "min(SJ)", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) },
{ field: "avgSJ", headerName: "avg(SJ)", cellDataType: 'number', filter: true, valueFormatter: p => p.value == null ? null : p.value.toFixed(3) },
{ field: "glb_hexmesh", headerName: "open", cellRenderer: openHexMeshViewerButton },
]
},
],
autoSizeStrategy: {
type: "fitCellContents"
}
};
// Create Grid: Create new grid within the #myGrid div, using the Grid Options object
gridApi = agGrid.createGrid(document.querySelector('#myGrid'), gridOptions);
///////// Sankey diagram /////////////////////////////////
// set the dimensions and margins of the graph
var margin = {top: 10, right: 200, bottom: 50, left: 200};
width = window.screen.width - margin.left - margin.right,
height = 800 - margin.top - margin.bottom;
// append the svg object to the body of the page
var svg = d3.select("#sankey").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");
// Color scale used
var color = d3.scaleOrdinal(d3.schemeCategory20);
// Set the sankey diagram properties
var sankey = d3.sankey()
.nodeWidth(36)
.nodePadding(50)
.size([width, height]);
graph = $Sankey_diagram_data
// Constructs a new Sankey generator with the default settings.
sankey
.nodes(graph.nodes)
.links(graph.links)
.layout(1);
// add in the links
var link = svg.append("g")
.selectAll(".link")
.data(graph.links)
.enter()
.append("path")
.attr("class", "link")
.attr("d", sankey.link() )
.style("stroke-width", function(d) { return Math.max(1, d.dy); })
.sort(function(a, b) { return b.dy - a.dy; });
// add in the nodes
var node = svg.append("g")
.selectAll(".node")
.data(graph.nodes)
.enter().append("g")
.attr("class", "node")
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; })
.call(d3.drag()
.subject(function(d) { return d; })
.on("start", function() { this.parentNode.appendChild(this); })
.on("drag", dragmove));
// add the rectangles for the nodes
node
.append("rect")
.attr("height", function(d) { return d.dy; })
.attr("width", sankey.nodeWidth())
.style("fill", function(d) { return d.color = color(d.name.replace(/ .*/, "")); })
.style("stroke", function(d) { return d3.rgb(d.color).darker(2); })
// Add hover text
.append("title")
.text(function(d) { return d.name + "\n" + "There is " + d.value + " items in this node"; });
// add in the title for the nodes
node
.append("text")
.style("fill", "white")
.attr("x", -6)
.attr("y", function(d) { return d.dy / 2; })
.attr("dy", ".35em")
.attr("text-anchor", "end")
.attr("transform", null)
.text(function(d) { return d.name; })
.filter(function(d) { return d.x < width / 2; })
.attr("x", 6 + sankey.nodeWidth())
.attr("text-anchor", "start");
// the function for moving the nodes
function dragmove(d) {
d3.select(this)
.attr("transform",
"translate("
+ d.x + ","
+ (d.y = Math.max(
0, Math.min(height - d.dy, d3.event.y))
) + ")");
sankey.relayout();
link.attr("d", sankey.link() );
}
SankeyChart({nodes,links})
</script>
</body>
</html>