-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChronosObserver.html
More file actions
411 lines (355 loc) · 15.7 KB
/
ChronosObserver.html
File metadata and controls
411 lines (355 loc) · 15.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChronosObserver - Project Page</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="icon" href="./assets/ChronosObserver/images/icon.png">
<style>
:root {
--primary-color: #2563eb;
--bg-color: #ffffff;
--text-color: #1e293b;
--card-bg: #ffffff;
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
margin: 0;
padding: 0;
line-height: 1.6;
}
nav {
position: sticky;
top: 0;
z-index: 100;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,0,0,0.05);
padding: 15px 0;
text-align: center;
}
nav a {
text-decoration: none;
color: var(--text-color);
margin: 0 15px;
font-weight: 600;
transition: color 0.3s;
}
nav a:hover { color: var(--primary-color); }
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.hero {
text-align: center;
padding: 80px 0 40px;
}
.hero-title-group {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
gap: 20px;
width: 100%;
overflow: hidden;
}
.hero-logo {
height: 100px;
width: auto;
flex-shrink: 0;
}
h1 {
font-size: 2.5rem;
font-weight: 800;
margin: 0;
white-space: nowrap;
background: linear-gradient(to right, #1e293b, #334155);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: left;
}
.authors { margin: 20px 0 10px; font-size: 1.1rem; }
.authors a { color: var(--primary-color); text-decoration: none; margin: 0 5px; }
.affiliation { color: #64748b; margin-bottom: 30px; }
.btn-group { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; }
.btn {
display: inline-flex; align-items: center;
background-color: #1e293b; color: white;
padding: 10px 20px; border-radius: 50px;
text-decoration: none; font-weight: 600;
transition: 0.2s;
}
.btn:hover { transform: translateY(-2px); background-color: #0f172a; }
.btn-outline { background-color: transparent; color: #1e293b; border: 1px solid #cbd5e1; }
.btn-outline:hover { background-color: #f1f5f9; }
.card {
background: var(--card-bg);
border-radius: 16px;
padding: 40px;
margin-bottom: 40px;
box-shadow: var(--shadow-lg);
}
.section-title {
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 20px;
text-align: center;
color: #334155;
}
h3.title.is-3 {
font-size: 1.4rem;
font-weight: 600;
margin-top: 40px;
margin-bottom: 20px;
text-align: center;
color: #475569;
}
p { text-align: justify; color: #475569; }
.video-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-bottom: 30px;
}
.comparison-slider {
position: relative;
width: 100%;
padding-bottom: 56.25%;
overflow: hidden;
border-radius: 12px;
cursor: col-resize;
background: #000;
margin-bottom: 20px;
}
.video-layer {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
}
video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
z-index: 2;
clip-path: inset(0 50% 0 0);
}
.slider-handle {
position: absolute;
top: 0; bottom: 0; left: 50%;
width: 2px; background: white;
z-index: 10; pointer-events: none;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.handle-circle {
position: absolute; top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 40px; height: 40px;
background: rgba(255,255,255,0.9);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: #333;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.label {
position: absolute; top: 20px;
padding: 5px 12px; background: rgba(0,0,0,0.6);
color: white; border-radius: 20px;
font-size: 0.8rem; font-weight: bold;
pointer-events: none; z-index: 5;
}
.label-left { left: 20px; }
.label-right { right: 20px; }
pre {
background: #f1f5f9; padding: 20px;
border-radius: 8px; overflow-x: auto;
font-size: 0.9rem; color: #334155;
white-space: pre-wrap; word-wrap: break-word;
}
@media (max-width: 768px) {
h1 { font-size: 1.8rem; text-align: center; }
.hero-title-group { flex-direction: column; }
.video-grid { grid-template-columns: 1fr; }
.card { padding: 20px; }
}
.ablation-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-bottom: 40px;
}
.ablation-grid .comparison-slider {
margin-bottom: 0;
}
.ablation-grid .label {
font-size: 0.6rem;
padding: 3px 8px;
top: 10px;
}
.ablation-grid .label-left { left: 10px; }
.ablation-grid .label-right { right: 10px; }
@media (max-width: 768px) {
.ablation-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.ablation-grid .label {
font-size: 0.8rem;
}
}
</style>
</head>
<body>
<nav>
<a href="#abstract">Abstract</a>
<a href="#results">Results</a>
<a href="#citation">Citation</a>
</nav>
<div class="container">
<div class="hero">
<div class="hero-title-group">
<img src="./assets/ChronosObserver/images/logo.png" alt="Logo" class="hero-logo">
<h1>Taming 4D World with Hyperspace Diffusion Sampling</h1>
</div>
<p style="text-align: center; color: #64748b; font-size: 1.25rem; margin-top: 15px;">
A training-free method for temporal-synchronized multi-view video generation
</p>
<div class="authors">
<a href="#">Qisen Wang</a>,
<a href="#">Yifan Zhao</a>,
<a href="#">Peisen Shen</a>,
<a href="#">Jialu Li</a>,
<a href="#">Jia Li</a>
</div>
<div class="affiliation">Beihang University</div>
<div class="btn-group">
<a href="https://arxiv.org/abs/2512.01481" class="btn"><i class="fas fa-file-pdf"></i> Paper</a>
<a href="https://github.com/iCVTEAM/ChronosObserver" class="btn btn-outline"><i class="fab fa-github"></i> Code</a>
</div>
</div>
<div class="card" style="padding: 0; overflow: hidden;">
<video autoplay muted loop playsinline controls style="width: 80%; max-width: 1280px; display: block; margin: 0 auto;">
<source src="./assets/ChronosObserver/videos/ChronosObserver/video.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="card" id="abstract">
<h2 class="section-title">Abstract</h2>
<p>
Although prevailing camera-controlled video generation models can produce cinematic results, lifting them directly to the generation of 3D-consistent and high-fidelity time-synchronized multi-view videos remains challenging, which is a pivotal capability for taming 4D worlds. Some works resort to data augmentation or test-time optimization, but these strategies are constrained by limited model generalization and scalability issues. To this end, we propose ChronosObserver, a training-free method including World State Hyperspace to represent the spatiotemporal constraints of a 4D world scene, and Hyperspace Guided Sampling to synchronize the diffusion sampling trajectories of multiple views using the hyperspace. Experimental results demonstrate that our method achieves high-fidelity and 3D-consistent time-synchronized multi-view videos generation without training or fine-tuning for diffusion models.
</p>
</div>
<div class="card" id="results">
<h2 class="section-title">Comparison Results</h2>
<h3 class="title is-3">Qualitative Comparisons</h3>
<video autoplay muted loop playsinline style="width: 90%; max-width: 1280px; display: block; margin: 0 auto;">
<source src="./assets/ChronosObserver/videos/comp_others/example1.mp4" type="video/mp4">
</video>
<video autoplay muted loop playsinline style="width: 90%; max-width: 1280px; display: block; margin: 0 auto;">
<source src="./assets/ChronosObserver/videos/comp_others/example2.mp4" type="video/mp4">
</video>
<h3 class="title is-3">Ablations</h3>
<div class="ablation-grid">
<div class="comparison-slider">
<div class="video-layer">
<video class="video-bg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example1/abla_1_ours_wo_ISH.mp4" type="video/mp4">
</video>
<div class="label label-right">w/o I.S.H.</div>
</div>
<div class="video-layer video-overlay">
<video class="video-fg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example1/abla_1_ours.mp4" type="video/mp4">
</video>
<div class="label label-left">Ours</div>
</div>
<div class="slider-handle"><div class="handle-circle"><i class="fas fa-arrows-alt-h"></i></div></div>
</div>
<div class="comparison-slider">
<div class="video-layer">
<video class="video-bg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example2/abla_2_ours_wo_HGS.mp4" type="video/mp4">
</video>
<div class="label label-right">w/o H.G.S.</div>
</div>
<div class="video-layer video-overlay">
<video class="video-fg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example2/abla_2_ours.mp4" type="video/mp4">
</video>
<div class="label label-left">Ours</div>
</div>
<div class="slider-handle"><div class="handle-circle"><i class="fas fa-arrows-alt-h"></i></div></div>
</div>
<div class="comparison-slider">
<div class="video-layer">
<video class="video-bg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example3/abla_3_ours_wo_ISH_wo_HGS.mp4" type="video/mp4">
</video>
<div class="label label-right">w/o I.S.H. w/o H.G.S.</div>
</div>
<div class="video-layer video-overlay">
<video class="video-fg" autoplay muted loop playsinline>
<source src="./assets/ChronosObserver/ablation/example3/abla_3_ours.mp4" type="video/mp4">
</video>
<div class="label label-left">Ours</div>
</div>
<div class="slider-handle"><div class="handle-circle"><i class="fas fa-arrows-alt-h"></i></div></div>
</div>
</div>
<h3 class="title is-3">More Visualization Results</h3>
<video autoplay muted loop playsinline style="width: 90%; max-width: 1280px; display: block; margin: 0 auto;"><source src="./assets/ChronosObserver/videos/ours/example1.mp4" type="video/mp4"></video>
<video autoplay muted loop playsinline style="width: 90%; max-width: 1280px; display: block; margin: 0 auto;"><source src="./assets/ChronosObserver/videos/ours/example2.mp4" type="video/mp4"></video>
<video autoplay muted loop playsinline style="width: 90%; max-width: 1280px; display: block; margin: 0 auto;"><source src="./assets/ChronosObserver/videos/ours/example3.mp4" type="video/mp4"></video>
</div>
<div class="card" id="citation" style="max-width: 800px; margin: 0 auto 40px auto;">
<h2 class="section-title">Citation</h2>
<pre><code>@article{wang2025chronosobserver,
title={ChronosObserver: Taming 4D World with Hyperspace Diffusion Sampling},
author={Wang, Qisen and Zhao, Yifan and Shen, Peisen and Li, Jialu and Li, Jia},
journal={arXiv preprint arXiv:2512.01481},
year={2025}
}</code></pre>
</div>
</div>
<script>
document.querySelectorAll('.comparison-slider').forEach(container => {
const overlay = container.querySelector('.video-overlay');
const handle = container.querySelector('.slider-handle');
const videoBg = container.querySelector('.video-bg');
const videoFg = container.querySelector('.video-fg');
// Mouse/Touch Move Logic
const moveSlider = (e) => {
const rect = container.getBoundingClientRect();
// Handle both mouse and touch events
const clientX = e.clientX || (e.touches && e.touches[0].clientX);
if (!clientX) return;
const x = clientX - rect.left;
const width = rect.width;
let percent = (x / width) * 100;
percent = Math.max(0, Math.min(100, percent));
overlay.style.clipPath = `inset(0 ${100 - percent}% 0 0)`;
handle.style.left = `${percent}%`;
};
container.addEventListener('mousemove', moveSlider);
container.addEventListener('touchmove', moveSlider);
// Sync Logic
const syncVideos = () => {
if (!videoBg.paused && !videoFg.paused) {
if (Math.abs(videoBg.currentTime - videoFg.currentTime) > 0.1) {
videoFg.currentTime = videoBg.currentTime;
}
}
requestAnimationFrame(syncVideos);
};
syncVideos();
// Play/Pause Sync
videoBg.addEventListener('play', () => videoFg.play());
videoBg.addEventListener('pause', () => videoFg.pause());
videoFg.addEventListener('play', () => videoBg.play());
videoFg.addEventListener('pause', () => videoBg.pause());
});
</script>
</body>
</html>