Skip to content
forked from cvg/pyceres

Factor graphs with Ceres in Python

License

Notifications You must be signed in to change notification settings

vinsonliux/pyceres

 
 

Repository files navigation

pyceres

This repository provides minimal Python bindings for the Ceres Solver and the implementation of factor graphs for bundle adjustment and pose graph optimization.

Installation

  1. Clone the repository and its submodule by running:
git clone --recursive [email protected]:cvg/pyceres.git
cd pyceres
  1. Install COLMAP.

  2. Build the package:

pip install -e .

Factor graph optimization

For now we support the following cost functions, defined in _pyceres/factors/:

  • camera reprojection error (with fixed or variable pose)
  • rig reprojection error (with fixed or variable rig extrinsics)
  • relative pose prior
  • absolute pose prior

All factors support basic observation covariances. Reprojection error costs rely on camera models defined in COLMAP. Absolute poses are represented as quaternions and are expressed in the sensor frame, so are pose residuals, which use the right-hand convention as in the GTSAM library.

Examples

See the Jupyter notebooks in examples/.

TODO

  • Define a clean interface for covariances, like in GTSAM
  • Add bindings for Ceres covariance estimation
  • Use proper objects for poses, e.g. from Sophus
  • Proper benchmark against GTSAM

Credits

The core bindings were written by Nikolaus Mitchell for ceres_python_bindings and later adapted by Philipp Lindenberger for pixel-perfect-sfm.

About

Factor graphs with Ceres in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.3%
  • Python 3.4%
  • CMake 1.3%