Add paper and code links, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +71 -15
README.md CHANGED
@@ -1,22 +1,24 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  task_categories:
4
- - image-to-3d
5
- tags:
6
- - physical-ai
7
- - nurec
8
- - 3d-reconstruction
9
- - novel-view-synthesis
10
- - radiance-fields
11
- - photometric-calibration
12
- - ncore
13
  pretty_name: PPISP Dataset
14
- size_categories:
15
- - 1K<n<10K
 
 
 
 
 
 
16
  ---
17
 
18
  # PPISP Dataset
19
 
 
 
20
  ## Dataset Description:
21
  The PPISP dataset accompanies the work "PPISP: Physically-Plausible Compensation and Control of Photometric Variations in Radiance Field Reconstruction". It contains object-centric scene captures of four outdoor scenes, each captured with three different cameras, for multi-view 3D reconstruction and novel view synthesis. The photos were captured with exposure bracketing of +/-2 EV and re-processed with automatic exposure and color corrections to create a challenging benchmark for methods that compensate for photometric inconsistencies.
22
 
@@ -26,6 +28,49 @@ The dataset is provided in two formats: COLMAP (`colmap/`) and NCore V4 (`ncore/
26
 
27
  This dataset is ready for commercial/non-commercial use.
28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  ## Dataset Owner(s):
30
  NVIDIA Corporation
31
 
@@ -58,9 +103,20 @@ We used COLMAP to reconstruct camera poses and a sparse point cloud for each seq
58
 
59
  Measurement of total data storage: About 14.3 GB in compressed form (8.1 GB COLMAP format + 6.2 GB NCore V4 format).
60
 
61
- ## Reference(s):
62
- [Project Page](https://research.nvidia.com/labs/sil/projects/ppisp/)
 
 
 
 
 
 
 
 
 
 
 
63
 
64
  ## Ethical Considerations:
65
- NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal team to ensure this dataset meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
66
- Please report quality, risk, security vulnerabilities or NVIDIA AI Concerns here.
 
1
  ---
2
  license: cc-by-4.0
3
+ size_categories:
4
+ - 1K<n<10K
5
  task_categories:
6
+ - image-to-3d
 
 
 
 
 
 
 
 
7
  pretty_name: PPISP Dataset
8
+ tags:
9
+ - physical-ai
10
+ - nurec
11
+ - 3d-reconstruction
12
+ - novel-view-synthesis
13
+ - radiance-fields
14
+ - photometric-calibration
15
+ - ncore
16
  ---
17
 
18
  # PPISP Dataset
19
 
20
+ [**Project Page**](https://research.nvidia.com/labs/sil/projects/ppisp/) | [**Paper**](https://huggingface.co/papers/2601.18336) | [**Code**](https://github.com/nv-tlabs/ppisp)
21
+
22
  ## Dataset Description:
23
  The PPISP dataset accompanies the work "PPISP: Physically-Plausible Compensation and Control of Photometric Variations in Radiance Field Reconstruction". It contains object-centric scene captures of four outdoor scenes, each captured with three different cameras, for multi-view 3D reconstruction and novel view synthesis. The photos were captured with exposure bracketing of +/-2 EV and re-processed with automatic exposure and color corrections to create a challenging benchmark for methods that compensate for photometric inconsistencies.
24
 
 
28
 
29
  This dataset is ready for commercial/non-commercial use.
30
 
31
+ ## Sample Usage
32
+
33
+ The following snippet demonstrates how to integrate the PPISP module into a radiance field reconstruction pipeline, as described in the official repository:
34
+
35
+ ```python
36
+ from ppisp import PPISP, PPISPConfig
37
+
38
+ # 1. Initialize
39
+ ppisp = PPISP(num_cameras=3, num_frames=500)
40
+
41
+ # 2. Create optimizers and scheduler
42
+ ppisp_optimizers = ppisp.create_optimizers()
43
+ ppisp_schedulers = ppisp.create_schedulers(ppisp_optimizers, max_optimization_iters)
44
+
45
+ # 3. Training loop
46
+ for step in range(max_optimization_iters):
47
+ # Render raw RGB from your radiance field
48
+ rgb_raw = renderer(camera_idx, frame_idx) # [..., 3]
49
+
50
+ # Apply PPISP post-processing
51
+ rgb_out = ppisp(
52
+ rgb_raw,
53
+ pixel_coords, # [..., 2]
54
+ resolution=(W, H),
55
+ camera_idx=camera_idx,
56
+ frame_idx=frame_idx,
57
+ )
58
+
59
+ # Add PPISP regularization loss to other losses
60
+ loss = reconstruction_loss(rgb_out, rgb_gt) + ppisp.get_regularization_loss()
61
+ loss.backward()
62
+
63
+ # Step optimizers and scheduler
64
+ for opt in ppisp_optimizers:
65
+ opt.step()
66
+ opt.zero_grad(set_to_none=True)
67
+ for sched in ppisp_schedulers:
68
+ sched.step()
69
+
70
+ # 4. Novel view rendering: pass camera_idx as usual, frame_idx=-1
71
+ rgb_out = ppisp(rgb_raw, pixel_coords, resolution=(W, H), camera_idx=camera_idx, frame_idx=-1)
72
+ ```
73
+
74
  ## Dataset Owner(s):
75
  NVIDIA Corporation
76
 
 
103
 
104
  Measurement of total data storage: About 14.3 GB in compressed form (8.1 GB COLMAP format + 6.2 GB NCore V4 format).
105
 
106
+ ## Citation
107
+
108
+ ```bibtex
109
+ @misc{deutsch2026ppispphysicallyplausiblecompensationcontrol,
110
+ title={PPISP: Physically-Plausible Compensation and Control of Photometric Variations in Radiance Field Reconstruction},
111
+ author={Isaac Deutsch and Nicolas Moënne-Loccoz and Gavriel State and Zan Gojcic},
112
+ year={2026},
113
+ eprint={2601.18336},
114
+ archivePrefix={arXiv},
115
+ primaryClass={cs.CV},
116
+ url={https://arxiv.org/abs/2601.18336},
117
+ }
118
+ ```
119
 
120
  ## Ethical Considerations:
121
+ NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal team to ensure this dataset meets requirements for the relevant industry and use case and addresses unforeseen product misuse.
122
+ Please report quality, risk, security vulnerabilities or NVIDIA AI Concerns here.