Fyusion / LLFF

Code release for Local Light Field Fusion at SIGGRAPH 2019
https://fyusion.com/LLFF
GNU General Public License v3.0
1.54k stars 246 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" #57

Closed seekever closed 2 years ago

seekever commented 2 years ago

https://github.com/Fyusion/LLFF/blob/c6e27b1ee59cb18f054ccb0f87a90214dbe70482/llff/poses/pose_utils.py#L18

rodrygojose commented 2 years ago

It assumes all cameras have the same intrinsics. Thus there is only one set of camera intrinsic parameters

seekever commented 2 years ago

It assumes all cameras have the same intrinsics. Thus there is only one set of camera intrinsic parameters

Got it. Thanks very much~~~