gaowenliang / imu_utils

A ROS package tool to analyze the IMU performance.
https://gaowenliang.github.io/imu_utils
MIT License
1.5k stars 482 forks source link

Idea to improve the installation step in the README.md #6

Closed ferreram closed 6 years ago

ferreram commented 6 years ago

Hi, Thanks a lot for your library!

In order to help people use it easily, I think you could add the following indications in the installation step:

Cheers

Yannnnnnnnnnnn commented 6 years ago

Meet the same problems.

mzahana commented 6 years ago

@ferreram Thanks! That helped!

gaowenliang commented 6 years ago

fixed, thank you

mzahana commented 6 years ago

@gaowenliang I had some more issues during installation, and here how is I fixed it.

Ceres solver is required. Steps to install Ceres:

sudo apt-get install libgoogle-glog-dev
sudo apt-get install libatlas-base-dev
sudo apt-get install libeigen3-dev

Download the following file:

http://ceres-solver.org/ceres-solver-1.14.0.tar.gz

Execute:

tar zxf ceres-solver-1.14.0.tar.gz
mkdir ceres-bin
cd ceres-bin
cmake ../ceres-solver-1.14.0
make -j3
make install

Also, in sumpixel_test.cpp, I had to change

#include "backward.hpp"

to

#include "code_utils/backward.hpp"

Thanks.