The vision odometry
Dowload and install instructions can be found at: http://opencv.org.
Tested with OpenCV 3.2.
download new version gflag and compile.
$ git clone https://github.com/gflags/gflags.git
$ mkdir build & cd build
$ cmake -DGFLAGS_NAMESPACE=google -DCMAKE_CXX_FLAGS=-fPIC ..
$ make & sudo make install
$ git clone https://github.com/google/glog.git
$ cd glog
$ mkdir build && cd build
maybe you need to install cmake3
$ sudo apt-get install cmake3
$ export CXXFLAGS="-fPIC" && cmake .. && make VERBOSE=1
$ make
$ sudo make installDownload and install instructions can be found at: http://eigen.tuxfamily.org.
Tested with Eigen 3.2.1
Dowload and install instructions can be found at: http://www.ceres-solver.org/installation.html
$ mkdir build
$ cd build
$ make -j2- can not find the Eigen3Config.cmake maybe you have two versions cmake, you could find the Eigen3Config.cmake in the lower version cmake.
$ sudo cp /usr/share/cmake-2.8/Modules/FindEigen3.cmake /usr/share/cmake-3.2/Modules/