You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you explain slightly on how you get the formula of dL_dsigmas[s]? i.e., why does
dL_dsigmas[s] = deltas[s] * (
dL_drgb[ray_idx][0](rgbs[s][0]T-(R-r)) +
dL_drgb[ray_idx][1](rgbs[s][1]T-(G-g)) +
dL_drgb[ray_idx][2](rgbs[s][2]T-(B-b)) +
dL_dopacity[ray_idx](1-O) +
dL_ddepth[ray_idx](t*T-(D-d))
)
The text was updated successfully, but these errors were encountered:
Hi, thanks for the great work. I have a question regarding to the gradient computation in
ngp_pl/models/csrc/volumerendering.cu
Lines 137 to 152 in e9d9c37
Can you explain slightly on how you get the formula of dL_dsigmas[s]? i.e., why does
dL_dsigmas[s] = deltas[s] * (
dL_drgb[ray_idx][0](rgbs[s][0]T-(R-r)) +
dL_drgb[ray_idx][1](rgbs[s][1]T-(G-g)) +
dL_drgb[ray_idx][2](rgbs[s][2]T-(B-b)) +
dL_dopacity[ray_idx](1-O) +
dL_ddepth[ray_idx](t*T-(D-d))
)
The text was updated successfully, but these errors were encountered: