Luyuan Wang (luyuanw@andrew.cmu.edu)
Result:
In Sphere Tracing, we walk along a ray until we are close to the surface, or exceed the maximum steps. If the condition of
The rendered mesh:
The MLP has a similar structure with NeRF. The input is encoded with a Harmonic embeding layer. The MLP has 9 linear layers, and ReLU is used as the nonlinear function. There is a skip connection from the embedding to the 5th linear layer. The output is normalized with a sigmoid function.
The Eikonal loss is defined as the following equation:
I increased the number of points per ray from 128 to 256. With more sample points, the network should be able to learn a more detailed surface structure.
![]() | ![]() |
---|
In the VolSDF paper, the alpha
and beta
should be two learnable parameters. But at here, we used fixed numbers. alpha
is just a scaling factor of the calculated density. beta
controls the scale of the Laplace distribution. If beta
approach to zero, the density function converges to the indicator function of the occupied space.
beta
makes the surface blurry. A lower beta
produces a clear surface.beta
is easier to train. A low beta
gives a more strict constrain, that the network may not converge at the begining.beta
, as a lower beta
make the spread of the Laplace dirstribution smaller.After I increase the beta
to 0.25 (5x greater), the surface is not very sharp:
After I decrease the beta
to 0.01 (5x less), the network doesn't converge, and only outputs black images:
I tried the solution in the NeuS. The SDF to Density conversion is defined as the following equation:
I got a relative good result with s = 10, but it seems not as good as our previous implementation.