1. Sphere Tracing

The way I did is to iteratively update the point positions, where in each iter:

2. Optimizing a Neural SDF

gif

3. VolSDF

For training, I implemented the distance mlp with hidden neurons [128, 128, 128], using ReLU as activation function. The color mlp is has hidden neurons [128, 128, 128, 128], with ReLU as activation function, and sigmoid as the final non-linear activation. I used the default training hyper parameters.

Result:
gif
gif

4. Extras

4.2 fewer training views

I tried to use only 1/5 of the original number of training views. In terms of rgb reconstruction, nerf still gives reasonable reconstruction, while Neus's recoquality has a noticable drop. In terms of geometry, with these fewer views, neus result seems to be better.
VolSDF result:
gif
gif
Nerf result:
gif

4.3 Alternate SDF to Density Conversions

I tried the sdf to desity function in NeuS paper, and setting s = 1. The reconstruction result is much much worse.
gif gif