-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
depth = (poses[id_im-1,:3,2].T @ (point3D - poses[id_im-1,:3,3])) * sc ,WHY? #101
Comments
|
Thank you for your reply! I have one more question,after running img2poses on my own dataset to get poses_bounds.npy, when I run run_nerf.py, I get negative numbers in bds_raw, resulting in sc being negative, far being negative, and near being positive. Can you give me some suggestions? |
maybe you need modify line 66 in llff/poses/pose_utils.py: |
Hello, I would like to ask why the depth is calculated this way?
and What do 'sc' and 'bds_raw' mean?
What does this judgment condition mean?
if depth < bds_raw[id_im-1,0] * sc or depth > bds_raw[id_im-1,1] * sc:
I'm hoping someone can help me.
The text was updated successfully, but these errors were encountered: