cvg / pyceres

Factor graphs with Ceres in Python
Apache License 2.0
247 stars 34 forks source link

fatal error: colmap/base/camera_models.h: No such file or directory #16

Closed joshuaoreilly closed 1 year ago

joshuaoreilly commented 1 year ago

A recent commit to COLMAP moved colmap/base/camera_models.h to colmap/camera/models.h, breaking bundle.cc. Modifying pyceres/_pyceres/factors/bundle.cc from

#include <colmap/base/camera_models.h>

to

#include <colmap/camera/models.h>

Allows installation to proceed.

Full error log

ducha-aiki commented 1 year ago

Ohm nice :) Now the pyceres is updated to have new colmap structure, but pixsfm not yet)