Ceres Tutotial

Ceres Tutotial(1) —— 编程应用基础

https://blog.csdn.net/qq_23225073/article/details/103284382

Ceres Tutotial(2) —— 最小二乘建模

https://blog.csdn.net/qq_23225073/article/details/103284327

重要的Reference

  • ceres 官方 tutorial
  • 文章中的代码参考

1 install

# install dependencies
sudo apt-get install liblapack-dev libsuitesparse-dev libcxsparse3.1.4 libgflags-dev libgoogle-glog-dev libgtest-dev

# clone
git clone https://github.com/ceres-solver/ceres-solver.git

# build
cd ceres-solver
mkdir build
cmake ..
make
sudo make install

 

你可能感兴趣的:(c/c++,算法,人工智能)