[16-889] Learning for 3D Vision, Spring 2022

Late days used: 1

1. Sphere Tracing

part_1

The sphere_tracing() function implements the sphere tracing algorithm. It was implemented as per the following pseudo-code

 

For each iteration, the points with an SDF value greater than a threshold are masked out.

 

2. Optimizing a Neural SDF

Input gif

part_2_input

Output gif

part_2

 

Implementing the MLP Network

The network implemented for SDF prediction was similar to that of the NeRF coordinate MLP for σ prediction; using positional encodings for (x,y,z) coordinates and skip connections between layers. The output was a linear layer predicting values in R.

 

Eikonal loss

The eikonal constraint was applied on the gradient of the outputs with respect to the inputs. The condition enforced was |||fθ||21|.

 

3. VolSDF

Theory questions

 

α=10.0,β=0.5

part_3_alpha10.0_beta0.5

part_3_geometry_alpha10.0_beta0.5

 

 

part_3.gif and part_3_geometry.gif

part_3

part_3_geometry

 

4. Neural Surface Extras

4.1 Render a Large Scene with Sphere Tracing

The below scene was created with 10 unique SDF shapes. The created SDF shapes were

I hope creating 10 unique SDF shapes is sufficient for this question rather than creating a scene with 20 shapes with multiple copies :)

part_4_1

 

4.2 Fewer Training Views (= 20 views)

Because of using a surface based SDF representation, VolSDF is able to work with lesser number of views as compared to NeRF. With NeRF, the results look blurrier and have weird color artifacts.

 

VolSDF

part_4_2

NeRF (w/ hierarchical sampling)

part_4_2_nerf

 

 

4.3 SDF to Density Conversions (NeuS)

part_4_3_geometry

The NeuS method uses the derivative of the sigmoid function with s=120. But I was not able to get satisfactory results with this density conversion. This could be due to the fact that higher s values causes a sharper peak near the true surface and hence the network has a harder time learning a continuous smooth surface.