-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
466 lines (417 loc) · 17.5 KB
/
index.html
File metadata and controls
466 lines (417 loc) · 17.5 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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>ADV 2025 - Workshop on Drone Vision</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<style>
:root {
--bg-color: #f5f7fa;
--text-color: #1e1e2f;
--accent-color: #1976d2;
--header-bg: linear-gradient(120deg, #0d47a1, #1976d2);
}
body.dark-mode {
--bg-color: #1c1c2b;
--text-color: #f0f0f0;
--header-bg: linear-gradient(120deg, #212121, #424242);
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
transition: background 0.3s, color 0.3s;
}
header {
background: var(--header-bg);
color: white;
padding: 4rem 2rem 3rem;
text-align: center;
}
header h1 {
font-size: 2.8rem;
font-weight: 800;
}
.navbar-custom {
background-color: #0d47a1; /* Green background */
}
.navbar-custom .navbar-nav .nav-link {
color: white; /* White text for links */
}
.navbar-custom .navbar-nav .nav-link:hover {
color: #ff9800; /* Orange on hover */
}
h2.section-title {
border-left: 5px solid var(--accent-color);
padding-left: 0.75rem;
margin-top: 2rem;
color: var(--accent-color);
}
.card {
border-radius: 0.75rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
transition: transform 0.2s ease;
background-color: white;
}
#committee .card {
height: 100%;
display: flex;
flex-direction: column;
}
body.dark-mode .card {
background-color: #2c2c3c;
color: white;
}
.card:hover {
transform: translateY(-4px);
}
footer {
background-color: #0d47a1;
color: white;
padding: 1rem;
text-align: center;
}
.btn-primary {
background-color: var(--accent-color);
border: none;
}
.theme-toggle {
cursor: pointer;
background: none;
border: none;
color: white;
font-size: 1.2rem;
margin-left: 1rem;
}
.drone-hover-container {
overflow: hidden;
}
.drone-hover-container img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
border-radius: 0.75rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark navbar-custom sticky-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">ADV 2025</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#topics">Topics</a></li>
<li class="nav-item"><a class="nav-link" href="#program">Program</a></li>
<li class="nav-item"><a class="nav-link" href="#call">Call</a></li>
<li class="nav-item"><a class="nav-link" href="#organizers">Organizers</a></li>
<li class="nav-item"><a class="nav-link" href="#speaker">Speakers</a></li>
<li class="nav-item"><a class="nav-link" href="#committee">Committee</a></li>
</ul>
</div>
</div>
</nav>
<!-- Header -->
<header>
<h1>ADV 2025 - International Workshop on Advances in Drone Vision</h1>
<p>In conjunction with <a href="https://sites.google.com/view/iciap25" style="color: white">ICIAP 2025</a>, Rome (Italy) | September 15, 2025</p>
</header>
<main class="container py-4">
<section id="about" class="container py-5">
<div class="row align-items-center">
<!-- Testo a sinistra -->
<div class="col-md-6">
<h2 class="section-title">About the Workshop</h2>
<p>
The International Workshop on Advances in Drone Vision (ADV 2025) aims to bring together experts from academia and industry to explore the latest research in drone-based computer vision technologies. Drones are now vital across numerous sectors, including agriculture, logistics, infrastructure monitoring, disaster response, and environmental surveillance.
</p>
<p>
As drone autonomy evolves, computer vision is becoming the essential intelligence behind their capabilities. From object detection and scene understanding to real-time edge computing, this workshop focuses on making aerial robotics smarter, faster, and more reliable. ADV 2025 will showcase vision algorithms for onboard processing, anomaly detection, aerial image segmentation, and much more.
</p>
<p>
Our goal is to foster interdisciplinary collaboration, discuss novel methodologies, and highlight the critical role of vision in next-gen aerial systems.
</p>
</div>
<!-- Immagine a destra -->
<div class="col-md-6 text-center">
<div class="drone-hover-container position-relative mx-auto" style="max-width: 500px; aspect-ratio: 4 / 3;">
<img src="assets/images/drone1.jpeg" class="img-fluid rounded shadow position-relative z-1" alt="Drone 1">
<img id="drone2" src="assets/images/drone2.jpg" class="img-fluid rounded shadow position-absolute top-0 start-0 z-2" alt="Drone 2" style="clip-path: inset(0 100% 0 0); transition: clip-path 0.1s ease;"
>
</div>
</div>
</section>
<!-- Decorative Rome Images Section -->
<section class="container py-5">
<div class="row justify-content-center">
<div class="col-12 col-md-10 position-relative">
<!-- Main background image -->
<img src="assets/images/roma_colosseo.jpg" alt="Colosseum" class="img-fluid rounded shadow w-100" style="max-width: 600px;">
<!-- Overlapping image -->
<img src="assets/images/roma_trevi.jpg" alt="Trevi Fountain"
class="img-fluid rounded shadow position-absolute d-none d-md-block"
style="width: 60%; max-width: 350px; top: 20%; left: 55%; z-index: 2;">
</div>
</div>
</section>
<section id="topics">
<h2 class="section-title">Topics of Interest</h2>
<p>
We welcome submissions on a broad range of topics related to computer vision for drones, including but not limited to:
</p>
<ul>
<li>Object detection, tracking, and recognition from aerial imagery</li>
<li>Semantic and instance segmentation for aerial vision</li>
<li>Scene understanding and 3D reconstruction from drone-captured data</li>
<li>Multimodal fusion for aerial perception</li>
<li>Event-based vision for high-speed drone applications</li>
<li>Real-time localization, mapping, and environment representation</li>
<li>Vision-based trajectory planning and obstacle avoidance</li>
<li>Energy-efficient perception for extended drone operations</li>
<li>Swarm intelligence and collaborative drone vision</li>
<li>AI-driven applications for disaster response and environmental monitoring</li>
<li>Drone vision for smart cities and infrastructure assessment</li>
<li>Assistive drones for healthcare and search-and-rescue missions</li>
<li>Edge AI and real-time onboard processing for drones</li>
<li>Lightweight deep learning models for resource-constrained UAVs</li>
<li>Secure and privacy-preserving drone vision systems</li>
<li>Drone vision in precision agriculture and environmental sustainability</li>
<li>Surveillance and security applications leveraging aerial vision</li>
<li>Autonomous inspection of industrial and energy infrastructure</li>
<li>AI-powered delivery and logistics with drone-based perception</li>
</ul>
</section>
<section id="program">
<h2 class="section-title">Program</h2>
<p>
The workshop will be held on September 15, in the morning session, as per the main conference program.
</p>
<ul class="list-unstyled">
<li class="mb-3">
<strong>09:00 – 09:15</strong><br>
<span class="text-muted">Opening Welcome</span>
</li>
<li class="mb-3">
<strong>09:15 – 10:00</strong><br>
<span class="text-muted">Invited Talk</span>
</li>
<li class="mb-3">
<strong>10:00 – 11:00</strong><br>
<span class="fw-bold">Talks</span>
<ul class="mt-2">
<li>
<em>"Application of Object-Based Image Analysis to drone data for the monitoring of methane emissions in landfills"</em><br>
<span class="text-muted">Maurizio De Molfetta, Giovanni Dimauro, Donatello Fosco, Bruno Notarnicola and Pietro Renzulli</span>
</li>
<li class="mt-2">
<em>"ConvNeXt based architecture for Crowd Counting in Highly Crowd Environments"</em><br>
<span class="text-muted">Alessia Saggese, Mario Vento and Gennaro Percannella</span>
</li>
<li class="mt-2">
<em>"UKANWeed: An application of Kolmogorov-Arnold Networks to Weed Mapping"</em><br>
<span class="text-muted">Pasquale De Marinis, Elena Tavoletti, Gennaro Vessio and Giovanna Castellano</span>
</li>
<li class="mt-2">
<em>"A Weakly-Supervised Learning Approach for RGB Crop Detection Using UAV Imagery"</em><br>
<span class="text-muted">Pasquale De Marinis, Federico Canistro, Gennaro Vessio and Giovanna Castellano</span>
</li>
</ul>
</li>
</ul>
</section>
<section id="call">
<h2 class="section-title">Call for Papers</h2>
<p>
All submissions must be made electronically via EasyChair.
</p>
<p>
Authors are required to prepare their papers following the Springer guidelines. The manuscript must not exceed 12 pages, including references. Submissions will undergo a double-blind peer review process and will be evaluated based on originality, significance, clarity, soundness, relevance, and technical quality.
</p>
<p>
Upon acceptance, at least one author must register for the event, attend the workshop, and present the paper orally. All accepted papers will be published in the Workshop Proceedings of ICIAP 2025 as part of the Lecture Notes in Computer Science (LNCS) series by Springer.
</p>
<p>
<strong>Deadline:</strong> June 20, 2025<br>
<strong>Notification:</strong> July 4, 2025<br>
<strong>Camera-ready:</strong> July 10, 2025
</p>
<a href="https://easychair.org/conferences/?conf=adv2025" class="btn btn-primary mt-2">Submit Your Paper</a>
</section>
<!-- <section>
<h2 class="section-title">Workshop Highlights</h2>
<div class="row">
<div class="col-md-6">
<ul>
<li>Hands-on sessions with drone footage</li>
<li>Live demos of edge computing in drones</li>
<li>Panel discussion with industry experts</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Case study: Roadside assistance with drones</li>
<li>Networking opportunities with top researchers</li>
<li>Spotlight presentations for accepted papers</li>
</ul>
</div>
</div>
</section> -->
<section id="organizers">
<h2 class="section-title">Organizers</h2>
<div class="row g-4">
<div class="col-md-6 col-lg-3">
<div class="card p-3">
<a href="https://gennarovessio.com" target="_blank">
<img src="assets/images/org_rino.jpg" class="card-img-top" alt="Gennaro Vessio" style="height: 200px; object-fit: scale-down;">
</a>
<div class="card-body">
<strong>Gennaro Vessio</strong><br>University of Bari Aldo Moro<br>
<a href="mailto:gennaro.vessio@uniba.it">gennaro.vessio@uniba.it</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="card p-3">
<a href="https://sites.google.com/site/cilabuniba/people/giovanna-castellano" target="_blank">
<img src="assets/images/org_giovanna.jpg" class="card-img-top" alt="Giovanna Castellano" style="height: 200px; object-fit: cover;">
</a>
<div class="card-body">
<strong>Giovanna Castellano</strong><br>University of Bari Aldo Moro<br>
<a href="mailto:giovanna.castellano@uniba.it">giovanna.castellano@uniba.it</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="card p-3">
<a href="https://pasqualedem.github.io" target="_blank">
<img src="assets/images/org_pasquale.jpeg" class="card-img-top" alt="Pasquale De Marinis" style="height: 200px; object-fit: cover;">
</a>
<div class="card-body">
<strong>Pasquale De Marinis</strong><br>University of Bari Aldo Moro<br>
<a href="mailto:pasquale.demarinis@uniba.it">pasquale.demarinis@uniba.it</a>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="card p-3">
<a href="https://docenti.unisa.it/005501/home" target="_blank">
<img src="assets/images/org_vento.png" class="card-img-top" alt="Mario Vento" style="height: 200px; object-fit: scale-down;">
</a>
<div class="card-body">
<strong>Mario Vento</strong><br>University of Salerno<br>
<a href="mailto:mvento@unisa.it">mvento@unisa.it</a>
</div>
</div>
</div>
</div>
</section>
<section id="speaker">
<h2 class="section-title">Invited Speaker</h2>
<p><strong>Nenci Palombo</strong> - Italian Ministry of Infrastructure and Transport</p>
</section>
<section id="committee">
<h2 class="section-title">Program Committee</h2>
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-4 g-4">
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Corrado Mencar</div>
<div class="affiliation text-muted">University of Bari Aldo Moro, Italy</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Ciro Castiello</div>
<div class="affiliation text-muted">University of Bari Aldo Moro, Italy</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Davide Moroni</div>
<div class="affiliation text-muted">National Research Council, Italy</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Vincenzo Polizzi</div>
<div class="affiliation text-muted">University of Toronto, Canada</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Alessia Saggese</div>
<div class="affiliation text-muted">University of Salerno, Italy</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Davide Boscaini</div>
<div class="affiliation text-muted">Fondazione Bruno Kessler, Italy</div>
</div>
</div>
</div>
<div class="col">
<div class="card p-3 h-100">
<div class="committee-member">
<div class="name fw-bold">Wencheng Zhu</div>
<div class="affiliation text-muted">Tianjin University, China</div>
</div>
</div>
</div>
</div>
</section>
</main>
<footer>
© 2025 ADV Workshop | Designed for ICIAP 2025 | Contact: gennaro.vessio@uniba.it
</footer>
<script>
function toggleDarkMode() {
document.body.classList.toggle('dark-mode');
}
</script>
<script>
const container = document.querySelector('.drone-hover-container');
const drone2 = document.getElementById('drone2');
let revealed = false; // tiene traccia se abbiamo raggiunto il limite
container.addEventListener('mousemove', (e) => {
const rect = container.getBoundingClientRect();
const x = e.clientX - rect.left;
const percent = (x / rect.width) * 100;
if (percent >= 95) {
revealed = true;
drone2.style.clipPath = 'inset(0 0% 0 0)';
} else {
revealed = false;
drone2.style.clipPath = `inset(0 ${100 - percent}% 0 0)`;
}
});
container.addEventListener('mouseleave', () => {
if (!revealed) {
drone2.style.clipPath = 'inset(0 100% 0 0)'; // torna a solo drone1
}
});
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>