参考网址:

(135条消息) Sophus库使用踩坑_清酒不是九的博客-CSDN博客_卸载sophus

(135条消息) Sophus库安装 踩坑心得_sulywang的博客-CSDN博客

(135条消息) Sophus库安装及make报错解决记录_weixin_52402390的博客-CSDN博客_sophus安装报错

(161条消息) 高翔视觉SLAM十四讲Sophus安装指南(经历)_新生菜鸟不怕猫的博客-CSDN博客_sophus安装

安装fmt

下载fmt

1
2
3
4
5
mkdir build
cd build
cmake ..
make
sudo make install

安装

1
2
3
4
5
6
git clone https://ghproxy.com/https://github.com/strasdat/Sophus.git
cd Sophus
mkdir build && cd build
cmake ..
make -j8
make install

编译问题

Sophus/sophus/so2.cpp 文件修改

1
2
3
4
5
6
7
8
9
10
11
12
//将
SO2::SO2()
{
unit_complex_.real() = 1.;
unit_complex_.imag() = 0.;
}
//改为
SO2::SO2()
{
unit_complex_.real(1.);
unit_complex_.imag(0.);
}