Hi, there is a typo in this line:
|
dist_ref = ((points_for_warp.squeeze(1) - rays_o[val_ray_inside_inds]) / rays_o[val_ray_inside_inds])[..., 0].detach() |
I think it should be modified as follows:
dist_ref = ((points_for_warp.squeeze(1) - rays_o[val_ray_inside_inds]) / rays_d[val_ray_inside_inds])[..., 0].detach()
Hi, there is a typo in this line:
Ref-NeuS/models/renderer.py
Line 367 in ee38ec8
I think it should be modified as follows: