shuinb commited on
Commit
334d9dd
·
verified ·
1 Parent(s): f0fabf1

Add task-specific repository data formats

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -91,6 +91,20 @@ Evaluation follows point-cloud geometry metrics after back-projecting predicted
91
  - Chamfer Distance (CD, meters).
92
  - Recall under temporal-bin tolerances of `1`, `3`, and `5` bins.
93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
94
  ### Task 2: Multi-view 3D Reconstruction
95
 
96
  ![Multi-view reconstruction qualitative results](fig/Multi-view%20reconstruction.png)
@@ -115,6 +129,29 @@ Reported metrics cover three output domains:
115
  - Depth rendering: per-pixel `L1` error over valid pixels.
116
  - Histogram rendering: PSNR for methods that explicitly render transient histograms.
117
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  ### Task 3: 3D Semantic Segmentation
119
 
120
  ![Semantic segmentation qualitative results](fig/Semantic%20Segmentation.png)
@@ -140,6 +177,34 @@ The semantic subset contains `10,297` frames captured across `27` sequences and
140
 
141
  The benchmark uses `13` semantic classes. Evaluation reports Overall Accuracy (OA) and mean Intersection-over-Union (mIoU), averaged over three random seeds in the paper protocol.
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143
  ## Semantic Annotation Format
144
 
145
  ![Annotation pipeline](fig/annotation_pipeline.png)
 
91
  - Chamfer Distance (CD, meters).
92
  - Recall under temporal-bin tolerances of `1`, `3`, and `5` bins.
93
 
94
+ #### Repository data format
95
+
96
+ ```text
97
+ DepthEstimate/
98
+ Histgram/
99
+ 1.txt ... 10.txt
100
+ gt/
101
+ 1.csv ... 10.csv
102
+ ```
103
+
104
+ - `DepthEstimate/Histgram/{id}.txt` stores the SPAD transient input for one depth-estimation sample. Each non-empty line is a whitespace-separated photon-count vector with `672` temporal bins. The valid pixel rows correspond to the flattened `256 x 192` SPL image grid.
105
+ - `DepthEstimate/gt/{id}.csv` stores the corresponding Livox reference point cloud. The CSV header includes `Timestamp`, metric coordinates `X,Y,Z`, `Reflectivity`, and original Livox fields such as `Ori_x,Ori_y,Ori_z`.
106
+ - Matching sample ids are used across `Histgram/` and `gt/`, e.g. `Histgram/1.txt` pairs with `gt/1.csv`.
107
+
108
  ### Task 2: Multi-view 3D Reconstruction
109
 
110
  ![Multi-view reconstruction qualitative results](fig/Multi-view%20reconstruction.png)
 
129
  - Depth rendering: per-pixel `L1` error over valid pixels.
130
  - Histogram rendering: PSNR for methods that explicitly render transient histograms.
131
 
132
+ #### Repository data format
133
+
134
+ ```text
135
+ Reconstruction/
136
+ AI_floor2.zip
137
+ artbuilding_floor2.zip
138
+ c4floor2.zip
139
+ design_floor1.zip
140
+ library_floor2.zip
141
+ material_building.zip
142
+ parking.zip
143
+ physics_building2.zip
144
+ physics_building3.zip
145
+
146
+ config/
147
+ config.yaml
148
+ ```
149
+
150
+ - Each file under `Reconstruction/` is one compressed scene package for multi-view reconstruction.
151
+ - The scene package contains the per-view transient observations and the metadata needed by the reconstruction benchmark for that location.
152
+ - `config/config.yaml` provides common sensor settings and SPL calibration parameters used when parsing the released data, including `dt_ps: 750`, `image_sizes: [256, 192]`, and calibrated intrinsics/distortion parameters for `p1` and `p2`.
153
+ - Benchmark experiments select `3`, `5`, or `10` views from a scene package as input views and reserve the remaining views for novel-view evaluation.
154
+
155
  ### Task 3: 3D Semantic Segmentation
156
 
157
  ![Semantic segmentation qualitative results](fig/Semantic%20Segmentation.png)
 
177
 
178
  The benchmark uses `13` semantic classes. Evaluation reports Overall Accuracy (OA) and mean Intersection-over-Union (mIoU), averaged over three random seeds in the paper protocol.
179
 
180
+ #### Repository data format
181
+
182
+ ```text
183
+ Annotations/
184
+ p1/
185
+ Sequence1.zip ... Sequence20.zip
186
+ p2/
187
+ Sequence21.zip ... Sequence27.zip
188
+
189
+ Histgram/
190
+ p1.zip
191
+ p2.zip
192
+ depth_maps/
193
+ P1_Sequence1_depth.png ... P1_Sequence20_depth.png
194
+ P2_Sequence21_depth.png ... P2_Sequence27_depth.png
195
+
196
+ config/
197
+ config.yaml
198
+ ```
199
+
200
+ - `Annotations/p1/` contains semantic annotation packages for sequences captured by SPL device `p1`.
201
+ - `Annotations/p2/` contains semantic annotation packages for sequences captured by SPL device `p2`.
202
+ - Inside each sequence zip, semantic labels are stored as `.npy` arrays named like `RawDataHistogramMap_frame_*_semantic.npy`.
203
+ - Each semantic array has shape `(49152, 672)`, where `49152 = 256 x 192` flattened pixels and `672` is the number of temporal bins. Values are `uint8` semantic ids, with `0` used for unlabeled/background bins and `1-13` for semantic classes.
204
+ - `Histgram/p1.zip` and `Histgram/p2.zip` store the corresponding raw histogram data for the semantic sequences.
205
+ - `Histgram/depth_maps/` provides sequence-level depth-map PNG files aligned with the `P1_Sequence*` and `P2_Sequence*` naming convention.
206
+ - `config/config.yaml` contains the calibrated intrinsics for both SPL devices. The semantic track uses both `p1` and `p2`, while the depth and reconstruction tracks use the relevant device calibration required by their data.
207
+
208
  ## Semantic Annotation Format
209
 
210
  ![Annotation pipeline](fig/annotation_pipeline.png)