Assignment 4

0. Setup

Assignment 4 will build on top of the assignment 3 codebase. Copy the following files and directories into your assignment 3 codebase:

a4/
render_functions.py
data_utils.py

1. Sphere Tracing (30pts)

Torus

First initial t, and then iteratively update t based on the signed distance function and whether it hits or not.

2. Optimizing a Neural SDF (30pts)

Bunny geometry Bunny geometry

The MLP is similar as what I did in assignment 3. I have two MLP to predict color and sdf. They both takes the shared features from the previous layer. Eikonal loss is similar to what we discussed in the lecture

3. VolSDF (30 pts)

alpha influences the scale of the density, and beta influences the band-width of the density

The best hyper-parameter is:

n_hidden_neurons_distance: 256 n_hidden_neurons_distance: 256

  1. How does high beta bias your learned SDF? What about low beta?

Higher 'beta' makes the SDF smooth, and lower 'beta' makes it sharper.

  1. Would an SDF be easier to train with volume rendering and low beta or high beta? Why?

High 'beta' will be easier to train because the smooth SDF is easier to converge.

  1. Would you be more likely to learn an accurate surface with high beta or low beta? Why?

Low 'beta' because it will produce sharper surface.

Bulldozer geometry
Bulldozer color

4. Neural Surface Extras (CHOOSE ONE! More than one is extra credit)

4.2 Fewer Training Views (10 pts)

Bulldozer geometry Bulldozer color

The left image is Neural Surface result, and the right one is NeRF result. Even with 20 views, Neural Surface can also generate reasonable result.

I discuss the homework with Tianyuan Zhang.