LLFF icon indicating copy to clipboard operation
LLFF copied to clipboard

How to get poses and camera parameters

Open SaadatKhan opened this issue 2 years ago • 1 comments

Hi, I need poses and camera parameters (like focal lengths) for another project which uses COLMAP for extracting the poses. How do I use the bin files to read and extract information?

SaadatKhan avatar Feb 26 '23 17:02 SaadatKhan

@SaadatKhan use pycolmap's integarted rec = pycolmap.Reconstruction("path/to/folder/containing/bin") and then access the informations as : for camera in rec.cameras.values():

EarltShirt avatar Apr 18 '24 15:04 EarltShirt