Assignment 3. Volume Rendering and Neural Radiance Fields

Course: 16-889 Learning for 3D Vision

Name: Soyong Shin

Due by: Mar. 17 (Thu)

I used 5 late day for this assignment

Contents:

1. Differentiable Volume Rendering

1.3. Ray sampling (10 points)

Code implementation at ray_utils.py

Figure 1. Visualization of XY grid
Figure 2. Visualization of ray

1.4. Point sampling (10 points)

Code implementation at sampler.py

Figure 3. Visualization of sampled points

1.5. Volume rendering (30 points)

Code implementation at renderer.py

Figure 4. Visualization of features
Figure 5. Visualization of depth map

2. Optimizing a basic implicit volume

2.1. Random ray sampling (5 points)

Code implementation at ray_utils.py

Randomization was implemented using torch.randperm

2.2. Loss and training (5 points)

Code implementation at main.py

Loss=1Ni=1NFgt[i]Fpred[i]2Loss = \frac{1}{N} \sum_{i=1}^{N} ||F^{gt}[i] - F^{pred}[i]||_2

2.3. Visualization

Figure 6. Visualization of optimization result

3. Optimizing a Neural Radiance Field (NeRF) (30 points)

Code implementation at implicit.py and main.py

Figure 7. Reconstruction results at 240 epoch
Figure 8. Result over learning progression

4. NeRF Extras (Choose at least one! More than one is extra credit)

4.1. View Dependence (10 pts)

Figure 9. Reconstruction result at 250 epoch
Figure 10. Result over learning progression

To use view dependent variable, viewpoint (ray bundle’s direction) is embedded using harmonic embedding. Then it is fused with positional embedding. The code is implemented at implicit.py.

4.2. High Resolution Imagery (10 pts)

Figure 11. Reconstruction result at 250 epoch
Figure 11. Result over learning progression