Given origins, directions, and a SDF.
MLP:
Eikonal loss: MSE loss between the gradients and 1.
Alpha controls the constant density of the object and beta controls how smoothly density decreases near the object’s boundary.
How does high beta
bias your learned SDF? What about low beta
?
High beta makes the reconstructions look blurred and low beta looks better.
Would an SDF be easier to train with volume rendering and low beta
or high beta
? Why?
High one. Because an SDF with high beta will have a smooth density boundary which is easier to learn.
Would you be more likely to learn an accurate surface with high beta
or low beta
? Why?
Low one. Because an SDF with low beta could have a clear and sharp boundary when it transforms to density. Then a more accurate surface can be optimized due to the stronger constraints.
alpha = 10.0 beta = 0.05
The scene consists of a sphere of radius 1.0 centered at (0, 0, 0), and 14 boxes of side length 0.5, and 6 toruses with R=0.25 and r = 0.1.