NinaKarine commited on
Commit
ae70909
·
verified ·
1 Parent(s): 5eacbba

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +87 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Scene-Decoupled Video Dataset
2
+
3
+ TL;DR: The Scene-Decoupled Video Dataset, introduced in CineScene, is a large-scale synthetic dataset for **video generation with decoupled scene**, which encompasses diverse scenes, subjects, and camera movements. This dataset contains camera trajectories, equirectangular panorama (scene image), and videos with/without dynamic subject. The data is organized into "With Human" (whuman) and "Without Human" (wohuman) categories, while panoramas are scene-decoupled and shared across both.
4
+
5
+ ## 1. Directory Tree
6
+
7
+ ```text
8
+ .
9
+ ├── camera/ # Camera trajectories and metadata
10
+ │ ├── whuman/ # Sequences containing human characters
11
+ │ │ └── <scene_id>/ # e.g., scene1_3x3_loc1_scene_AncientTempleEnv/
12
+ │ │ └── <scene_id>_cam.json # Camera parameters
13
+ │ └── wohuman/ # Sequences with environment only
14
+ │ └── <scene_id>/
15
+ │ └── <scene_id>_cam.json
16
+
17
+ ├── panorama/ # Scene-decoupled environment maps
18
+ │ └── <scene_id>/ # Shared between whuman and wohuman
19
+ │ └── <scene_id>_pano.jpeg # 360° Equirectangular panoramic image
20
+
21
+ └── video/ # Rendered video sequences (MP4)
22
+ ├── whuman/ # Videos with human characters
23
+ │ └── <scene_id>/
24
+ │ ├── <scene_id>_01_24mm.mp4 # Sub-sequences (01, 02, etc.)
25
+ │ ├── <scene_id>_02_24mm.mp4
26
+ │ └── ...
27
+ └── wohuman/ # Videos without human characters
28
+ └── <scene_id>/
29
+ ├── <scene_id>_01_24mm.mp4
30
+ ├── ...
31
+
32
+ ```
33
+
34
+
35
+
36
+ ## 2. Dataset Statistics
37
+
38
+ * **Total Scale**: 46,816 videos.
39
+ * **Scenes**: 6,688 scenes (comprising 3,344 *whuman* and 3,344 *wohuman* scenes) across 35 high-quality 3D environments.
40
+ * **Trajectories**: 46,816 camera paths (7 distinct camera trajectories per scene).
41
+ * **Panorama**: 360° Equirectangular images for every scene, providing a complete background reference for scene conditioning.
42
+
43
+ | Property | Value |
44
+ | :--- | :--- |
45
+ | **Video Resolution** | 672 x 384 |
46
+ | **Frame Count** | 81 frames per video |
47
+ | **Frame Rate** | 15 FPS |
48
+ | **View Change Range** | Up to 75° |
49
+ | **Decoupled Scene** | 360° Equirectangular (Panorama) |
50
+ | **Panorama Resolution** | 2048 x 1024 |
51
+
52
+
53
+ ## 3. Dataset Construction
54
+
55
+ We follow the asset collection pipeline established by **RecamMaster**, but introduce three significant enhancements to support more complex generative tasks:
56
+
57
+ 1. **Decoupled Scenes**: We provide static 360° panoramic images (Equirectangular) for every scene. This allows for explicit background conditioning and facilitates novel view synthesis from any angle.
58
+ 2. **Extended Camera Range**: Our dataset covers significantly larger view changes (approx. **75°**) compared to the 5–60° range provided in previous datasets [1].
59
+ 3. **Paired Subject/Background Data**: Every scene includes both "with-subject" (*whuman*) and "background-only" (*wohuman*) video sequences. This paired data is ideal for training models on subject-background decoupling, motion transfer, and cinematic composition.
60
+
61
+ ## 4. useful script
62
+
63
+ - download
64
+
65
+ ```bash
66
+ sudo apt-get install git-lfs
67
+ git lfs install
68
+ git clone https://huggingface.co/datasets/KwaiVGI/Scene-Decoupled-Video-Dataset
69
+ cat Scene-Decoupled-Video-Dataset.part* > Scene-Decoupled-Video-Dataset.tar.gz
70
+ tar -xvf Scene-Decoupled-Video-Dataset.tar.gz
71
+ ```
72
+
73
+ - camera visualization
74
+
75
+ To visualize the camera, please refer to [here.](https://huggingface.co/datasets/KlingTeam/MultiCamVideo-Dataset/blob/main/vis_cam.py)
76
+
77
+ - Perspective Projection
78
+ To extract perspective frames from the panoramic images:
79
+
80
+ ```
81
+ python extract_scene_from_panorama.py
82
+ ```
83
+
84
+
85
+
86
+ References
87
+ [1] Bai J, Xia M, Fu X, et al. Recammaster: Camera-controlled generative rendering from a single video[J]. arXiv preprint arXiv:2503.11647, 2025.