-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
83 lines (72 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Object Detection Visualization</title>
<link rel="icon" href="images/icon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<style>
.list {
position: absolute;
left: 70%;
top: 145px
}
button {
display: block;
margin: 5px;
}
.inline {
display: inline-block;
}
</style>
</head>
<body>
<div class="topnav box-nav">
<h4><a href="index.html">Object Detection Visualization</a></h4>
<a id="right-btn" href="label.html" >Misclassification Correction</a>
<a href="objects.html">Detection Distribution</a>
<a href="overview.html">Overview</a>
</div>
<!--<iframe style="margin-top: 50px; margin-left: 5%; text-align: center" width="1000" height="600"-->
<!-- src="VAST2020mc2Video.mp4">-->
<!--</iframe>-->
<iframe style="margin-top: 50px; margin-left: 5%; text-align: center" width="1000" height="600" src="https://www.youtube.com/embed/sOdgBeeapu8" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<div class="list">
<h3><b>Full report <a href="TTU-Nguyen-MC2/index.htm">here <i class="fa fa-external-link" aria-hidden="true"></i></a></b></h3>
<h3><b>Demonstrations:</b></h3>
<a href="objects.html" target="_blank">
<button class="btn btn-outline-secondary">Object Classifier Examination - Question
1 <i class="fa fa-external-link" aria-hidden="true"></i>
</button>
</a><br>
<a href="label.html" target="_blank">
<button class="btn btn-outline-secondary">Labels Correction - Question
2 <i class="fa fa-external-link" aria-hidden="true"></i>
</button>
</a><br>
<a href="matrix.html"
target="_blank">
<button class="btn btn-outline-secondary">Matrix - Question 3, 4 <i class="fa fa-external-link"
aria-hidden="true"></i>
</button>
</a><br>
<span style="padding-left: 5px">Graphs:</span> <a href="graphOriginal.html" target="_blank">
<button class="inline btn btn-outline-secondary">Original <i class="fa fa-external-link" aria-hidden="true"></i></button>
</a> <a
href="graphCorrected.html" target="_blank">
<button
class="inline btn btn-outline-secondary">Corrected <i class="fa fa-external-link" aria-hidden="true"></i>
</button>
</a> <a
href="graphCorrectedObjs.html" target="_blank">
<button class="inline btn btn-outline-secondary"
style="margin-left: 70px">Corrected without
Image
Nodes <i class="fa fa-external-link" aria-hidden="true"></i>
</button>
</a>
</div>
</body>
</html>