ageppert commited on
Commit
36a1cd3
·
verified ·
1 Parent(s): 4e195d7

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +105 -0
  2. completed_chunks.txt +55 -0
  3. metadata.json +10 -0
  4. test/basement/000000_measurement.png +3 -0
  5. test/basement/000001_measurement.png +3 -0
  6. test/basement/000002_measurement.png +3 -0
  7. test/basement/000003_measurement.png +3 -0
  8. test/basement/000004_measurement.png +3 -0
  9. test/basement/000005_measurement.png +3 -0
  10. test/basement/000006_measurement.png +3 -0
  11. test/basement/000007_measurement.png +3 -0
  12. test/basement/000008_measurement.png +3 -0
  13. test/basement/000009_measurement.png +3 -0
  14. test/basement/000010_measurement.png +3 -0
  15. test/basement/000011_measurement.png +3 -0
  16. test/basement/000012_measurement.png +3 -0
  17. test/basement/000013_measurement.png +3 -0
  18. test/basement/000014_measurement.png +3 -0
  19. test/basement/000015_measurement.png +3 -0
  20. test/basement/000016_measurement.png +3 -0
  21. test/basement/000017_measurement.png +3 -0
  22. test/basement/000018_measurement.png +3 -0
  23. test/basement/000019_measurement.png +3 -0
  24. test/basement/000020_measurement.png +3 -0
  25. test/basement/000021_measurement.png +3 -0
  26. test/basement/000022_measurement.png +3 -0
  27. test/basement/000023_measurement.png +3 -0
  28. test/basement/000024_measurement.png +3 -0
  29. test/basement/000025_measurement.png +3 -0
  30. test/basement/000026_measurement.png +3 -0
  31. test/basement/000027_measurement.png +3 -0
  32. test/basement/000028_measurement.png +3 -0
  33. test/basement/000029_measurement.png +3 -0
  34. test/basement/000030_measurement.png +3 -0
  35. test/basement/000031_measurement.png +3 -0
  36. test/basement/000032_measurement.png +3 -0
  37. test/basement/000033_measurement.png +3 -0
  38. test/basement/000034_measurement.png +3 -0
  39. test/basement/000035_measurement.png +3 -0
  40. test/basement/000036_measurement.png +3 -0
  41. test/bedroom-interior/000000_measurement.png +3 -0
  42. test/bedroom-interior/000001_measurement.png +3 -0
  43. test/bedroom-interior/000002_measurement.png +3 -0
  44. test/bedroom-interior/000003_measurement.png +3 -0
  45. test/bedroom-interior/000004_measurement.png +3 -0
  46. test/bedroom-interior/000005_measurement.png +3 -0
  47. test/bedroom-interior/000006_measurement.png +3 -0
  48. test/bedroom-interior/000007_measurement.png +3 -0
  49. test/bedroom-interior/000008_measurement.png +3 -0
  50. test/bedroom-interior/000009_measurement.png +3 -0
README.md ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-image
5
+ tags:
6
+ - single-photon
7
+ - denoising
8
+ - computational-imaging
9
+ - diffusion
10
+ pretty_name: Single Photon Challenge - Full Preprocessed
11
+ ---
12
+
13
+ # Single Photon Challenge — Full Preprocessed Dataset
14
+
15
+ Preprocessed measurement/target PNG pairs derived from the
16
+ [Single Photon Challenge](https://singlephotonchallenge.com/) reconstruction dataset.
17
+
18
+ ## Source
19
+
20
+ The raw dataset (~425GB training, ~42GB test) is hosted by the
21
+ [WISION Lab](https://wisionlab.com/) at UW-Madison. Photoncubes contain 1024
22
+ binary frames from a simulated single-photon camera, paired with ground-truth
23
+ RGB reconstructions.
24
+
25
+ - **Challenge website:** <https://singlephotonchallenge.com/>
26
+ - **Download page:** <https://singlephotonchallenge.com/download>
27
+ - **VisionSIM toolkit:** <https://visionsim.readthedocs.io/>
28
+
29
+ ## Preprocessing pipeline
30
+
31
+ Each photoncube was preprocessed using the same approach as the
32
+ [challenge FAQ naive sum](https://singlephotonchallenge.com/faq):
33
+
34
+ 1. **Average** the last 16 binary frames → detection probability in [0, 1]
35
+ 2. **Invert SPC response** (`invert_response=True`, `factor=0.5`)
36
+ → linear RGB flux via `flux = -log(1 - p) / factor`
37
+ 3. **sRGB tonemap** (`tonemap=True`) → standard gamma curve
38
+ 4. **Save** as uint8 PNG
39
+
40
+ Measurements and targets are stored as 800×800 RGB PNGs.
41
+
42
+ ## Dataset statistics
43
+
44
+ | Split | Measurements | Targets | Paired |
45
+ |-------|-------------|---------|--------|
46
+ | train | 1850 | 1850 | yes |
47
+ | test | 185 | 0 | no (test set has no ground truth) |
48
+ | **total** | **2035** | **1850** | |
49
+
50
+ ## Directory structure
51
+
52
+ ```
53
+ single_photon_challenge_full_preprocessed/
54
+ metadata.json
55
+ train/
56
+ <scene>/<frame>_measurement.png
57
+ <scene>/<frame>_target.png
58
+ test/
59
+ <scene>/<frame>_measurement.png
60
+ ```
61
+
62
+ ## Usage
63
+
64
+ ```python
65
+ from huggingface_hub import snapshot_download
66
+
67
+ # Download the full preprocessed dataset
68
+ root = snapshot_download(
69
+ repo_id="ageppert/single_photon_challenge_full_preprocessed",
70
+ repo_type="dataset",
71
+ )
72
+
73
+ # Or use with the diffusion training codebase:
74
+ # Set in config.py:
75
+ # PREPROCESSED_DATA_CONFIG["dataset_source"] = "hf"
76
+ # PREPROCESSED_DATA_CONFIG["dataset_hf_repo"] = "ageppert/single_photon_challenge_full_preprocessed"
77
+ ```
78
+
79
+ ## Preprocessing parameters
80
+
81
+ ```json
82
+ {
83
+ "source": "Single Photon Challenge reconstruction dataset",
84
+ "source_url": "https://singlephotonchallenge.com/download",
85
+ "num_frames": 16,
86
+ "invert_response": true,
87
+ "invert_factor": 0.5,
88
+ "tonemap": true,
89
+ "split": "all",
90
+ "notes": "Measurements are preprocessed from raw photoncubes using: naive sum averaging, SPC response inversion, and sRGB tonemapping. Saved as uint8 PNGs. Targets are copied from original ground-truth PNGs."
91
+ }
92
+ ```
93
+
94
+ ## Citation
95
+
96
+ If you use this dataset, please cite the Single Photon Challenge:
97
+
98
+ ```
99
+ @misc{singlephotonchallenge,
100
+ title={The Single Photon Challenge},
101
+ author={Jungerman, Sacha and Ingle, Atul and Nousias, Sotiris and Wei, Mian and White, Mel and Gupta, Mohit},
102
+ year={2025},
103
+ url={https://singlephotonchallenge.com/}
104
+ }
105
+ ```
completed_chunks.txt ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ challenges/reconstruction/test_0.zip
2
+ challenges/reconstruction/test_1.zip
3
+ challenges/reconstruction/test_2.zip
4
+ challenges/reconstruction/test_3.zip
5
+ challenges/reconstruction/test_4.zip
6
+ challenges/reconstruction/train_0.zip
7
+ challenges/reconstruction/train_1.zip
8
+ challenges/reconstruction/train_10.zip
9
+ challenges/reconstruction/train_11.zip
10
+ challenges/reconstruction/train_12.zip
11
+ challenges/reconstruction/train_13.zip
12
+ challenges/reconstruction/train_14.zip
13
+ challenges/reconstruction/train_15.zip
14
+ challenges/reconstruction/train_16.zip
15
+ challenges/reconstruction/train_17.zip
16
+ challenges/reconstruction/train_18.zip
17
+ challenges/reconstruction/train_19.zip
18
+ challenges/reconstruction/train_2.zip
19
+ challenges/reconstruction/train_20.zip
20
+ challenges/reconstruction/train_21.zip
21
+ challenges/reconstruction/train_22.zip
22
+ challenges/reconstruction/train_23.zip
23
+ challenges/reconstruction/train_24.zip
24
+ challenges/reconstruction/train_25.zip
25
+ challenges/reconstruction/train_26.zip
26
+ challenges/reconstruction/train_27.zip
27
+ challenges/reconstruction/train_28.zip
28
+ challenges/reconstruction/train_29.zip
29
+ challenges/reconstruction/train_3.zip
30
+ challenges/reconstruction/train_30.zip
31
+ challenges/reconstruction/train_31.zip
32
+ challenges/reconstruction/train_32.zip
33
+ challenges/reconstruction/train_33.zip
34
+ challenges/reconstruction/train_34.zip
35
+ challenges/reconstruction/train_35.zip
36
+ challenges/reconstruction/train_36.zip
37
+ challenges/reconstruction/train_37.zip
38
+ challenges/reconstruction/train_38.zip
39
+ challenges/reconstruction/train_39.zip
40
+ challenges/reconstruction/train_4.zip
41
+ challenges/reconstruction/train_40.zip
42
+ challenges/reconstruction/train_41.zip
43
+ challenges/reconstruction/train_42.zip
44
+ challenges/reconstruction/train_43.zip
45
+ challenges/reconstruction/train_44.zip
46
+ challenges/reconstruction/train_45.zip
47
+ challenges/reconstruction/train_46.zip
48
+ challenges/reconstruction/train_47.zip
49
+ challenges/reconstruction/train_48.zip
50
+ challenges/reconstruction/train_49.zip
51
+ challenges/reconstruction/train_5.zip
52
+ challenges/reconstruction/train_6.zip
53
+ challenges/reconstruction/train_7.zip
54
+ challenges/reconstruction/train_8.zip
55
+ challenges/reconstruction/train_9.zip
metadata.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "source": "Single Photon Challenge reconstruction dataset",
3
+ "source_url": "https://singlephotonchallenge.com/download",
4
+ "num_frames": 16,
5
+ "invert_response": true,
6
+ "invert_factor": 0.5,
7
+ "tonemap": true,
8
+ "split": "all",
9
+ "notes": "Measurements are preprocessed from raw photoncubes using: naive sum averaging, SPC response inversion, and sRGB tonemapping. Saved as uint8 PNGs. Targets are copied from original ground-truth PNGs."
10
+ }
test/basement/000000_measurement.png ADDED

Git LFS Details

  • SHA256: dd366197507bfe8566b9a066b544a3906107d1684c69abcd219292c7287c342f
  • Pointer size: 131 Bytes
  • Size of remote file: 333 kB
test/basement/000001_measurement.png ADDED

Git LFS Details

  • SHA256: 2dd710d633252d23f89076b3646bf153a7ef61da56fd63acbece15da2302596d
  • Pointer size: 131 Bytes
  • Size of remote file: 387 kB
test/basement/000002_measurement.png ADDED

Git LFS Details

  • SHA256: bba50675da1dd5285594ca2de9e558b05a32c734bef33fb1acd4acc608c3faf6
  • Pointer size: 131 Bytes
  • Size of remote file: 358 kB
test/basement/000003_measurement.png ADDED

Git LFS Details

  • SHA256: dabce43f0f2bd7a2d7fc62384212495c07ba901ac5dfc029cd4a9c0477448740
  • Pointer size: 131 Bytes
  • Size of remote file: 524 kB
test/basement/000004_measurement.png ADDED

Git LFS Details

  • SHA256: 8685aa62a00d9cf8834bbb8b89d010f770855eed254fe996bdd380801598a797
  • Pointer size: 131 Bytes
  • Size of remote file: 443 kB
test/basement/000005_measurement.png ADDED

Git LFS Details

  • SHA256: d10730abbc10a7387a421e81c6d19b2b137c6c0b937dca36a1047beb46c729ab
  • Pointer size: 131 Bytes
  • Size of remote file: 200 kB
test/basement/000006_measurement.png ADDED

Git LFS Details

  • SHA256: 0d840ccf46dd2b520c8a0b2b06cebbeff6b1755d8cf1cd4691e7a3182fea195e
  • Pointer size: 131 Bytes
  • Size of remote file: 212 kB
test/basement/000007_measurement.png ADDED

Git LFS Details

  • SHA256: 57fbbc6ccdfe892fdc325a0e0d9932c08fd2e714ad7013525c943cc203356627
  • Pointer size: 131 Bytes
  • Size of remote file: 104 kB
test/basement/000008_measurement.png ADDED

Git LFS Details

  • SHA256: ea66abd5eeef6a4e2abc8472117d2d532682d98c2a6e5141e0566405fd0e2252
  • Pointer size: 131 Bytes
  • Size of remote file: 145 kB
test/basement/000009_measurement.png ADDED

Git LFS Details

  • SHA256: 062c654bda04e81b8aa354839bb73b6410fd78a4b92201675ad2fcf4d261e12c
  • Pointer size: 131 Bytes
  • Size of remote file: 236 kB
test/basement/000010_measurement.png ADDED

Git LFS Details

  • SHA256: 3e03b8c9e5897a9fc3f068112e4b5800216c82df7ffb2be00af790fff324b1ec
  • Pointer size: 131 Bytes
  • Size of remote file: 312 kB
test/basement/000011_measurement.png ADDED

Git LFS Details

  • SHA256: 5d58b24d2f00791cad9d030b428b1bb7c856deadca8907211ea14464ed3eb58d
  • Pointer size: 131 Bytes
  • Size of remote file: 451 kB
test/basement/000012_measurement.png ADDED

Git LFS Details

  • SHA256: f99c8d3ad939840e09cd48db5e21b7fcba63708c761cd7460827926b0360b545
  • Pointer size: 131 Bytes
  • Size of remote file: 306 kB
test/basement/000013_measurement.png ADDED

Git LFS Details

  • SHA256: 154a3eee09d44c692f070dd17953d14153ca20914e933b6cfd3287c802d5adfa
  • Pointer size: 131 Bytes
  • Size of remote file: 653 kB
test/basement/000014_measurement.png ADDED

Git LFS Details

  • SHA256: 7ce8755aa2785138b81c5a38e042fcdfa9af3f712c1f868649c6db4bde175ff6
  • Pointer size: 131 Bytes
  • Size of remote file: 644 kB
test/basement/000015_measurement.png ADDED

Git LFS Details

  • SHA256: e66dd889527b52e72dca72076020f05c9c76095f420ed06753f356a92cb556d3
  • Pointer size: 131 Bytes
  • Size of remote file: 306 kB
test/basement/000016_measurement.png ADDED

Git LFS Details

  • SHA256: 9d62f7eab3c92aeb0c3bf53c5aadb81b8a975b314f213683fe6d28965345a7d6
  • Pointer size: 131 Bytes
  • Size of remote file: 256 kB
test/basement/000017_measurement.png ADDED

Git LFS Details

  • SHA256: 1b999c8fb8edb9011489b205ece89bedc14a33ccb55d87ae4136aade1aa7ad4d
  • Pointer size: 131 Bytes
  • Size of remote file: 155 kB
test/basement/000018_measurement.png ADDED

Git LFS Details

  • SHA256: df95102b24c29dd3b252e992395dd5bafb18f3da300f0dd7ea9bb784d8cc4472
  • Pointer size: 131 Bytes
  • Size of remote file: 273 kB
test/basement/000019_measurement.png ADDED

Git LFS Details

  • SHA256: d3983e9bf7c0835eabfd9f5f4080649138c8d34e94b98f64d7929f5f9d482c35
  • Pointer size: 131 Bytes
  • Size of remote file: 335 kB
test/basement/000020_measurement.png ADDED

Git LFS Details

  • SHA256: bde1cc4b7ed95e1e8d3dff851dd6fcac8f9ff783c2bed31af9a42b873c994bbe
  • Pointer size: 131 Bytes
  • Size of remote file: 303 kB
test/basement/000021_measurement.png ADDED

Git LFS Details

  • SHA256: ff5c9281bed6e5b704ccee19445ee59272d19eca1eff12024dbdaf696cab675b
  • Pointer size: 131 Bytes
  • Size of remote file: 156 kB
test/basement/000022_measurement.png ADDED

Git LFS Details

  • SHA256: 8f27ccba8fd2bb53de6062a0de8a7949ff7a6e70eab611d578b863e2c71fc0ae
  • Pointer size: 131 Bytes
  • Size of remote file: 118 kB
test/basement/000023_measurement.png ADDED

Git LFS Details

  • SHA256: 0c46850fef99bc79e01d0ffd878362afe87a2e839b25155da007e9cb9f2c2ab1
  • Pointer size: 131 Bytes
  • Size of remote file: 172 kB
test/basement/000024_measurement.png ADDED

Git LFS Details

  • SHA256: 6bdaa4834236fac24633c848a3657a90f1cb10de2d63e6708ba6b0efc5fef47c
  • Pointer size: 131 Bytes
  • Size of remote file: 171 kB
test/basement/000025_measurement.png ADDED

Git LFS Details

  • SHA256: 297b903d1a275102ae8dae4cea31a3c27a6eb9f5493ead0f3c2793400d740731
  • Pointer size: 131 Bytes
  • Size of remote file: 205 kB
test/basement/000026_measurement.png ADDED

Git LFS Details

  • SHA256: 2679d50883bf2d5dbc5d5b1339b4acffb00907586615e48b256c0ef3ebf87c69
  • Pointer size: 131 Bytes
  • Size of remote file: 233 kB
test/basement/000027_measurement.png ADDED

Git LFS Details

  • SHA256: 305478c9ec2c8834ec6ee42f15bd1e06ab45d20f92c9426fb1d2f35279ca59d8
  • Pointer size: 131 Bytes
  • Size of remote file: 235 kB
test/basement/000028_measurement.png ADDED

Git LFS Details

  • SHA256: f7c89cc51d8bb4778798a824507856b9b2adcd648bbf3b1df640f874e9b52c6b
  • Pointer size: 131 Bytes
  • Size of remote file: 227 kB
test/basement/000029_measurement.png ADDED

Git LFS Details

  • SHA256: 9565e0a43b3c74b74e99da9262cc3c81c56cf58062e0003de2b6a7f67c0c6d46
  • Pointer size: 131 Bytes
  • Size of remote file: 114 kB
test/basement/000030_measurement.png ADDED

Git LFS Details

  • SHA256: df9cd5599bcc2f56fd75d4db3ba83cf1afd6c4300be44315853f51f640ece801
  • Pointer size: 131 Bytes
  • Size of remote file: 101 kB
test/basement/000031_measurement.png ADDED

Git LFS Details

  • SHA256: 96c545b6e9939b8eb771011b2e5ca06b65ef858cc0ba971b75c5cabb96d58da7
  • Pointer size: 131 Bytes
  • Size of remote file: 155 kB
test/basement/000032_measurement.png ADDED

Git LFS Details

  • SHA256: fd94fc2a7650de677a0fe17c6e87548f2f4fa562776bf35231dffdfaccb37ee1
  • Pointer size: 131 Bytes
  • Size of remote file: 235 kB
test/basement/000033_measurement.png ADDED

Git LFS Details

  • SHA256: 3f5f349d1684dfaec4be09174353e2f5a8aa3214596701eba37f4f125c658d21
  • Pointer size: 131 Bytes
  • Size of remote file: 215 kB
test/basement/000034_measurement.png ADDED

Git LFS Details

  • SHA256: 34ed6d9c7019762e0ff394a548d724d44cd3ca6f0f09787b9d73c735db54c5aa
  • Pointer size: 131 Bytes
  • Size of remote file: 345 kB
test/basement/000035_measurement.png ADDED

Git LFS Details

  • SHA256: 7ef95c9b2b4cc119d474b44857bdbd7e4b92709654b3cbdfee0acc308ea67e8d
  • Pointer size: 131 Bytes
  • Size of remote file: 153 kB
test/basement/000036_measurement.png ADDED

Git LFS Details

  • SHA256: d8f42a3093c9b83af59e2ea6ad454b13454a47dc64dd8ad5d4bc95e74422996a
  • Pointer size: 130 Bytes
  • Size of remote file: 78.4 kB
test/bedroom-interior/000000_measurement.png ADDED

Git LFS Details

  • SHA256: 86cf249511442c03ee5ab19d3ef5b945077bd7b958a2a70e3fe274a2e0a2d844
  • Pointer size: 132 Bytes
  • Size of remote file: 1.07 MB
test/bedroom-interior/000001_measurement.png ADDED

Git LFS Details

  • SHA256: 32ba2744264d1163f6dc2476b90499f630d5f7526ef8a2c38eef5e5f1f1f35b9
  • Pointer size: 132 Bytes
  • Size of remote file: 1.08 MB
test/bedroom-interior/000002_measurement.png ADDED

Git LFS Details

  • SHA256: 56e07651bd2b26f068ad3dc2580899ba2372c94ffd6b282ad780de79e5b638a0
  • Pointer size: 132 Bytes
  • Size of remote file: 1.13 MB
test/bedroom-interior/000003_measurement.png ADDED

Git LFS Details

  • SHA256: 40c148594241570a0571c9c918b4811eb936b45c97683ab3f766ec8ce11b10a1
  • Pointer size: 132 Bytes
  • Size of remote file: 1.12 MB
test/bedroom-interior/000004_measurement.png ADDED

Git LFS Details

  • SHA256: 8c60874b6dd0121516d9de449f56f65e7ca9872f719680d6edb6bc50a666d98e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.08 MB
test/bedroom-interior/000005_measurement.png ADDED

Git LFS Details

  • SHA256: afc47eb87c9e594a4988b2a435cd9eefba25ad049a1bd514ab9a6833324e380f
  • Pointer size: 132 Bytes
  • Size of remote file: 1.05 MB
test/bedroom-interior/000006_measurement.png ADDED

Git LFS Details

  • SHA256: 1c18ad1a3c8225f856a2fb8b5105bfae31719753c169ef752306347ef744fc9b
  • Pointer size: 131 Bytes
  • Size of remote file: 923 kB
test/bedroom-interior/000007_measurement.png ADDED

Git LFS Details

  • SHA256: 7a69010cb79a0f0b91ab7e4ac1972e8b4e7c5cb02c73c2ca211db788a4c7ba79
  • Pointer size: 131 Bytes
  • Size of remote file: 976 kB
test/bedroom-interior/000008_measurement.png ADDED

Git LFS Details

  • SHA256: 4b7f5ee9dae8e51cce3fd11b3fe146513b278175fb013070f0218620b4761eda
  • Pointer size: 132 Bytes
  • Size of remote file: 1.13 MB
test/bedroom-interior/000009_measurement.png ADDED

Git LFS Details

  • SHA256: d30a9e526b22e949d2b65f4313b3e8945a6a815ba32eb1ffe2916e95441dd24e
  • Pointer size: 132 Bytes
  • Size of remote file: 1.09 MB