You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not a question but a suggestion of improvement about initialization of colmap_id in Camera class.
When I use COLMAP dataset of single intrinsic parameter (I used Deblur Nerf Dataset), all of colmap_id in scene.train_cameras and scene.test_cameras are set to 1.0.
This may cause a problem that we can't find the correspondences among viewpoints in code and those in SIBRviewer.
Thanks for your great job!
This is not a question but a suggestion of improvement about initialization of colmap_id in Camera class.
When I use COLMAP dataset of single intrinsic parameter (I used Deblur Nerf Dataset), all of colmap_id in scene.train_cameras and scene.test_cameras are set to 1.0.
This may cause a problem that we can't find the correspondences among viewpoints in code and those in SIBRviewer.
To solve this, I changed gaussian-splatting/scene/dataset_readers.py line 84 from
uid = intr.id
touid = extr.id
.This change will enable to send information about image ids in colmap to Camera class as Camera.colmap_id.
The text was updated successfully, but these errors were encountered: