We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, thanks for open-sourcing the project
I have a question regarding these two lines:
NerfingMVS/src/run_nerf.py
Line 373 in 5890f15
Line 374 in 5890f15
I think you did not use the near_bound and far_bound as in equation (6) in the paper, is it correct, or I am missing something?
near_bound
far_bound
The text was updated successfully, but these errors were encountered:
Hi, thanks for open-sourcing the project I have a question regarding these two lines: NerfingMVS/src/run_nerf.py Line 373 in 5890f15 near = (depth_priors * (1 - torch.clamp(depth_confidences, min=near_bound, max=far_bound))).unsqueeze(1) NerfingMVS/src/run_nerf.py Line 374 in 5890f15 far = (depth_priors * (1 + torch.clamp(depth_confidences, min=near_bound, max=far_bound))).unsqueeze(1) I think you did not use the near_bound and far_bound as in equation (6) in the paper, is it correct, or I am missing something?
Hello, I have the same question, why is near_bound and far_bound used here?and how should these two values be set if it is my own data set?
Sorry, something went wrong.
No branches or pull requests
Hi, thanks for open-sourcing the project
I have a question regarding these two lines:
NerfingMVS/src/run_nerf.py
Line 373 in 5890f15
NerfingMVS/src/run_nerf.py
Line 374 in 5890f15
I think you did not use the
near_bound
andfar_bound
as in equation (6) in the paper, is it correct, or I am missing something?The text was updated successfully, but these errors were encountered: