-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathawards.html
119 lines (113 loc) · 4.6 KB
/
awards.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
<!doctype html>
<html>
<head>
<title>MMM2024</title>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/frame.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/controls.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/menu.js"></script>
<script src="js/footer.js"></script>
<style>
.menu-conference {
color: rgb(0, 0, 0) !important;
opacity: 1 !important;
font-weight: 700 !important;
}
</style>
</head>
<body>
<div class="menu-container"></div>
<div class="content-container">
<div class="banner" style="background: url('img/feature.jpeg') no-repeat center; background-size: cover; height: 450px;">
<div class="banner-table flex-column" style="background-color: rgba(0, 0, 0, 0.5);">
<div class="flex-row">
<div class="flex-item flex-column">
<h1 class="add-top-margin-small">Conference</h1>
</div>
</div>
</div>
</div>
<div class="banner" id="program">
<div class="banner-table flex-column">
<div class="flex-row">
<div class="flex-item flex-column">
<h2 class="add-top-margin-small">Awards</h2>
</div>
</div>
</div>
</div>
<div class="content">
<div class="content-table flex-column">
<div class="flex-row">
<div class="flex-item flex-column">
<h3 id="award-bestpaper">Best Paper</h3>
<hr>
<p class="text">
Lantao Wang and Chao Ma for the paper entitled Adapting Pretrained Large-Scale Vision Models for Face Forgery Detection.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/bestpaper.png">
</p>
<h3 id="award-bestdemonstration">Best Demonstration</h3>
<hr>
<p class="text">
Masatoshi Hamanaka for the demonstration entitled Implementation of Melody Slot Machines.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/bestdemo.png">
</p>
<h3 id="award-bestvbs">Best AVS/Experts, AVS/Novices, Visual KIS/Novices, QA/experts</h3>
<hr>
<p class="text">
VISIONE 5.0: Enhanced User Interface and AI models for VBS2024.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/bestvbs.png">
</p>
<h3 id="award-besttkis">Best Textual KIS/Experts</h3>
<hr>
<p class="text">
Optimizing the Interactive Video Retrieval Tool Vibro for the Video Browser Showdown 2024.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/besttkis.png">
</p>
<h3 id="award-bestvkis">Best Visual KIS/Experts</h3>
<hr>
<p class="text">
PraK Tool: An Interactive Search Tool Based on Video Data Services.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/bestvkis.png">
</p>
<h3 id="award-bestqan">Best QA/Novices</h3>
<hr>
<p class="text">
diveXplore at the Video Browser Showdown 2024.
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/bestqa.png">
</p>
<h3 id="award-community">MMM2024 Community leadership award</h3>
<hr>
<p class="text">
Awarded to Werner Bailer (Joanneum research).
</p>
<p class="text">
<img class="image" style="max-width:512px;" src="img/awards/community.png">
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-container"></div>
</body>
</html>