-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
979 lines (888 loc) · 38.3 KB
/
index.html
File metadata and controls
979 lines (888 loc) · 38.3 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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description"
content="FastGS: Training 3D Gaussian Splatting in 100 Seconds">
<meta name="keywords" content="FastGS">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FastGS</title>
<!-- <link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
rel="stylesheet"> -->
<link href="./static/css/googlefonts.css" rel="stylesheet">
<link rel="stylesheet" href="./static/css/bulma.min.css">
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
<link rel="stylesheet" href="./static/css/bulma-slider.min.css">
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<link rel="stylesheet" href="./static/css/index.css">
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<!-- Favicon: Lightning bolt for "fast" acceleration -->
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234D7CFE'><path d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/></svg>" type="image/svg+xml">
<script src="./static/js/jquery.min.js"></script>
<script defer src="./static/js/fontawesome.all.min.js"></script>
<script src="./static/js/bulma-carousel.min.js"></script>
<script src="./static/js/bulma-slider.min.js"></script>
<script src="./static/js/index.js"></script>
<script src="./static/js/video_comparison.js"></script>
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]},
});
</script>
</head>
<body>
<style>
.publication-title {
font-family: 'Poppins', 'Segoe UI', sans-serif;
text-align: center;
font-weight: 700;
letter-spacing: 1px;
font-size: 3rem;
background: linear-gradient(120deg, #6BCBFF, #4D7CFE, #9B5DE5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent; /* Chrome, Edge, Safari */
background-clip: text; /* Firefox */
color: #6BCBFF; /* fallback 色,确保可见 */
animation: coolFlow 6s ease infinite;
}
/* H2 冷色渐变稍深 */
h2.publication-title {
font-size: 1.8rem;
font-weight: 600;
background: linear-gradient(120deg, #4D7CFE, #3A0CA3, #00B4D8);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: #4D7CFE; /* fallback */
animation: coolFlow 7s ease infinite;
}
/* 渐变流动动画 */
@keyframes coolFlow {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
</style>
<section class="hero">
<div class="hero-body", style="padding-bottom: 0rem;">
<div class="container is-max-desktop">
<div class="columns is-centered">
<div class="column has-text-centered">
<h1 class="title is-1 publication-title">FastGS</h1>
<h2 class="title is-2 publication-title">Training 3D Gaussian Splatting in 100 Seconds</h2>
<h3 class="title is-4 publication-title" style="color:#ff6f61;">
CVPR 2026 Highlight
</h3>
<div class="is-size-5 publication-authors">
<span class="author-block">
<a href="https://shiwei-ren.github.io/">Shiwei Ren<sup>*</sup></a>
<a href="https://tianci-wen.github.io/">Tianci Wen<sup>*</sup></a>
<a href="https://nankai.teacher.360eol.com/teacherBasic/preview?teacherId=10244">Yongchun Fang<sup>†</sup></a>
</span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block", style="color:#726f6f">Nankai University </span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block", style="font-size: 15px;color:#726f6f">renshiwei, wentc@mail.nankai.edu.cn </span>
<span class="author-block", style="font-size: 15px;color:#726f6f">fangyc@nankai.edu.cn </span>
</div>
<div class="is-size-5 publication-authors">
<span class="author-block", style="font-size: 15px;color:#726f6f"><sup>* </sup>Equal contribution <sup>†</sup> Corresponding author </span>
</div>
<div class="column has-text-centered">
<div class="publication-links">
<span class="link-block">
<a href="https://arxiv.org/abs/2511.04283"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="ai ai-arxiv"></i>
</span>
<span>arXiv</span>
</a>
</span>
<span class="link-block">
<a href="https://github.com/fastgs/FastGS"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>github</span>
</a>
</span>
<span class="link-block">
<a href="https://huggingface.co/Goodsleepeverday/fastgs"
class="external-link button is-normal is-rounded is-dark">
<span class="icon">
<i class="fas fa-cube"></i>
</span>
<span>Pre-trained model</span>
</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3" style="color:#5fb8ff;">1. What is FastGS?</h2>
</div>
</div>
<div class="content has-text-justified">
<p class="tldr-box">
TL;DR: FastGS is a new, simple, and general acceleration framework for 3D Gaussian Splatting (3DGS). It enables training a scene in about <span class="highlight">100 seconds</span> while maintaining comparable rendering quality.
</p>
<p>
The core idea is to combine multi-view consistent <span class="highlight">densification</span> and targeted <span class="highlight">pruning</span>, which together reduce unnecessary computation while preserving visual fidelity.
</p>
<ul class="summary-list">
<li><strong>Fast:</strong> 2–7× training acceleration across varied backbones.</li>
<li><strong>Accurate:</strong> Comparable or better rendering quality versus prior Gaussian-based methods.</li>
<li><strong>Versatile:</strong> Applicable to dynamic scenes, surface reconstruction, sparse-view setups, large-scale reconstruction and SLAM.</li>
</ul>
</div>
</div>
</section>
<section class="section">
<div class="container" style="max-width: 1200px;">
<div class="columns is-centered has-text-centered">
<div class="column is-four-fifths">
<h2 class="title is-3" style="color:#5fb8ff;">2. Training Process Visualization</h2>
<p>
We demonstrate how FastGS accelerates the training process of different backbones on various scenes.
</p>
<hr style="margin: 1.5rem auto; width: 100%; border-top: 1px solid rgba(120,180,255,0.3);">
<!-- 2.1 Outperform SOTA -->
<h3 class="title is-4" style="color:#66ccff;">2.1 Outperform SOTA</h3>
<p style="margin-bottom: 1rem;">
FastGS surpasses state-of-the-art Gaussian-based rendering methods in both reconstruction quality and training speed.
</p>
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless sota-tabs">
<li><a href="#truck">Truck</a></li>
<li><a href="#train">Train</a></li>
<li><a href="#stump">Stump</a></li>
<li><a href="#bicycle">Bicycle</a></li>
<li><a href="#room">Room</a></li>
<li><a href="#counter">Counter</a></li>
<li><a href="#bonsai">Bonsai</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (3DGS-accel) with FastGS.
<br>Fullscreen the videos to view better.
</div>
<!-- 2.1 视频内容 -->
<div id="truck" class="sota-content active">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/truck-h264.mp4" type="video/mp4">
</video>
</div>
<div id="train" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/train-h264.mp4" type="video/mp4">
</video>
</div>
<div id="stump" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/stump-h264.mp4" type="video/mp4">
</video>
</div>
<div id="bicycle" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/bicycle-h264.mp4" type="video/mp4">
</video>
</div>
<div id="room" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/room-h264.mp4" type="video/mp4">
</video>
</div>
<div id="counter" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/counter-h264.mp4" type="video/mp4">
</video>
</div>
<div id="bonsai" class="sota-content">
<video autoplay controls muted playsinline width="100%" style="border-radius:10px;">
<source src="./static/videos/static/bonsai-h264.mp4" type="video/mp4">
</video>
</div>
<hr style="margin: 2rem auto; width: 50%; border-top: 1px solid rgba(120,180,255,0.3);">
<!-- 2.2 Enhancing Baselines -->
<h3 class="title is-4" style="color:#66ccff;">2.2 Enhancing Baselines</h3>
<p style="margin-bottom: 1rem;">
Integrating FastGS into various baseline architectures significantly accelerates their training process.
</p>
<!-- 冷色系导航 tabs -->
<style>
.nav-list {
list-style: none;
padding: 0;
display: flex;
gap: 20px;
max-width: 900px;
flex-wrap: wrap;
font-family: 'Poppins', sans-serif;
justify-content: center;
margin-bottom: 1rem;
}
.nav-list li a {
font-weight: 600;
font-size: 1.1rem;
text-decoration: none;
background: linear-gradient(120deg, #00C9FF, #92FE9D, #7F7FD5);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
transition: all 0.3s ease;
}
.nav-list li a:hover {
background-position: 100% 50%;
transform: scale(1.05);
text-shadow: 0 0 8px rgba(80,180,255,0.4);
}
.sota-content,
.baseline-content {
display: none;
margin-top: 1rem;
}
.sota-content.active,
.baseline-content.active {
display: block;
}
video {
border-radius: 10px;
width: 100%;
}
</style>
<!-- 2.2 Tabs -->
<!-- ====== Top-level baseline tabs (保持与你页面里位置一致) ====== -->
<div class="tabs is-centered">
<ul class="nav-list baseline-tabs">
<li class="is-active"><a href="#static-recon">Static Scene Reconstruction</a></li>
<li><a href="#dynamic-recon">Dynamic Scene Reconstruction</a></li>
<li><a href="#sparseview-recon">Sparse-view Reconstruction</a></li>
<li><a href="#surface-recon">Surface Reconstruction</a></li>
<li><a href="#large-recon">Large-scale Reconstruction</a></li>
<li><a href="#slam-recon">SLAM</a></li>
</ul>
</div>
<style>
/* 覆盖 Bulma 默认激活样式 */
.tabs.is-toggle li.is-active a {
background: none !important; /* 去掉蓝底 */
color: #070b0e !important; /* 字体颜色改成柔和蓝,可改成其他色 */
font-weight: normal !important; /* 去掉加粗 */
box-shadow: none !important; /* 去掉阴影 */
border: 2px solid #eaf1f5 !important; /* 显示边框,颜色可改 */
border-radius: 8px; /* 圆角,保持原先风格 */
padding: 0.25rem 0.75rem; /* 内边距,看起来像按钮 */
}
</style>
<div class="tabs-content baseline-group">
<!-- Static -->
<div id="static-recon" class="baseline-section">
<div class="tabs-widget">
<!-- 内层 tabs -->
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="static-recon">
<li class="is-active"><a href="#static-treehill">Treehill</a></li>
<li><a href="#static-playroom">Playroom</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (Mip-Splatting) with FastGS.
</div>
<div class="inner-content" id="static-trucks">
<div class="item item-mip-treehill active" data-video-id="id-mip-treehill">
<video poster="" id="id-mip-treehill" autoplay controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/mip/mip-treehill-h264.mp4" type="video/mp4">
</video>
</div>
<div class="item item-mip-playroom" data-video-id="id-mip-playroom" style="display: none;">
<video poster="" id="id-mip-playroom" autoplay controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/mip/mip-playroom-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<!-- Dynamic -->
<div id="dynamic-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="dynamic-recon">
<li class="is-active"><a href="#dynamic-cook">Cook_spinach</a></li>
<li><a href="#dynamic-salmon">Flame_salmon</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (Deformable-3DGS) with FastGS.
</div>
<div class="inner-content" id="dynamic-trucks">
<div class="item item-dynamic-cook" data-video-id="id-dynamic-cook">
<video poster="" id="id-dynamic-cook" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/dynamic/dynamic-cook-h264.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="inner-content" id="dynamic-trucks">
<div class="item item-dynamic-salmon" data-video-id="id-dynamic-salmon">
<video poster="" id="id-dynamic-salmon" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/dynamic/dynamic-salmon-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<!-- Sparse -->
<div id="sparseview-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="sparseview-recon">
<li class="is-active"><a href="#sparse-fern">Fern (6 views)</a></li>
<li><a href="#sparse-trex">Trex (6 views)</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (DropGaussian) with FastGS.
</div>
<div class="inner-content" id="sparse-trucks">
<div class="item item-sparse-fern" data-video-id="id-sparse-fern">
<video poster="" id="id-sparse-fern" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/sparse/sparse_fern-h264.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="inner-content" id="sparse-trucks">
<div class="item item-sparse-trex" data-video-id="id-sparse-trex">
<video poster="" id="id-sparse-trex" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/sparse/sparse_trex-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<!-- Surface -->
<div id="surface-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="surface-recon">
<li class="is-active"><a href="#surface-truck">Truck</a></li>
<li><a href="#surface-ignatius">Ignatius</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (PGSR) with FastGS.
</div>
<div class="inner-content" id="surface-trucks">
<div class="item item-surface-truck" data-video-id="id-surface-truck">
<video poster="" id="id-surface-truck" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/surface/surface_truck-h264.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="inner-content" id="surface-trucks">
<div class="item item-surface-ignatius" data-video-id="id-surface-ignatius">
<video poster="" id="id-surface-ignatius" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/surface/surface_ignatius-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div>
<!-- Sparse -->
<!-- <div id="sparseview-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="sparseview-recon">
<li class="is-active"><a href="#sparse-truck">Truck</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (Sparse) with CodeName.
</div>
<div class="inner-content" id="sparse-trucks">
<div class="item item-comp-sparse-truck" data-video-id="id-comp-sparse-truck">
<video poster="" id="id-comp-sparse-truck" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/static/bonsai-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div> -->
<!-- Large -->
<!-- <div id="large-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="large-recon">
<li class="is-active"><a href="#large-truck">Truck</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (Large) with CodeName.
</div>
<div class="inner-content" id="large-trucks">
<div class="item item-comp-large-truck" data-video-id="id-comp-large-truck">
<video poster="" id="id-comp-large-truck" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/static/bonsai-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div> -->
<!-- SLAM -->
<!-- <div id="slam-recon" class="baseline-section" style="display:none;">
<div class="tabs-widget">
<div class="tabs is-centered is-toggle is-toggle-rounded is-small">
<ul class="is-marginless inner-tabs" data-section="slam-recon">
<li class="is-active"><a href="#slam-truck">Truck</a></li>
</ul>
</div>
<div class="content has-text-centered is-size-7-mobile">
'Ours' denotes enhancing the backbone (SLAM) with CodeName.
</div>
<div class="inner-content" id="slam-trucks">
<div class="item item-comp-slam-truck" data-video-id="id-comp-slam-truck">
<video poster="" id="id-comp-slam-truck" controls muted playsinline width="100%" style="border-radius: 10px;">
<source src="./static/videos/static/bonsai-h264.mp4" type="video/mp4">
</video>
</div>
</div>
</div>
</div> -->
</div>
<!-- ====== JS: 主切换 + 内层切换 + 每个视频结束后停2s重播 ====== -->
<script>
(function(){
// 主 tabs 与 sections 映射
const mainTabs = document.querySelectorAll('.baseline-tabs li');
const sections = document.querySelectorAll('.baseline-group .baseline-section');
// helper: 暂停并重置某个 section 内的所有视频
function resetSectionVideos(sec) {
sec.querySelectorAll('video').forEach(v => {
try { v.pause(); } catch(e){}
try { v.currentTime = 0; } catch(e){}
});
}
// helper: 播放 section 第一个可用 video(若存在)
function playFirstVideoInSection(sec) {
const v = sec.querySelector('video');
if (!v) return;
// small delay to ensure become visible
setTimeout(() => { v.play().catch(()=>{}); }, 60);
}
// 初始化:只显示第一个 section(其它隐藏)
sections.forEach((sec, i) => {
sec.style.display = i === 0 ? 'block' : 'none';
// 为 section 内所有 video 绑定 onended(停2s重播)
sec.querySelectorAll('video').forEach(video => {
// 避免重复绑定:先清除
video.onended = null;
video.onended = () => {
setTimeout(() => {
video.currentTime = 0;
video.play().catch(()=>{});
}, 2000);
};
});
});
// 主 tab 点击行为
mainTabs.forEach((tab, idx) => {
tab.addEventListener('click', e => {
e.preventDefault();
// 切换主 tab 高亮
mainTabs.forEach(t => t.classList.remove('is-active'));
tab.classList.add('is-active');
// 隐藏并重置所有 section
sections.forEach((sec, i) => {
if (i === idx) {
sec.style.display = 'block';
} else {
sec.style.display = 'none';
resetSectionVideos(sec);
}
});
// 在 target section 中,如果存在内层 tabs,选中其第一个(见下);
// 否则直接播放第一个 video
const target = sections[idx];
// play first video (or first inner tab will trigger its own play)
playFirstVideoInSection(target);
});
});
// 内层 tabs(每个 section 内可能有内层 .inner-tabs)
document.querySelectorAll('.inner-tabs').forEach(inner => {
const sectionKey = inner.getAttribute('data-section'); // 对应的 section id
const lis = inner.querySelectorAll('li');
const sectionEl = document.getElementById(sectionKey);
const innerItems = sectionEl ? sectionEl.querySelectorAll('.inner-content .item') : [];
// 初始化内层选中
lis.forEach((li, i) => {
li.classList.toggle('is-active', i === 0);
});
// 默认只显示第一个 inner item(若存在)
innerItems.forEach((it, i) => {
it.style.display = i === 0 ? 'block' : 'none';
});
// 点击内层 tab 切换该 section 内的视频项
lis.forEach((li, i) => {
li.addEventListener('click', ev => {
ev.preventDefault();
// 切换样式
lis.forEach(x => x.classList.remove('is-active'));
li.classList.add('is-active');
// 隐藏其它 item,暂停并重置其内 video
innerItems.forEach((it, j) => {
const vid = it.querySelector('video');
if (j === i) {
it.style.display = 'block';
// play target
setTimeout(() => { if (vid) vid.play().catch(()=>{}); }, 60);
} else {
it.style.display = 'none';
if (vid) { vid.pause(); try{vid.currentTime = 0;}catch(e){} }
}
});
});
});
});
// 全局:为页面上所有 video 绑定 onended(以防有漏)
document.querySelectorAll('.baseline-group video').forEach(video => {
// 如果已经绑定则不重复绑定(上面已绑定部分)
const existing = video.onended;
if (!existing) {
video.onended = () => {
setTimeout(() => {
video.currentTime = 0;
video.play().catch(()=>{});
}, 2000);
};
}
});
})();
</script>
<!-- JS 控制两个独立 tab 组 -->
<script>
// 控制 2.1 SOTA tabs
document.querySelectorAll('.sota-tabs a').forEach(tab => {
tab.addEventListener('click', e => {
e.preventDefault();
const target = tab.getAttribute('href');
document.querySelectorAll('.sota-content').forEach(c => c.classList.remove('active'));
document.querySelector(target).classList.add('active');
});
});
// 控制 2.2 Baseline tabs
document.querySelectorAll('.baseline-tabs a').forEach(tab => {
tab.addEventListener('click', e => {
e.preventDefault();
const target = tab.getAttribute('href');
document.querySelectorAll('.baseline-content').forEach(c => c.classList.remove('active'));
document.querySelector(target).classList.add('active');
});
});
</script>
</div>
</div>
</div>
</section>
<script>
// SOTA 视频
const truckVideo = document.querySelector('#truck video');
truckVideo.onended = () => {
setTimeout(() => {
truckVideo.currentTime = 0;
truckVideo.play();
}, 2000);
};
const trainVideo = document.querySelector('#train video');
trainVideo.onended = () => {
setTimeout(() => {
trainVideo.currentTime = 0;
trainVideo.play();
}, 2000);
};
const stumpVideo = document.querySelector('#stump video');
stumpVideo.onended = () => {
setTimeout(() => {
stumpVideo.currentTime = 0;
stumpVideo.play();
}, 2000);
};
const bicycleVideo = document.querySelector('#bicycle video');
bicycleVideo.onended = () => {
setTimeout(() => {
bicycleVideo.currentTime = 0;
bicycleVideo.play();
}, 2000);
};
const roomVideo = document.querySelector('#room video');
roomVideo.onended = () => {
setTimeout(() => {
roomVideo.currentTime = 0;
roomVideo.play();
}, 2000);
};
const counterVideo = document.querySelector('#counter video');
counterVideo.onended = () => {
setTimeout(() => {
counterVideo.currentTime = 0;
counterVideo.play();
}, 2000);
};
const bonsaiVideo = document.querySelector('#bonsai video');
bonsaiVideo.onended = () => {
setTimeout(() => {
bonsaiVideo.currentTime = 0;
bonsaiVideo.play();
}, 2000);
};
// Baseline 视频
const staticVideo = document.querySelector('#static-recon video');
staticVideo.onended = () => {
setTimeout(() => {
staticVideo.currentTime = 0;
staticVideo.play();
}, 2000);
};
const dynamicVideo = document.querySelector('#dynamic-recon video');
dynamicVideo.onended = () => {
setTimeout(() => {
dynamicVideo.currentTime = 0;
dynamicVideo.play();
}, 2000);
};
const surfaceVideo = document.querySelector('#surface-recon video');
surfaceVideo.onended = () => {
setTimeout(() => {
surfaceVideo.currentTime = 0;
surfaceVideo.play();
}, 2000);
};
const sparseviewVideo = document.querySelector('#sparseview-recon video');
sparseviewVideo.onended = () => {
setTimeout(() => {
sparseviewVideo.currentTime = 0;
sparseviewVideo.play();
}, 2000);
};
const largeVideo = document.querySelector('#large-recon video');
largeVideo.onended = () => {
setTimeout(() => {
largeVideo.currentTime = 0;
largeVideo.play();
}, 2000);
};
const slamVideo = document.querySelector('#slam video');
slamVideo.onended = () => {
setTimeout(() => {
slamVideo.currentTime = 0;
slamVideo.play();
}, 2000);
};
</script>
<!-- <section class="section">
<section class="container">
<div class="content">
<p class="title is-3 has-text-centered">
Tour over the Optimized Scenes
</p>
<div class="columns is-centered has-text-centered">
<div class="column is-one-third">
<div class="video-compare-container" id="materialsDiv1">
<video class="video" id="materials1" loop playsinline autoPlay muted src="./static/videos/treehill_cat_720p_text_batch.mp4" onplay="resizeAndPlay(this)"></video>
<canvas height=0 class="videoMerge" id="materials1Merge" style="border-radius: 10px;"></canvas>
</div>
</div>
<div class="column is-one-third">
<div class="video-compare-container" id="materialsDiv2">
<video class="video" id="materials2" loop playsinline autoPlay muted src="./static/videos/truck_cat_720p_text_batch.mp4" onplay="resizeAndPlay(this)"></video>
<canvas height=0 class="videoMerge" id="materials2Merge" style="border-radius: 10px;"></canvas>
</div>
</div>
<div class="column is-one-third">
<div class="video-compare-container" id="materialsDiv3">
<video class="video" id="materials3" loop playsinline autoPlay muted src="./static/videos/garden_cat_720p_text_batch.mp4" onplay="resizeAndPlay(this)"></video>
<canvas height=0 class="videoMerge" id="materials3Merge" style="border-radius: 10px;"></canvas>
</div>
</div>
</div>
<p class="subtitle has-text-centered">
Please click the videos to fullscreen for better view.
</p>
</div>
</section>
</section> -->
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column">
<h2 class="title is-3" style="color:#5fb8ff;">3. Method Overview</h2>
<img alt="Architecture" src="./static/images/pipeline.png" width="100%"/>
</div>
</div>
<div class="content has-text-justified">
<span class="kicker" style="text-align: center; display: block;">Pipeline</span>
<p class>
The FastGS pipeline rethinks importance estimation for Gaussians using multi-view consistency. We sample training views and build per-pixel L1 loss maps to evaluate how each Gaussian contributes across views.
</p>
<p>
Key components:
</p>
<ul class="summary-list">
<li><strong> ADC redesign:</strong> compute a <span class="highlight">multi-view score</span> for each Gaussian by counting high-error pixels inside its 2D footprint — this drives densification and pruning.</li>
</ul>
<p>
Other SOTA 3DGS methods:
</p>
<ul class="summary-list">
<li><strong>(a) Taming-3DGS:</strong> estimates importance from per-Gaussian properties aggregated across sampled views — this can produce a larger number of <span class="issue">redundant Gaussians</span>, increasing memory and compute cost.</li>
<li><strong>(b) Speedy-Splat:</strong> computes Gaussian scores by accumulating Hessian-like approximations over training views, which may <span class="issue">harm rendering fidelity</span>.</li>
</ul>
<p>
The figure shows densification (from 0.5K to 15K iterations) on the left and pruning results (achieved using Speedy-Splat's pruning strategy and VCP on vanilla 3DGS) on the right, illustrating how FastGS preserves quality while reducing compute.
</p>
</div>
</div>
</section>
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column">
<h2 class="title is-3" style="color:#5fb8ff;">4. FastGS Improving SOTA</h2>
<div class="content has-text-justified">
<p class>
Quantitative comparisons show that FastGS completes 3DGS training in about <span class="highlight">100 seconds</span> on average while keeping rendering quality comparable to prior fast-optimization methods.
</p>
<ul class="summary-list">
<li><strong>FastGS-Big:</strong> achieves the best rendering quality among tested methods and still trains faster than the previous SOTA.</li>
<li><strong>Measurements:</strong> time is reported in minutes for easier comparison across methods.</li>
</ul>
</div>
<img alt="Architecture" src="./static/images/result.png" width="100%"/>
</div>
</div>
</div>
</section>
<!-- <section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column">
<h2 class="title is-3">DashGaussian Enhancing Backbones</h2>
<div class="content has-text-justified">
Quantitative results of accelerating various 3DGS backbones using DashGaussian.
Plugging DashGaussian into different backbones, their optimization speed is largely improved by 45.7% on average.
Most prominently, DashGaussian achieves acceleration with negligible compromise and even improvement in the rendering quality.
The results advocate that a reasonable computational resource allocation across the optimization process can largely boost the optimization while preserving the rendering quality.
''Revising-3DGS*'' denotes our reproduction of the paper based on the Taming-3DGS codebase.
Time is reported in minutes.
</div>
<img alt="Architecture" src="./static/images/table2-notext.png" width="100%"/>
</div>
</div>
</div>
</section> -->
<!-- <section class="section" id="BibTeX">
<div class="container is-max-desktop content">
<h2 class="title">BibTeX</h2>
<pre><code>@inproceedings{chen2025dashgaussian,
title = {DashGaussian: Optimizing 3D Gaussian Splatting in 200 Seconds},
author = {Chen, Youyu and Jiang, Junjun and Jiang, Kui and Tang, Xiao and Li, Zhihao and Liu, Xianming and Nie, Yinyu},
booktitle = {CVPR},
year = {2025}
}</code></pre>
</div>
</section> -->
<section class="section">
<div class="container is-max-desktop">
<div class="columns is-centered has-text-centered">
<div class="column">
<h2 class="title is-3" style="color:#5fb8ff;">Star History</h2>
</div>
</div>
<div class="content has-text-centered">
<a href="https://www.star-history.com/#fastgs/FastGS&type=date&legend=top-left" target="_blank">
<img src="https://api.star-history.com/svg?repos=fastgs/FastGS&type=date&legend=top-left" alt="Star History Chart" style="max-width: 100%; height: auto; border-radius: 8px; margin: 1rem auto;">
</a>
</div>
</div>
</section>
<!-- ## Star History
[](https://www.star-history.com/#fastgs/FastGS&type=date&legend=top-left) -->
<script>
document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.video-compare-container').forEach(function (container, index) {
console.log("Index of the container:", index);
container.addEventListener('click', function () {
if (index === 0) {
this.classList.toggle('expand-right');
} else if (index === 2) {
this.classList.toggle('expand-left');
} else {
this.classList.toggle('expanded');
}
});
});
});
const duration=3000
function setupVideo(videoId, pauseDuration) {
const video = document.getElementById(videoId);
video.addEventListener('ended', function() {
setTimeout(function() {
video.currentTime = 0; // 重置视频
video.play(); // 重新播放
}, pauseDuration);
});
// video.play(); // 开始播放
}
setupVideo('train', duration);
setupVideo('truck', duration);
setupVideo('drjohnson', duration);
setupVideo('playroom', duration);
setupVideo('bicycle', duration);
setupVideo('garden', duration);
setupVideo('stump', duration);
setupVideo('flowers', duration);
setupVideo('treehill', duration);
setupVideo('room', duration);
setupVideo('kitchen', duration);
setupVideo('counter', duration);
setupVideo('bonsai', duration);
setupVideo('id-comp-3dgs-train', duration);
setupVideo('id-comp-3dgs-truck', duration);
setupVideo('id-comp-3dgs-drjohnson', duration);
setupVideo('id-comp-3dgs-playroom', duration);
setupVideo('id-comp-3dgs-bicycle', duration);
setupVideo('id-comp-3dgs-garden', duration);
setupVideo('id-comp-3dgs-stump', duration);
setupVideo('id-comp-3dgs-flowers', duration);
setupVideo('id-comp-3dgs-treehill', duration);
setupVideo('id-comp-3dgs-room', duration);
setupVideo('id-comp-3dgs-kitchen', duration);
setupVideo('id-comp-3dgs-counter', duration);
setupVideo('id-comp-3dgs-bonsai', duration);
setupVideo('id-comp-mip-train', duration);
setupVideo('id-comp-mip-truck', duration);
setupVideo('id-comp-mip-drjohnson', duration);
setupVideo('id-comp-mip-playroom', duration);
setupVideo('id-comp-mip-bicycle', duration);
setupVideo('id-comp-mip-garden', duration);
setupVideo('id-comp-mip-stump', duration);
setupVideo('id-comp-mip-flowers', duration);
setupVideo('id-comp-mip-treehill', duration);
setupVideo('id-comp-mip-room', duration);
setupVideo('id-comp-mip-kitchen', duration);
setupVideo('id-comp-mip-counter', duration);
setupVideo('id-comp-mip-bonsai', duration);
</script>
</body>
</html>