Views
No views yet


1cd LiveStre4m
2conda env create -f environment.yml
3conda activate LiveStre4mpython prepare_dataset.py --dataset <dataset_name>/<scene_name> --max_frames 3001<dataset_name>/<scene_name>/
2 └── FRAMES/
3 ├── t0/ # Timestep 0 (First frame of the video)
4 │ ├── cam_00.png # Camera views (zero-padded, alphabetically sorted)
5 │ ├── cam_01.png
6 │ └── ...
7 ├── t1/ # Timestep 1
8 │ ├── cam_00.png
9 │ └── ...
10 └── ...checkpoints/ directory before running inference.1# Install the Hugging Face CLI
2pip install -U "huggingface_hub[cli]"
3
4# Download the model directly into the checkpoints/ folder
5huggingface-cli download Pedro-Quesado/LiveStre4m checkpoints/LiveStre4m.pth --local-dir .1python INFERENCE.py \
2 --dataset <dataset_name>/<scene_name> \
3 --ckpt_path checkpoints/LiveStre4m.pth \
4 --resolution 640 384--no_cam_optim: Skip test-time camera optimization and go directly to rendering (useful for quick previews).--optim_iters 250: Change the number of camera refinement iterations (default is 1000).| Category | Method | Runtime (s) ↓ | PSNR ↑ | Camera Free | #Views |
|---|---|---|---|---|---|
| Video Optimization | K-planes | 48.00 | 32.17 | ❌ | >19 |
| 4DGS | 7.80 | 32.70 | ❌ | ≥19 | |
| Spacetime-GS | 48.00 | 33.71 | ❌ | ≥19 | |
| Frame Optimization | StreamRF | 15.00 | 32.09 | ❌ | >19 |
| 3DGStream | 16.93 | 32.75 | ❌ | ≥19 | |
| IGS | 2.67 | 33.89 | ❌ | ≥19 | |
| Feed-forward | LiveStre4m (Ours) | 0.14 | 20.64 | ✅ | 2 |
| Dataset | Method | Runtime (s) ↓ | PSNR ↑ | Resolution | Pose Free | #Views |
|---|---|---|---|---|---|---|
| Neural3DVideo | FLARE | 0.249 | 21.45 | 512x384 | ✅ | 2 |
| LiveStre4m (Ours) | 0.062 | 22.44 | 512x384 | ✅ | 2 | |
| LiveStre4m (Ours) | 0.074 | 21.11 | 1024x768 | ✅ | 2 | |
| MeetRoom | FLARE | 0.243 | 16.65 | 512x384 | ✅ | 2 |
| LiveStre4m (Ours) | 0.062 | 19.32 | 512x384 | ✅ | 2 | |
| LiveStre4m (Ours) | 0.074 | 18.65 | 1024x768 | ✅ | 2 |
1@misc{quesado2026livestre4mfeedforwardlivestreaming,
2 title={LiveStre4m: Feed-Forward Live Streaming of Novel Views from Unposed Multi-View Video},
3 author={Pedro Quesado and Erkut Akdag and Yasaman Kashefbahrami and Willem Menu and Egor Bondarev},
4 year={2026},
5 eprint={2604.06740},
6 archivePrefix={arXiv},
7 primaryClass={cs.CV},
8 url={[https://arxiv.org/abs/2604.06740](https://arxiv.org/abs/2604.06740)},
9}