Assignment 4

Jianchun Chen jianchuc@andrw.cmu.edu


1. Sphere Tracing (30pts)

This equation implement the sphere tracing iteration from the slides.

for f(p)>eps:
    t = t+f(p)
    p = x_0+t*d

Torus

2. Optimizing a Neural SDF (30pts)

The network structure follows the yaml file, where I use a 6 layer MLP with 128 hidden neuron to encode the SDF. Re-running default parameter gives reasonable result, whereas increasing positional encoding frequencies generates discontinuous shape with holes.

Bunny geometry

3. VolSDF (30 pts)

β\beta controls the bandwith of the density i.e. within which distance to the surface a point has a larger density. α\alpha controls the scale of the density i.e. how large is the density of the point in the surface.

Bulldozer geometry Bulldozer color
blur geometry blur color
The first row is the result from default α=10\alpha=10 and β=0.05\beta=0.05 and the second row has β=0.5\beta=0.5. We see that larger β\beta results in blurry image and inaccurate geometry.

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

4.1. Render a Large Scene with Sphere Tracing (10 pts)

Here I render 3*7=21 objects including torus, sphere and box.
lsst

4.2 Fewer Training Views (10 pts)

sparse NeRFdense NeRF
sparse VolSDFdense VolSDF
The first two gifs are from NeRF and the second gifs are from VolSDF. The left gifs are trained with uniformly sampled 20 images and the right gifs are trained with 100 images.

From the result we can see that sparse view yeild a more difficult training problem. However, with same 20 view, NeRF generates more details than VolSDF.