nexuslrf / SPIDR

Codes for: "SPIDR: SDF-based Neural Point Fields for Illumination and Deformation"
https://nexuslrf.github.io/SPIDR_webpage
Other
76 stars 4 forks source link

General insights!! #7

Open kevinYitshak opened 1 year ago

kevinYitshak commented 1 year ago

Hi, I was trying to understand orientation loss, which is being used. Can you explain the intuition behind it and what exactly it's optimizing for?

Thanks!

nexuslrf commented 1 year ago

Hi, the orientation loss here is to regularize the normal attributes attached to the neural points (not gradient computed normal). The design of this loss is inspired by the Ref-NeRF (Eq. 11), which minimize the cosine distance between gradient-computed normal and discrete normal vectors attached to points.

kevinYitshak commented 1 year ago

Thanks for the explanation!