Skip to content

Commit 64cb1da

Browse files
committed
added css
1 parent cd45d32 commit 64cb1da

File tree

2 files changed

+198
-4
lines changed

2 files changed

+198
-4
lines changed

blog/mesh-aware-pruning.md.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<meta charset="utf-8" emacsmode="-*- markdown -*-">
44
<title>Adaptive Mesh-Guided Pruning</title>
5-
<link rel="stylesheet" href="https://graphics.cs.utah.edu/research/projects/area-restir/interactive-results-viewer/utils/report.css">
5+
<link rel="stylesheet" href="script/report.css">
66
<script src="script/data.js"></script>
77
<script src="https://graphics.cs.utah.edu/research/projects/area-restir/interactive-results-viewer/utils/ImageBox.js"></script>
88
<script src="https://graphics.cs.utah.edu/research/projects/area-restir/interactive-results-viewer/utils/CopyrightBox.js"></script>
@@ -144,9 +144,9 @@
144144

145145
# Comparison to MILo's Dense Pruning
146146

147-
MILo's original pruning relies solely on photometric importance, which can preserve redundant floaters and lead to irregular surfaces. In contrast, AMGP integrates geometric proximity and opacity, yielding more compact and surface-aligned Gaussian sets. This improves reconstruction accuracy and efficiency, reducing Gaussian counts by 30–50% while maintaining or improving PSNR and lowering Chamfer distances.
148-
149-
# Empirical Evaluation
147+
MILo's original pruning relies solely on photometric importance, which can preserve redundant floaters and lead to irregular surfaces.
148+
In contrast, AMGP integrates geometric proximity and opacity, yielding more compact and surface-aligned Gaussian sets.
149+
This improves reconstruction accuracy and efficiency, reducing Gaussian counts by around 50% while maintaining PSNR.
150150

151151
<div class="content" id="content"></div>
152152

blog/script/report.css

Lines changed: 194 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
body {
2+
font-size: 24px;
3+
}
4+
5+
hr {
6+
border: 0;
7+
height: 1px;
8+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
9+
}
10+
11+
div.content {
12+
margin: 0 auto;
13+
margin-top: 40px;
14+
max-width: 1920px;
15+
}
16+
17+
div.help {
18+
font-family: 'Open Sans', sans-serif;
19+
margin-bottom: 40px;
20+
}
21+
22+
div.copyright {
23+
font-family: 'Open Sans', sans-serif;
24+
margin-bottom: 40px;
25+
text-align: right;
26+
}
27+
28+
img{
29+
border: 0px solid black;
30+
}
31+
32+
img.image-display {
33+
display: block;
34+
height: auto;
35+
line-height: 0;
36+
margin-top: 0;
37+
/*margin-left: auto;*/
38+
/*margin-right: auto;*/
39+
background: #222;
40+
}
41+
42+
img.inset {
43+
border: 0px solid #000;
44+
background-color: #222;
45+
margin: 0px;
46+
padding: 0px;
47+
}
48+
49+
.pixelated {
50+
image-rendering:optimizeSpeed; /* Legal fallback */
51+
image-rendering:-moz-crisp-edges; /* Firefox */
52+
image-rendering:-o-crisp-edges; /* Opera */
53+
image-rendering:-webkit-optimize-contrast; /* Safari */
54+
image-rendering:optimize-contrast; /* CSS3 Proposed */
55+
image-rendering:pixelated; /* CSS4 Proposed */
56+
-ms-interpolation-mode:nearest-neighbor; /* IE8+ */
57+
}
58+
59+
table.insets {
60+
border: 0px solid #000;
61+
border-spacing: 0;
62+
margin: 0px;
63+
padding: 0px;
64+
background-color: #333;
65+
}
66+
67+
td.insets {
68+
font-family: 'Open Sans', sans-serif;
69+
font-size: 21px;
70+
color: #AAA;
71+
font-weight: normal;
72+
border: 0px solid #000;
73+
margin: 0px;
74+
padding: 0px;
75+
text-align: center;
76+
vertical-align: bottom;
77+
}
78+
79+
tr.insets {
80+
border: 0px solid #000;
81+
margin: 0px;
82+
padding: 0px;
83+
}
84+
85+
.selector {
86+
padding: 8px 15px;
87+
font-family: 'Open Sans', sans-serif;
88+
font-size: 22px;
89+
font-weight: normal;
90+
line-height: 1.4;
91+
text-decoration: none;
92+
display: inline-block;
93+
cursor: pointer;
94+
}
95+
/*.selector-primary {
96+
color: #fff;
97+
background-color: #BDC3C7;
98+
}
99+
.selector-primary.active {
100+
color: #fff;
101+
background-color: #7F8C8D;
102+
}
103+
.selector-group>.selector {
104+
position: relative;
105+
}*/
106+
.selector-primary {
107+
color: #AAA;
108+
background-color: #333;
109+
}
110+
.selector-primary.active {
111+
color: #FFF;
112+
background-color: #1F8DD6;
113+
}
114+
115+
.selector-group {
116+
padding: 0px;
117+
background-color: #333;
118+
}
119+
120+
.selector-group>.selector {
121+
position: relative;
122+
}
123+
124+
/*.selector-group>.selector:first-child {
125+
margin-left: 0;
126+
}
127+
.selector-group>.selector:first-child:not(:last-child) {
128+
border-top-right-radius: 0;
129+
}
130+
.selector-group>.selector:last-child:not(:first-child) {
131+
border-top-left-radius: 0;
132+
}
133+
.selector-group>.selector:not(:first-child):not(:last-child):not(.dropdown-toggle) {
134+
border-radius: 0;
135+
}
136+
*/
137+
138+
table.stats {
139+
border-collapse: separate;
140+
border-spacing: 0;
141+
font-family: 'Open Sans', sans-serif;
142+
font-weight: normal;
143+
margin-left: auto;
144+
margin-right: auto;
145+
min-width: 1920px;
146+
padding-bottom: 20px;
147+
}
148+
149+
caption.stats {
150+
text-align: left;
151+
font-family: 'Open Sans', sans-serif;
152+
font-size: 16px;
153+
font-weight: normal;
154+
}
155+
156+
thead.stats {
157+
background-color: #f5f5f5;
158+
color: #000;
159+
text-align: center;
160+
}
161+
162+
th.stats {
163+
font-family: 'Open Sans', sans-serif;
164+
font-weight: normal;
165+
padding: 0.5em 1em;
166+
border-top: 1px solid #CCC;
167+
}
168+
169+
th.stats:first-child { border-left: 1px solid #CCC; border-top-left-radius: 5px; }
170+
th.stats:last-child { border-right: 1px solid #CCC; border-top-right-radius: 5px; }
171+
td.stats:last-child { border-right: 1px solid #CCC; }
172+
tr.stats:last-child>td { border-bottom: 1px solid #CCC; }
173+
tr.stats:last-child>td:first-child { border-bottom-left-radius: 5px; }
174+
tr.stats:last-child>td:last-child { border-bottom-right-radius: 5px; }
175+
176+
td.stats {
177+
text-align: right;
178+
padding: 0.5em 1em;
179+
border-left: 1px solid #CCC;
180+
border-width: 0 0 0 1px;
181+
}
182+
183+
canvas.chart-canvas {
184+
/*border: 1px solid #CCC; */
185+
border-bottom-left-radius: 5px;
186+
border-bottom-right-radius: 5px;
187+
padding-top: 10px;
188+
padding-left: 10px;
189+
padding-right: 10px;
190+
padding-bottom: 0px;
191+
background-color: #FFF;
192+
}
193+
194+

0 commit comments

Comments
 (0)