dunbar12138 / DSNeRF

Code release for DS-NeRF (Depth-supervised Neural Radiance Fields)
https://www.cs.cmu.edu/~dsnerf/
MIT License
749 stars 127 forks source link

why does it only load the first camera params in "load_colmap_data"? There are numbers of cameras in raw colmap file "cameras.bin". #17

Closed seekever closed 2 years ago

seekever commented 2 years ago

https://github.com/dunbar12138/DSNeRF/blob/33799570c4eccef51b7f1bb05c770a0b5ebeba89/llff/poses/pose_utils.py#L18

dunbar12138 commented 2 years ago

This is just for loading intrinsics (height, weight, and focal length), which are usually the same for all the cameras.

seekever commented 2 years ago

Got it. Thanks very much.