-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdataset.html
More file actions
63 lines (53 loc) · 1.84 KB
/
dataset.html
File metadata and controls
63 lines (53 loc) · 1.84 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
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Shapes Dataset</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body onload="doLoad()">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 ">
<h1 class="text-center">
Shapes Dataset
</h1>
<h2 class="text-center text-muted" id="currentdisplay">
</h2>
</div>
</div>
<div class="row" id="main">
<div class="col-md-2" id="labelswrapper" data-container="body" data-toggle="popover" data-trigger="manual" data-placement="top" data-content="Click on a button to display the shapes of the corresponding class.">
<div class="btn-group-vertical" role="group" id="labelscontainer">
</div>
<div class="btn-group-vertical" role="group" id="labelscontainer2">
</div>
</div>
<div class="col-md-8" id="canvascontainer" data-container="body" data-toggle="popover" data-trigger="manual" data-dismiss="popover" data-placement="top" data-content="Click on one of these shapes to visualize the annotations gathered during the user study.">
</div>
<div class="col-md-2">
<div id="sidePanel">
<button type="button" class="btn btn-primary btn-lg" id='BackButton' >BACK</button>
<h3 class="text-left" id="majoritytitle">
Majority Vote
</h3>
<div id="majoritycanvascontainer">
</div>
<h3>
Spectral Clustering Modes
</h3>
<div id="spectralcanvascontainer">
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/dataset.js"></script>
<script src="js/graphics.js"></script>
</body>
</html>