Ethanliang99 commited on
Commit
974e696
·
verified ·
1 Parent(s): c0e9cfb

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. COMPETITION.md +78 -0
  2. README.md +144 -0
  3. val/i_12/manifest.json +17 -0
  4. val/i_120/manifest.json +17 -0
  5. val/i_27/manifest.json +17 -0
  6. val/i_30/manifest.json +17 -0
  7. val/i_63/manifest.json +17 -0
  8. val/i_84/manifest.json +17 -0
  9. val/i_96/manifest.json +17 -0
  10. val/o_105/manifest.json +17 -0
  11. val/o_114/manifest.json +17 -0
  12. val/o_117/manifest.json +17 -0
  13. val/o_126/manifest.json +17 -0
  14. val/o_132/manifest.json +17 -0
  15. val/o_135/manifest.json +17 -0
  16. val/o_39/manifest.json +17 -0
  17. val/o_54/low/1692695336775671.png +3 -0
  18. val/o_54/low/1692695336998225.png +3 -0
  19. val/o_54/low/1692695337016770.png +3 -0
  20. val/o_54/low/1692695337387692.png +3 -0
  21. val/o_54/low/1692695337517515.png +3 -0
  22. val/o_54/low/1692695337554608.png +3 -0
  23. val/o_54/low/1692695337962621.png +3 -0
  24. val/o_54/low/1692695338296451.png +3 -0
  25. val/o_54/low/1692695338352089.png +3 -0
  26. val/o_54/low/1692695338444819.png +3 -0
  27. val/o_54/low/1692695338964109.png +3 -0
  28. val/o_54/low/1692695338982655.png +3 -0
  29. val/o_54/low/1692695339019748.png +3 -0
  30. val/o_54/low/1692695339056840.png +3 -0
  31. val/o_54/low/1692695339075386.png +3 -0
  32. val/o_54/low/1692695339798683.png +3 -0
  33. val/o_54/low/1692695339928506.png +3 -0
  34. val/o_54/low/1692695339984144.png +3 -0
  35. val/o_54/low/1692695340039783.png +3 -0
  36. val/o_54/low/1692695340151060.png +3 -0
  37. val/o_54/low/1692695340540527.png +3 -0
  38. val/o_54/low/1692695340633259.png +3 -0
  39. val/o_54/low/1692695341171095.png +3 -0
  40. val/o_54/low/1692695341375101.png +3 -0
  41. val/o_54/low/1692695342005668.png +3 -0
  42. val/o_54/low/1692695342376590.png +3 -0
  43. val/o_54/low/1692695342432229.png +3 -0
  44. val/o_54/low/1692695342617690.png +3 -0
  45. val/o_54/low/1692695342821697.png +3 -0
  46. val/o_54/low/1692695343452263.png +3 -0
  47. val/o_54/manifest.json +17 -0
  48. val/o_66/manifest.json +17 -0
  49. val/o_72/manifest.json +17 -0
  50. val/o_9/manifest.json +17 -0
COMPETITION.md ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Event-Guided Video Depth Estimation Competition
2
+
3
+ ## Overview
4
+
5
+ This challenge focuses on event-guided video depth estimation in low-light scenes.
6
+
7
+ Participants are asked to use low-light RGB frames together with event streams to predict dense depth maps for each scene. The benchmark is organized at the scene/video level so that temporal consistency is preserved across frames.
8
+
9
+ The official split follows a 6:2:2 train/val/test ratio by video count. The split assignment is encoded directly in the top-level directory structure.
10
+
11
+ ## Dataset
12
+
13
+ The competition dataset is a workshop-aligned mirror of the DVD event-guided depth data.
14
+
15
+ Each scene contains aligned RGB frames, event slices, and depth supervision in the following layout:
16
+
17
+ ```text
18
+ train/
19
+ <scene_name>/
20
+ low/
21
+ normal/
22
+ val/
23
+ <scene_name>/
24
+ low/
25
+ normal/
26
+ test/
27
+ <scene_name>/
28
+ low/
29
+ normal/
30
+ ```
31
+
32
+ Each scene directory includes a `manifest.json` file with the release and split metadata.
33
+
34
+ Training and validation scenes are intended for development and public benchmarking. Test labels should remain hidden during the competition phase.
35
+
36
+ ## Submission
37
+
38
+ Participants should submit one predicted depth sequence for each test scene.
39
+
40
+ Recommended submission layout:
41
+
42
+ ```text
43
+ submission/
44
+ <scene_name>/
45
+ normal/
46
+ depth.npz
47
+ ```
48
+
49
+ Each `depth.npz` file should contain a depth array aligned with the scene frame order. A 4D tensor shaped `[T, H, W, 1]` is preferred for compatibility with the existing DVD tooling, although `[T, H, W]` can also be supported by the evaluation script.
50
+
51
+ ## Evaluation
52
+
53
+ The current DVD evaluation code reports the following depth metrics:
54
+
55
+ - AbsRel / `abs_relative_difference`
56
+ - RMSE / `rmse_linear`
57
+ - delta1 / `delta1_acc`
58
+ - delta2 / `delta2_acc`
59
+ - delta3 / `delta3_acc`
60
+ - SILog / `silog_rmse`
61
+
62
+ For launch, we suggest selecting one primary ranking metric from the list above and reporting the rest as diagnostics.
63
+
64
+ ## Rules & Timeline
65
+
66
+ - Only use the training data and any additional resources explicitly allowed by the organizers.
67
+ - Do not inspect or annotate hidden test labels.
68
+ - Keep scene-level temporal ordering intact when producing predictions.
69
+ - Submission quota: TBD.
70
+ - Development phase: TBD.
71
+ - Final test phase: TBD.
72
+
73
+ ## Terms
74
+
75
+ - Dataset license: TBD.
76
+ - Code and baseline license: TBD.
77
+ - By participating, teams agree to the competition rules and the platform terms.
78
+ - The organizers may update the submission format or evaluation script with prior notice.
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ pretty_name: Event-Guided Video Depth Estimation Workshop Dataset
6
+ tags:
7
+ - computer-vision
8
+ - depth-estimation
9
+ - event-camera
10
+ - video
11
+ - low-light
12
+ task_categories:
13
+ - depth-estimation
14
+ source_datasets:
15
+ - DVD sde_in_release
16
+ - DVD sde_out_release
17
+ ---
18
+
19
+ # Event-Guided Video Depth Estimation Workshop Dataset
20
+
21
+ This dataset is a mirrored and aligned workshop-ready version of the DVD event-guided video depth estimation data.
22
+
23
+ It packages each scene into a canonical folder tree that aligns:
24
+
25
+ - low-light RGB frames
26
+ - per-frame event slices
27
+ - a scene-level `lowlight_event.npz`
28
+ - the matched depth ground truth copied from `inference_results/*/normal/depth.npz`
29
+
30
+ The dataset is designed for direct upload to Hugging Face as a dataset repository.
31
+
32
+ The official competition split is scene-level and uses a 6:2:2 train/val/test ratio by video count. The split is encoded directly in the top-level `train/`, `val/`, and `test/` folders.
33
+
34
+ ## Dataset Goals
35
+
36
+ This dataset is intended for event-guided video depth estimation in low-light conditions.
37
+
38
+ The expected input is:
39
+
40
+ - low-light event data
41
+ - low-light RGB images
42
+
43
+ The expected output is:
44
+
45
+ - aligned depth supervision for the corresponding scene
46
+
47
+ ## Directory Layout
48
+
49
+ The canonical structure is:
50
+
51
+ ```text
52
+ workshop_data/
53
+ train/
54
+ <scene_name>/
55
+ low/
56
+ normal/
57
+ val/
58
+ <scene_name>/
59
+ low/
60
+ normal/
61
+ test/
62
+ <scene_name>/
63
+ low/
64
+ normal/
65
+ ```
66
+
67
+ Each scene directory contains a `manifest.json` with the release and split metadata.
68
+
69
+ Each scene contains:
70
+
71
+ ```text
72
+ scene_name/
73
+ low/
74
+ <timestamp>.png
75
+ <timestamp>.npz
76
+ lowlight_event.npz
77
+ normal/
78
+ <timestamp>.png
79
+ depth.npz
80
+ manifest.json
81
+ ```
82
+
83
+ ## File Semantics
84
+
85
+ ### Low-light RGB frames
86
+
87
+ The PNG files under `low/` are the low-light image sequence used as model input.
88
+
89
+ ### Event slices
90
+
91
+ Each per-frame `.npz` file in `low/` stores a slice of the event stream. The slices are timestamp-aligned and may overlap with neighboring slices in the raw source data. During materialization, the overlap is trimmed at timestamp boundaries so that adjacent slices do not double-count the same events.
92
+
93
+ `lowlight_event.npz` stores the concatenated trimmed event stream for the scene.
94
+
95
+ ### Depth ground truth
96
+
97
+ `normal/depth.npz` is copied from the corresponding inference result directory:
98
+
99
+ `inference_results/<release>_png_depth/<scene>/normal/depth.npz`
100
+
101
+ This file is used as the aligned depth target for evaluation and training.
102
+
103
+ ## Data Preparation
104
+
105
+ The repository includes a preprocessing script:
106
+
107
+ ```bash
108
+ python utils/process_workshop_data.py
109
+ ```
110
+
111
+ By default it reads from:
112
+
113
+ - `data/sde_in_release`
114
+ - `data/sde_out_release`
115
+ - `inference_results`
116
+
117
+ and materializes the final dataset under:
118
+
119
+ - `../workshop_data`
120
+
121
+ ## Intended Use
122
+
123
+ This dataset is meant for research on event-guided video depth estimation under low-light conditions.
124
+
125
+ Recommended usage:
126
+
127
+ - feed low-light RGB sequences together with event information as input
128
+ - use the copied `normal/depth.npz` as supervision or evaluation ground truth
129
+ - keep the scene-level temporal alignment intact when training or evaluating temporal models
130
+
131
+ ## Notes
132
+
133
+ - The dataset tree is already aligned for scene-level consumption.
134
+ - The raw source event slices contain overlap; use the trimmed workshop copy instead of the raw source tree.
135
+ - The competition split is by scene/video count, not by frame count.
136
+ - The folder name itself is the split assignment; no separate top-level split manifest is required.
137
+
138
+ ## Competition Draft
139
+
140
+ See [COMPETITION.md](COMPETITION.md) for a Codabench-style challenge description draft that follows the same page-tab structure as the reference competition.
141
+
142
+ ## Citation
143
+
144
+ If you use this dataset, please cite the original DVD project and mention that you are using the workshop-aligned export.
val/i_12/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 457,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 457,
10
+ "low_event_rows": 10225311,
11
+ "low_frame_count": 457,
12
+ "normal_frame_count": 457,
13
+ "release": "sde_in_release",
14
+ "scene": "i_12",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/i_120/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 399,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 399,
10
+ "low_event_rows": 8745063,
11
+ "low_frame_count": 399,
12
+ "normal_frame_count": 399,
13
+ "release": "sde_in_release",
14
+ "scene": "i_120",
15
+ "source_split": "test",
16
+ "split": "val"
17
+ }
val/i_27/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 497,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 497,
10
+ "low_event_rows": 32484528,
11
+ "low_frame_count": 497,
12
+ "normal_frame_count": 497,
13
+ "release": "sde_in_release",
14
+ "scene": "i_27",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/i_30/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 288,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 288,
10
+ "low_event_rows": 6847481,
11
+ "low_frame_count": 288,
12
+ "normal_frame_count": 288,
13
+ "release": "sde_in_release",
14
+ "scene": "i_30",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/i_63/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 145,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 145,
10
+ "low_event_rows": 4708686,
11
+ "low_frame_count": 145,
12
+ "normal_frame_count": 145,
13
+ "release": "sde_in_release",
14
+ "scene": "i_63",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/i_84/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 351,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 351,
10
+ "low_event_rows": 16315342,
11
+ "low_frame_count": 351,
12
+ "normal_frame_count": 351,
13
+ "release": "sde_in_release",
14
+ "scene": "i_84",
15
+ "source_split": "test",
16
+ "split": "val"
17
+ }
val/i_96/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 418,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 418,
10
+ "low_event_rows": 9682652,
11
+ "low_frame_count": 418,
12
+ "normal_frame_count": 418,
13
+ "release": "sde_in_release",
14
+ "scene": "i_96",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_105/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 391,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 391,
10
+ "low_event_rows": 10227193,
11
+ "low_frame_count": 391,
12
+ "normal_frame_count": 391,
13
+ "release": "sde_out_release",
14
+ "scene": "o_105",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_114/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 215,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 215,
10
+ "low_event_rows": 16330798,
11
+ "low_frame_count": 215,
12
+ "normal_frame_count": 215,
13
+ "release": "sde_out_release",
14
+ "scene": "o_114",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_117/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 160,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 160,
10
+ "low_event_rows": 13472625,
11
+ "low_frame_count": 160,
12
+ "normal_frame_count": 160,
13
+ "release": "sde_out_release",
14
+ "scene": "o_117",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_126/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 225,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 225,
10
+ "low_event_rows": 17319044,
11
+ "low_frame_count": 225,
12
+ "normal_frame_count": 225,
13
+ "release": "sde_out_release",
14
+ "scene": "o_126",
15
+ "source_split": "test",
16
+ "split": "val"
17
+ }
val/o_132/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 432,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 432,
10
+ "low_event_rows": 7069269,
11
+ "low_frame_count": 432,
12
+ "normal_frame_count": 432,
13
+ "release": "sde_out_release",
14
+ "scene": "o_132",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_135/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 200,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 200,
10
+ "low_event_rows": 4617712,
11
+ "low_frame_count": 200,
12
+ "normal_frame_count": 200,
13
+ "release": "sde_out_release",
14
+ "scene": "o_135",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_39/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 377,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 377,
10
+ "low_event_rows": 7470294,
11
+ "low_frame_count": 377,
12
+ "normal_frame_count": 377,
13
+ "release": "sde_out_release",
14
+ "scene": "o_39",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_54/low/1692695336775671.png ADDED

Git LFS Details

  • SHA256: 763dc3be16ca985d2193c252f8fec65f1c507fe8d2212c581c8de20660218078
  • Pointer size: 130 Bytes
  • Size of remote file: 87.4 kB
val/o_54/low/1692695336998225.png ADDED

Git LFS Details

  • SHA256: 8185c3080141ec285f24d198f3077af48980cddec164167a1e70da6f6632116b
  • Pointer size: 130 Bytes
  • Size of remote file: 89.6 kB
val/o_54/low/1692695337016770.png ADDED

Git LFS Details

  • SHA256: 86914614f56ad9ac0055c8f92bd38bd144d0b553376d87f9de2e5928d8bcf9a8
  • Pointer size: 130 Bytes
  • Size of remote file: 87.8 kB
val/o_54/low/1692695337387692.png ADDED

Git LFS Details

  • SHA256: 352f5947fa9adebe02f9976ca5b20d34b1439da2874219365cd226fd77e511fd
  • Pointer size: 130 Bytes
  • Size of remote file: 86.7 kB
val/o_54/low/1692695337517515.png ADDED

Git LFS Details

  • SHA256: ed710ab3cf0d3810fe10b94b0ce5ecacca42051f3cbffadd81a736eb788a4fa5
  • Pointer size: 130 Bytes
  • Size of remote file: 84.8 kB
val/o_54/low/1692695337554608.png ADDED

Git LFS Details

  • SHA256: ac43ae8ecfaea84997fecb71e89020716762886acb1dab1bb8d3e43f8618d580
  • Pointer size: 130 Bytes
  • Size of remote file: 87.3 kB
val/o_54/low/1692695337962621.png ADDED

Git LFS Details

  • SHA256: a496408122e33d620c9567365c1e10cfe96f287328a9a7aa70ae5ca23401683f
  • Pointer size: 130 Bytes
  • Size of remote file: 75.1 kB
val/o_54/low/1692695338296451.png ADDED

Git LFS Details

  • SHA256: df590f5966c45d242123b769c6c17d8a1adccf4ca90f4dc1e8d804ec7248bb3a
  • Pointer size: 130 Bytes
  • Size of remote file: 69.2 kB
val/o_54/low/1692695338352089.png ADDED

Git LFS Details

  • SHA256: c5c49d6ccec77fe24468fd22e580ba7fc3215bd514bf2fa0330d0147fb2d1bbf
  • Pointer size: 130 Bytes
  • Size of remote file: 72.7 kB
val/o_54/low/1692695338444819.png ADDED

Git LFS Details

  • SHA256: 35b5235b0ecfe51c94421c03b9b05ab86e9512eea2ecab8092d227fd376828ed
  • Pointer size: 130 Bytes
  • Size of remote file: 65.1 kB
val/o_54/low/1692695338964109.png ADDED

Git LFS Details

  • SHA256: 0eb956a98dd7dd117ca6745fc52dc31c4f851cd39c1b05711c7e66310ffc271a
  • Pointer size: 130 Bytes
  • Size of remote file: 63.7 kB
val/o_54/low/1692695338982655.png ADDED

Git LFS Details

  • SHA256: 35354aa8a88d314c8ffb487de52bdc89021e334c05d985d2907077979d086f42
  • Pointer size: 130 Bytes
  • Size of remote file: 62.4 kB
val/o_54/low/1692695339019748.png ADDED

Git LFS Details

  • SHA256: 2d602959da9564c2e344cd4165c049133646c190722641980fcffaf01d06dcce
  • Pointer size: 130 Bytes
  • Size of remote file: 64.1 kB
val/o_54/low/1692695339056840.png ADDED

Git LFS Details

  • SHA256: d94ef862d3e377bb8ff76ce92687be2b6662a66f69d9b6ae160e70bcd2a5fd2f
  • Pointer size: 130 Bytes
  • Size of remote file: 64.8 kB
val/o_54/low/1692695339075386.png ADDED

Git LFS Details

  • SHA256: 2e6466b32cbf281e8028893effa9e04ff2e75d4c3832eeef9c5f37c13e6d4018
  • Pointer size: 130 Bytes
  • Size of remote file: 62.7 kB
val/o_54/low/1692695339798683.png ADDED

Git LFS Details

  • SHA256: 98e48c28bed0817b1ff7c76caa2eba7a4d98c61ee54fac60d6ba4127553257a7
  • Pointer size: 130 Bytes
  • Size of remote file: 61.2 kB
val/o_54/low/1692695339928506.png ADDED

Git LFS Details

  • SHA256: f37c6609ad1377fb94e4ff8e3434ae59619b9cba3c6b3867f2e6d21e443ac4ee
  • Pointer size: 130 Bytes
  • Size of remote file: 62.3 kB
val/o_54/low/1692695339984144.png ADDED

Git LFS Details

  • SHA256: 5a56373b6cba754242742269a60057aec04358f9817009e502906e565f16d2c7
  • Pointer size: 130 Bytes
  • Size of remote file: 64.2 kB
val/o_54/low/1692695340039783.png ADDED

Git LFS Details

  • SHA256: 971575b1de30053ed3a5d5ed338a03e09ed5d66a39865db72e8f86ecb7e2a45c
  • Pointer size: 130 Bytes
  • Size of remote file: 64.8 kB
val/o_54/low/1692695340151060.png ADDED

Git LFS Details

  • SHA256: b0d7f2f0a02c2e53b616287a7f55dd07b348839042a427409fdcd724459a2b50
  • Pointer size: 130 Bytes
  • Size of remote file: 66.6 kB
val/o_54/low/1692695340540527.png ADDED

Git LFS Details

  • SHA256: 46cb5c563a7481a5e771763d98b8bb71da559bc615fc34dab2434db9f5712bdd
  • Pointer size: 130 Bytes
  • Size of remote file: 68.3 kB
val/o_54/low/1692695340633259.png ADDED

Git LFS Details

  • SHA256: 585ea9e978099168e9b7c570c00ee98ad6187d271cfa48e9ff47dfd52ae02485
  • Pointer size: 130 Bytes
  • Size of remote file: 70 kB
val/o_54/low/1692695341171095.png ADDED

Git LFS Details

  • SHA256: 171e33c565a84e22c09b765b06b9ea87cb97da95973f070490768d33f7f87b44
  • Pointer size: 130 Bytes
  • Size of remote file: 82.3 kB
val/o_54/low/1692695341375101.png ADDED

Git LFS Details

  • SHA256: 693a6c2e18e9d1fca7e18f4f6d2164e9a9da528797f3e45ef0eef40587a6c543
  • Pointer size: 130 Bytes
  • Size of remote file: 83.3 kB
val/o_54/low/1692695342005668.png ADDED

Git LFS Details

  • SHA256: 0026b59ff25fdbb506f1d7787f5a711362f29cd1fd147a39313890481e60c5db
  • Pointer size: 130 Bytes
  • Size of remote file: 90.9 kB
val/o_54/low/1692695342376590.png ADDED

Git LFS Details

  • SHA256: 326c096e55f73a9ba42a09f234206e91f02a5ed4a517336e4a536b125067c359
  • Pointer size: 130 Bytes
  • Size of remote file: 91.8 kB
val/o_54/low/1692695342432229.png ADDED

Git LFS Details

  • SHA256: 8f57a8b28943f248c0a161d7cf373f71d10521a239801d3d2a9eef9652b95a55
  • Pointer size: 130 Bytes
  • Size of remote file: 95.7 kB
val/o_54/low/1692695342617690.png ADDED

Git LFS Details

  • SHA256: d29df36036cc4838b8f56b5092f750c15e223da857623e87fa01c1c827a234ee
  • Pointer size: 130 Bytes
  • Size of remote file: 97.5 kB
val/o_54/low/1692695342821697.png ADDED

Git LFS Details

  • SHA256: e39a4d262cf451da41c75b497ce057ff78478ede2925e22f3bb568aa026e56cd
  • Pointer size: 130 Bytes
  • Size of remote file: 89.7 kB
val/o_54/low/1692695343452263.png ADDED

Git LFS Details

  • SHA256: a5b18d702f83dbd7e366fab4858edd9b5aa2271df77c3ca8ad7df60082486fec
  • Pointer size: 130 Bytes
  • Size of remote file: 91.4 kB
val/o_54/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 520,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 520,
10
+ "low_event_rows": 14649432,
11
+ "low_frame_count": 520,
12
+ "normal_frame_count": 520,
13
+ "release": "sde_out_release",
14
+ "scene": "o_54",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_66/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 232,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 232,
10
+ "low_event_rows": 10586039,
11
+ "low_frame_count": 232,
12
+ "normal_frame_count": 232,
13
+ "release": "sde_out_release",
14
+ "scene": "o_66",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_72/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 192,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 192,
10
+ "low_event_rows": 7876135,
11
+ "low_frame_count": 192,
12
+ "normal_frame_count": 192,
13
+ "release": "sde_out_release",
14
+ "scene": "o_72",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }
val/o_9/manifest.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "depth_shape": [
3
+ 265,
4
+ 260,
5
+ 346,
6
+ 1
7
+ ],
8
+ "depth_source_file": "depth.npz",
9
+ "low_event_frame_files": 265,
10
+ "low_event_rows": 4316905,
11
+ "low_frame_count": 265,
12
+ "normal_frame_count": 265,
13
+ "release": "sde_out_release",
14
+ "scene": "o_9",
15
+ "source_split": "train",
16
+ "split": "val"
17
+ }