An open API service indexing awesome lists of open source software.

https://github.com/henrique/rsba

Rolling Shutter Bundle Adjustment with ceres-solver
https://github.com/henrique/rsba

bundle-adjustment ceres-solver cmake opencv rolling-shutter

Last synced: 12 months ago
JSON representation

Rolling Shutter Bundle Adjustment with ceres-solver

Awesome Lists containing this project

README

          

### Dependencies

Either install the packages libgflags-dev and libgoogle-glog-dev or install them from source. Google ceres-solver 1.9.0 and Apache Thrift 0.10.0 are also required. Please follow ./.travis.yml for installation instructions.

### Install

mkdir build; cd build
cmake -D CMAKE_BUILD_TYPE=Release ..
make -j4

### Debug

To debug the project you can use cmake to generate the eclipse project file on a folder parallel to the source.

cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug ../rsba

Alternatively, you can also use CMAKE_BUILD_TYPE=RelWithDebInfo for a *much* faster debugging.

### Test

make test

[![Build Status](https://travis-ci.org/henrique/rsba.png?branch=master)](https://travis-ci.org/henrique/rsba)