File size: 7,852 Bytes
81a8abc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-nc-4.0
language:
  - en
task_categories:
  - image-to-3d
tags:
  - multi-view
  - dance
  - motion-capture
  - 3d-reconstruction
  - novel-view-synthesis
  - colmap
  - synchronized-cameras
  - 3d
  - video
annotations_creators:
  - machine-generated
source_datasets:
  - original
pretty_name: DanceNet3D
viewer: false
size_categories:
  - 10K<n<100K
---

# DanceNet3D


A large-scale synchronized multi-view dance dataset captured with 28-29 calibrated cameras at 800x1280 resolution. The dataset contains 47 dance sequences across 3 recording sessions, totaling **35,509 frames** with per-frame camera calibration (COLMAP), foreground masks, and optional color correction LUTs.

## Dataset Summary

| Session | Sequences (available / total) | Cameras | Frames (available / total) | Size |
|---------|-------------------------------|---------|---------------------------|------|
| s4 | 9 / 9 | 29 | 6,786 / 6,786 | ~44 GB |
| s5 | 14 / 23 | 29 | 11,253 / 17,999 | ~53 GB |
| s6 | 6 / 15 | 28 | 4,134 / 10,724 | ~19 GB |
| **Total** | **29 / 47** | | **22,173 / 35,509** | **~116 GB** |

## Data Format

Each session is stored as a directory (`s4/`, `s5/`, `s6/`) containing per-sequence subdirectories. Videos are encoded per-camera using **H.265 (libx265), CRF 18, yuv444p** at 1 fps. Each sequence includes:

- **Per-camera videos**: `{SequenceName}_{CameraID}.mp4` undistorted images without color LUT applied
- **COLMAP calibration**: `colmap/cameras.txt`, `colmap/images.txt` and binary formats
- **Foreground masks**: `masks.tar.zst` binary person segmentation masks generated with SAM3 and with manual quality review
- **Manifest**: `manifest.json` frame IDs, camera lists, and sequence metadata

### Directory Structure

```
DanceNet3D/
├── README.md
├── LICENSE
├── requirements.txt
├── video_to_images.py          # Extraction script
├── color_lut/                  # Per-camera color correction LUTs (.cube)
│   ├── 0028.cube
│   └── ...
├── s5/
│   ├── manifest.json
│   ├── AttitudePromenade/
│   │   ├── AttitudePromenade_0028.mp4
│   │   ├── AttitudePromenade_0103.mp4
│   │   ├── ...
│   │   ├── colmap/
│   │   │   ├── cameras.txt
│   │   │   ├── cameras.bin
│   │   │   ├── images.txt
│   │   │   └── images.bin
│   │   └── masks.tar.zst
│   └── ...
├── s6/
│   └── ...
└── s4/
    └── ...
```

### Extracted Frame Structure

After running `video_to_images.py`, the data is organized per-frame:

```
output/
└── AttitudePromenade/
    └── images_and_masks/
        ├── 0000001/
        │   ├── images_no_lut/       # Undistorted images (no color correction)
        │   │   ├── 0028.png
        │   │   ├── 0103.png
        │   │   └── ...
        │   ├── images/              # Color-corrected images (present if --apply-lut used)
        │   │   └── ...
        │   ├── masks/               # Binary foreground masks
        │   │   ├── 0028.png
        │   │   └── ...
        │   └── sparse/0/            # COLMAP calibration
        │       ├── cameras.txt
        │       ├── cameras.bin
        │       ├── images.txt
        │       └── images.bin
        ├── 0000002/
        └── ...
```

## Quick Start

### Prerequisites

- Python 3.8+
- FFmpeg
- zstd

```bash
pip install -r requirements.txt
```

### Extract Frames

```bash
# Extract a single session
python video_to_images.py --input s5 --output extracted/s5

# Extract specific sequences
python video_to_images.py --input s5 --output extracted/s5 --sequences AttitudePromenade Chacha

# Extract specific cameras only
python video_to_images.py --input s5 --output extracted/s5 --cameras 0028 1362

# Extract with color LUT correction applied
python video_to_images.py --input s5 --output extracted/s5 --apply-lut
```

### Using with COLMAP

The `colmap/` directory in each sequence contains pre-computed camera intrinsics and extrinsics in COLMAP format. Camera parameters correspond to the undistorted, rotated (portrait orientation) images.

## Sequences

### Session 4 (s4)

| Sequence | Frames | Cameras | Status |
|----------|--------|---------|--------|
| 3PointStep | 920 | 29 | Available |
| BartSimpson | 471 | 29 | Available |
| BizMarkie | 703 | 29 | Available |
| HouseFootworkAdvanced | 646 | 29 | Available |
| RoboCop | 920 | 29 | Available |
| RunningMan | 687 | 29 | Available |
| TheRooftop | 983 | 29 | Available |
| ToeTaps | 572 | 29 | Available |
| WuTang | 884 | 29 | Available |

### Session 5 (s5)

| Sequence | Frames | Cameras | Status |
|----------|--------|---------|--------|
| AttitudePromenade | 814 | 29 | Available |
| BasicSuzieQ | 914 | 29 | Available |
| BigKicks | 750 | 29 | Available |
| BourreeTurns2 | 688 | 29 | Available |
| Chacha | 942 | 29 | Available |
| ComboSeated | 903 | 29 | Available |
| DoubleSpiral | 769 | 29 | Available |
| Flair | 752 | 29 | Available |
| Jumping | 552 | 29 | Available |
| Pirouettes | 981 | 29 | Available |
| Portdebras | 765 | 29 | Available |
| PortdebrasSeated | 906 | 29 | Available |
| RonDeJambeAtere2 | 726 | 29 | Available |
| SonBasic | 791 | 29 | Available |
| BourreeTurns | 607 | 29 | Coming soon |
| RonDeJambeAtere | 830 | 29 | Coming soon |
| RonDeJambeInAir | 614 | 29 | Coming soon |
| SalsaTurns | 729 | 29 | Coming soon |
| Shoulders | 682 | 29 | Coming soon |
| ShouldersSeated | 697 | 29 | Coming soon |
| SonBasicSeated | 924 | 29 | Coming soon |
| Turns | 733 | 29 | Coming soon |
| Twists | 930 | 29 | Coming soon |

### Session 6 (s6)

| Sequence | Frames | Cameras | Status |
|----------|--------|---------|--------|
| BiancaGolden_Breathing | 829 | 28 | Available |
| BiancaGolden_Chimee | 610 | 28 | Available |
| BiancaGolden_CircleTurns | 433 | 28 | Available |
| BiancaGolden_GrandPlies | 1061 | 28 | Available |
| BiancaGolden_SalsaBasic | 450 | 28 | Available |
| RobertRubama_RussiaCostume | 751 | 28 | Available |
| BiancaGolden_DropTurn | 612 | 28 | Coming soon |
| BiancaGolden_Ocho | 472 | 28 | Coming soon |
| BiancaGolden_Portedbras | 940 | 28 | Coming soon |
| BiancaGolden_ReleasetoFloor | 395 | 28 | Coming soon |
| BiancaGolden_RollDown | 1,334 | 28 | Coming soon |
| BiancaGolden_StyleArms | 588 | 28 | Coming soon |
| BiancaGolden_Swings | 603 | 28 | Coming soon |
| BiancaGolden_SyncopatedGroove | 919 | 28 | Coming soon |
| RobertRubama_RussiaRehearsal | 727 | 28 | Coming soon |

## Technical Details

- **Resolution**: 800 x 1280
- **Cameras**: 28-29 synchronized Intel RealSense D455
- **Frame rate**: Captured at 30 fps
- **Image format**: PNG
- **Masks**: Binary foreground segmentation via SAM3, stored as PNG
- **Calibration**: COLMAP format
- **Color LUTs**: Per-camera 3D lookup tables for color correction

## Known Limitations

- Some sequences have small frame gaps, 1-2 frames in the middle of the video, due to capture dropouts
- Video encoding at CRF 18 introduces minor compression artifacts
- Color lut for camera 1000 and camera 1362 are generated by hand with Lightroom to get the visually cloest result. All other cameras were calibrated using a Macbeth chart and OpenCV.

## Authors

**NYU Video Lab**
- Shihang Wei
- Mingjian Li
- Ran Gong

**NYU Tandon @ The Yard**
- Reese Anspaugh
- Moira Zhang


## License

This dataset is owned by New York University (NYU) and released under the [Creative Commons Attribution-NonCommercial 4.0 International License (CC-BY-NC-4.0)](https://creativecommons.org/licenses/by-nc/4.0/) with additional supplementary terms. See the full [LICENSE](LICENSE) file for details.


<!-- ## Citation

```bibtex

``` -->