File size: 3,780 Bytes
fd26669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: "TranSpace — playroom_drjohnson"
license: other
license_name: non-commercial-research
license_link: https://github.com/codeshim/transpace/blob/main/LICENSE
tags:
  - 3d-reconstruction
  - novel-view-synthesis
  - scene-synthesis
  - indoor-scenes
size_categories:
  - 10B<n<100B
---

# TranSpace — `playroom_drjohnson` data pack

Data for the released demo of:

> **TranSpace: Progressive Anchoring for Metric-Consistent Scene Synthesis**
> Hyeshim Kim, Taehei Kim\*, Jihun Shin\*, Hyeonjin Kim, Sung-Hee Lee — *\*equal contribution*
> KAIST · ACM Multimedia 2026 (MM '26)
> [doi:10.1145/3767308.3836316](https://doi.org/10.1145/3767308.3836316)

Code: https://github.com/codeshim/transpace

TranSpace synthesizes the transition geometry between two separately captured
indoor scenes. This pack contains everything the pipeline needs to reproduce that
for the Deep Blending `playroom` and `drjohnson` rooms: the two reconstructed
rooms, the inpainted keyframes, and every intermediate video. The demo replays
these, so no generative model or API key is required.

## Download

```bash
pip install huggingface_hub

# everything (~19 GB)
hf download codeshim/transpace-playroom-drjohnson --repo-type dataset \
    --local-dir data/playroom_drjohnson
```

Place it at `data/playroom_drjohnson/` inside the code repository, then:

```bash
python main.py
```

## Contents

```
playroom_drjohnson/
├── playroom_aligned/                   room A: images/, sparse/, checkpoints/
├── drjohnson_aligned/                  room B: images/, sparse/, checkpoints/
├── BASE_model/                         floor/threshold voxel model
├── trspace_padding_model_type{0,1,2}/  space_id mask model per variant
├── trspace_source_type{0,1,2}/         inpainted keyframes + intermediate videos
└── playroom_drjohnson_alignment_info_type{0,1,2}.json
```

Each room directory is self-contained: its COLMAP reconstruction (`images/`,
`sparse/`) and its trained SVRaster voxel model (`checkpoints/`) side by side.

Three connector variants are provided for the same room pair — `type0` (wing
wall), `type1` (pony wall), `type2` (internal window). Only the RIGHT connector
varies; LEFT is an internal window in every variant. A variant's source videos,
alignment info and padding model must be used together.

`trspace_source_type*/` holds the inputs that were generated offline:

| | |
|---|---|
| `<VIEW>_generated.png` | inpainted keyframe |
| `<VIEW>_depth_raw.npy` | its aligned metric depth |
| `<START>_<END>_iterNN.mp4` | per-iteration transition video |
| `<START>_<END>_iterNN_f2m.mp4` / `_m2b.mp4` | final-closing segment videos |

## Provenance and licensing

Derived from the **Deep Blending** scenes `drjohnson` and `playroom`:

> Deep Blending for Free-Viewpoint Image-Based Rendering.
> Hedman, Philip, Price, Frahm, Drettakis, Brostow. *ACM ToG* 37(6), 2018.

The keyframes were produced with Google Vertex AI Imagen 2 (since retired) and
the intermediate videos with DeeVid AI Video Generation V2.1.

**Non-commercial use only** (research or evaluation). The voxel models are
produced by [SVRaster](https://github.com/NVlabs/svraster), whose license limits
the work and its derivatives to non-commercial use.

The paper additionally evaluates on ScanNet++ scenes, which are **not**
redistributed here.

## Citation

```bibtex
@inproceedings{kim2026transpace,
  title     = {TranSpace: Progressive Anchoring for Metric-Consistent Scene Synthesis},
  author    = {Kim, Hyeshim and Kim, Taehei and Shin, Jihun and Kim, Hyeonjin and Lee, Sung-Hee},
  booktitle = {Proceedings of the 34th ACM International Conference on Multimedia (MM '26)},
  year      = {2026},
  publisher = {ACM},
  doi       = {10.1145/3767308.3836316}
}
```