-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
475 lines (417 loc) · 18 KB
/
index.html
File metadata and controls
475 lines (417 loc) · 18 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
467
468
469
470
471
472
473
474
475
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VINGS-MONO Project</title>
<style>
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: 'Book Antiqua';
src: url('./fonts/BookAntiqua-Regular.ttf') format('truetype');
}
html {
font-size: 16px;
}
body {
font-family: 'Book Antiqua', serif;
background-color: #000000;
color: #ffffff;
line-height: 1.6;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* Header Styles */
.site-header {
padding: 2rem 1rem;
text-align: center;
background-color: #000000;
}
.site-logo {
width: min(80px, 15vw);
height: auto;
margin-bottom: 1rem;
}
.site-title {
font-size: clamp(1.75rem, 4vw, 2.5rem);
margin-bottom: 0.5rem;
font-weight: bold;
}
.site-subtitle {
font-size: clamp(1.25rem, 3vw, 2rem);
margin-bottom: 2rem;
font-weight: normal;
}
/* Navigation Links */
.header-links {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: min(3rem, 5vw);
margin-bottom: 2rem;
padding: 0 1rem;
}
.header-link {
display: flex;
align-items: center;
gap: 0.5rem;
color: white;
text-decoration: none;
font-size: clamp(0.875rem, 2vw, 1rem);
}
.link-icon {
font-size: 1.25em;
}
.coming-soon {
color: #666;
font-size: 0.85em;
}
/* Main Navigation */
.main-nav {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
background-color: #1a1a1a;
border-block: 1px solid #333;
width: 100%;
}
.main-nav-button {
padding: 1rem;
color: white;
background: none;
border: none;
cursor: pointer;
font-size: clamp(0.875rem, 2vw, 1rem);
font-family: inherit;
transition: background-color 0.3s;
}
.main-nav-button:hover,
.main-nav-button.active {
background-color: #333;
}
/* Sub Navigation */
.sub-nav {
display: none;
padding: 1rem;
background-color: #1a1a1a;
border-bottom: 1px solid #333;
}
.sub-nav.active {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.sub-nav-button {
padding: 0.5rem 1.5rem;
color: white;
background: none;
border: 1px solid white;
border-radius: 4px;
cursor: pointer;
font-size: clamp(0.875rem, 2vw, 1rem);
font-family: inherit;
transition: all 0.3s;
white-space: nowrap;
}
.sub-nav-button:hover,
.sub-nav-button.active {
background-color: #333;
}
/* Main Content */
.main-content {
flex: 1;
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 2rem 1rem;
}
/* Video Sections */
.video-section {
display: none;
}
.video-section.active {
display: block;
}
.video-container {
display: none;
max-width: 800px;
margin: 0 auto;
}
.video-container.active {
display: block;
}
/* Overview Content */
.overview-content {
max-width: 800px;
margin: 0 auto;
padding: 1rem;
}
.overview-text {
font-size: clamp(1rem, 2.5vw, 1.2rem);
line-height: 1.8;
margin-bottom: 2rem;
text-align: justify;
}
.overview-image {
width: 100%;
height: auto;
border-radius: 8px;
margin-top: 2rem;
}
/* Video Element */
video {
width: 100%;
height: auto;
border-radius: 8px;
background-color: #000;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
.site-header {
padding: 1rem;
}
.main-content {
padding: 1rem 0.5rem;
}
.overview-content {
padding: 0.5rem;
}
.sub-nav-button {
padding: 0.5rem 1rem;
flex: 1 1 calc(50% - 1rem);
text-align: center;
}
}
@media (max-width: 480px) {
.header-links {
gap: 1rem;
}
.sub-nav-button {
flex: 1 1 100%;
}
.main-nav {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header class="site-header">
<img src="images/logo.png" alt="VINGS-MONO Logo" style="max-width: 70%; height: auto;">
<!--<h1 class="site-title">Visual-Inertial Gaussian Splatting</h1>
<h2 class="site-subtitle">Monocular SLAM in Large Scenes</h2>-->
<div class="header-links">
<a href="https://arxiv.org/abs/2501.08286v1" class="header-link">
<span class="link-icon">📄</span>
<span>Paper</span>
<span>Arxiv</span>
</a>
<a href="https://github.com/Fudan-MAGIC-Lab/VINGS-Mono" class="header-link">
<span class="link-icon">💻</span>
<span>Code</span>
<span>Github</span>
</a>
<a href="https://www.youtube.com/watch?v=vniTZcNj_tA&t=163s" class="header-link">
<span class="link-icon">🎥</span>
<span>Video</span>
</a>
</div>
</header>
<nav class="main-nav">
<button class="main-nav-button active">Introduction</button>
<button class="main-nav-button">VO Results</button>
<button class="main-nav-button">VIO Results</button>
<button class="main-nav-button">⭐RealWorld&MobileApp</button>
</nav>
<nav id="introNav" class="sub-nav active">
<button class="sub-nav-button active" data-video="pipeline">Pipeline</button>
<button class="sub-nav-button" data-video="nvs-loop">NVS Loop Closure</button>
</nav>
<nav id="voNav" class="sub-nav">
<button class="sub-nav-button" data-video="indoor">Indoor</button>
<button class="sub-nav-button" data-video="drone">Drone</button>
<button class="sub-nav-button" data-video="waymo">Waymo</button>
<button class="sub-nav-button" data-video="smallcity">SmallCity</button>
</nav>
<nav id="vioNav" class="sub-nav">
<button class="sub-nav-button" data-video="kitti">KITTI</button>
<button class="sub-nav-button" data-video="kitti360">KITTI360</button>
</nav>
<nav id="realworldNav" class="sub-nav">
<button class="sub-nav-button" data-video="app-indoor">App Indoor</button>
<button class="sub-nav-button" data-video="app-outdoor">App Outdoor</button>
<button class="sub-nav-button" data-video="large-campus">Large Campus</button>
</nav>
<main class="main-content">
<section id="introVideos" class="video-section active">
<div id="pipeline" class="video-container active">
<div class="overview-content">
<p class="overview-text">
Visual-Inertial Gaussian Splatting (VINGS-MONO) is a novel approach to monocular SLAM that combines the power of Gaussian Splatting with visual-inertial odometry. Our system achieves state-of-the-art performance in both indoor and outdoor environments, with particular strength in handling large-scale scenes.
</p>
<img src="images/pipeline.png" alt="VINGS-MONO System Overview" class="overview-image">
</div>
</div>
<div id="nvs-loop" class="video-container">
<p class="overview-text">
We propose a novel Gaussian Splatting based loop detection and correction method. Instead of using the Bag of Words (BoW) approach for loop detection, we leverage the novel view synthesis capabilities of gaussian
splatting from new viewpoints to determine if a loop has been detected. Following this, we use graph optimization to correct poses and use gaussians' frame index to correct the 2D Gaussian Map.
</p>
<img src="images/loopclosure.png" alt="loopclosure" style="max-width: 100%; height: auto;">
<video autoplay loop muted playsinline disablePictureInPicture controlsList="nodownload noplaybackrate">
<source src="videos/nvs-loop.mp4" type="video/mp4">
</video>
</div>
</section>
<section id="voVideos" class="video-section">
<div id="indoor" class="video-container">
<p class="overview-text">
Our method does not require depth priors and reconstructs maps with higher visual fidelity and fewer artifacts within a few minutes of training for an indoor scene. It preserves fine textures and effectively captures structural details.
</p>
<video autoplay loop muted playsinline>
<source src="videos/indoor.mp4" type="video/mp4">
</video>
</div>
<div id="drone" class="video-container">
<p class="overview-text">
Our method demonstrates unparalleled robustness in outdoor mapping, achieving precise geometric estimation and reconstruction even in sparse and complex structures.
</p>
<video autoplay loop muted playsinline>
<source src="videos/drone.mp4" type="video/mp4">
</video>
</div>
<div id="waymo" class="video-container">
<p class="overview-text">
Compared to indoor environments, outdoor scenes pose greater challenges due to significantly longer trajectory lengths (ranging from hundreds to thousands of meters) and larger frame intervals. These factors heavily impact the rendering quality and map storage requirements of baseline methods.
</p>
<video autoplay loop muted playsinline>
<source src="videos/waymo.mp4" type="video/mp4">
</video>
</div>
<div id="smallcity" class="video-container">
<p class="overview-text">
On handheld datasets such as Hierarchical, characterized by random motion trajectories and limited capture ranges, our method achieves high-precision modeling of building edges and surface details.
</p>
<video autoplay loop muted playsinline>
<source src="videos/smallcity.mp4" type="video/mp4">
</video>
</div>
</section>
<section id="vioVideos" class="video-section">
<div id="kitti" class="video-container">
<p class="overview-text">
For the online reconstruction demonstration of large outdoor scenes, we selected KITTI odom08, which has a trajectory length of 3.7 km. The complete Gaussian map consists of 32million Gaussian ellipsoids.
</p>
<video autoplay loop muted playsinline>
<source src="videos/kitti.mp4" type="video/mp4">
</video>
</div>
<div id="kitti360" class="video-container">
<p class="overview-text">
The trajectory length of KITTI360's scene is 8.05 km, and the entire Gaussian map contains 51.73 million ellipsoids. We recorded the number of Gaussians throughout the training process and zoomed in on different parts of the map for clearer visualization.
</p>
<video autoplay loop muted playsinline>
<source src="videos/kitti360.mp4" type="video/mp4">
</video>
</div>
</section>
<section id="realworldVideos" class="video-section">
<div id="app-indoor" class="video-container">
<p class="overview-text">
We ran VINGS-Mono in a mobile phone setup. We developed an app using the Flutter framework, which can be deployed on iOS, Android, and Windows platforms.
</p>
<video autoplay loop muted playsinline>
<source src="videos/app-indoor.mp4" type="video/mp4">
</video>
</div>
<div id="app-outdoor" class="video-container">
<p class="overview-text">
Additionally, in outdoor scenes under low-light conditions, our method achieves high-quality reconstruction of highly exposed areas, such as illuminated signboards.
</p>
<video autoplay loop muted playsinline>
<source src="videos/app-outdoor.mp4" type="video/mp4">
</video>
</div>
<div id="large-campus" class="video-container">
<p class="overview-text">
To further test the stability and robustness of our method, we collected a large outdoor dataset. This dataset covers the entire Campus and was recorded using an iPhone device. It spans approximately 1.02 km in length and 0.4 km in width.
</p>
<video autoplay loop muted playsinline>
<source src="videos/large-campus.mp4" type="video/mp4">
</video>
</div>
</section>
</main>
<script>
// 导航映射配置
const navigationMap = {
'Introduction': { nav: 'introNav', videos: 'introVideos' },
'VO Results': { nav: 'voNav', videos: 'voVideos' },
'VIO Results': { nav: 'vioNav', videos: 'vioVideos' },
'⭐RealWorld&MobileApp': { nav: 'realworldNav', videos: 'realworldVideos' }
};
// 主导航点击处理
document.querySelectorAll('.main-nav-button').forEach(button => {
button.addEventListener('click', () => {
// 移除所有活动状态
document.querySelectorAll('.main-nav-button').forEach(b => b.classList.remove('active'));
document.querySelectorAll('.sub-nav').forEach(nav => nav.classList.remove('active'));
document.querySelectorAll('.video-section').forEach(section => section.classList.remove('active'));
// 设置当前按钮为活动状态
button.classList.add('active');
// 激活对应的子导航和视频区域
const mapping = navigationMap[button.textContent];
if (mapping) {
const subNav = document.getElementById(mapping.nav);
const videoSection = document.getElementById(mapping.videos);
subNav.classList.add('active');
videoSection.classList.add('active');
// 激活第一个子菜单项及其视频
const firstSubItem = subNav.querySelector('.sub-nav-button');
if (firstSubItem) {
document.querySelectorAll('.sub-nav-button').forEach(item => item.classList.remove('active'));
firstSubItem.classList.add('active');
const videoId = firstSubItem.dataset.video;
document.querySelectorAll('.video-container').forEach(container => container.classList.remove('active'));
document.getElementById(videoId).classList.add('active');
}
}
});
});
// 子导航点击处理
document.querySelectorAll('.sub-nav-button').forEach(button => {
button.addEventListener('click', () => {
// 移除当前子导航中所有按钮的活动状态
const currentSubNav = button.closest('.sub-nav');
currentSubNav.querySelectorAll('.sub-nav-button').forEach(b => b.classList.remove('active'));
// 设置当前按钮为活动状态
button.classList.add('active');
// 切换视频显示
const videoId = button.dataset.video;
document.querySelectorAll('.video-container').forEach(container => container.classList.remove('active'));
document.getElementById(videoId).classList.add('active');
});
});
</script>
</body>
<!-- BibTeX Section -->
<!-- <div style="background:#111; color:#fff; text-align:center; padding:2rem; border-top:1px solid #333;">
<h3 style="margin-bottom:1rem; font-size:1.2rem;">BibTeX</h3>
<div style="max-width:90%; margin:0 auto; overflow-x:auto;">
<pre style="background:#000; padding:1rem; border-radius:8px; font-family:monospace; font-size:0.85rem; text-align:left; white-space:pre; word-wrap:normal; overflow-x:auto;">
@article{wu2025vings,
title={Vings-mono: Visual-inertial gaussian splatting monocular slam in large scenes},
author={Wu, Ke and Zhang, Zicheng and Tie, Muer and Ai, Ziqing and Gan, Zhongxue and Ding, Wenchao},
journal={arXiv preprint arXiv:2501.08286},
year={2025}
}
</pre>
</div>
</div> -->
</html>