摘要:
CMakeLists.txt cmake_minimum_required(VERSION 3.1) project(untitled2) set(CMAKE_CXX_STANDARD 11) set(CMAKE_BUILD_TYPE Release) set(ALL_TARGET_LIBRARIE 阅读全文
摘要:
适配 openvslam和 slam14讲解代码版本 1. Eigen安装(最新3.3.7) wget -q https://gitlab.com/libeigen/eigen/-/archive/3.3.7/eigen-3.3.7.tar.bz2 tar xf eigen-3.3.7.tar.bz 阅读全文
摘要:
0视觉SLAM十四讲slambook2示例代码 git clone --recursive https://github.com/gaoxiang12/slambook2.git 由于里面的3rdparty文件夹内所有内容都来自于其他github仓库,所以需要加上--recursive参数,不然克隆 阅读全文
摘要:
增量方程 #include <iostream> #include <Eigen/Core> #include <Eigen/Dense> #include <Eigen/Geometry> #include "sophus/se3.hpp" #include "sophus/so3.hpp" in 阅读全文
摘要:
/* * Gauss-Newton iteration method * author:Davidwang * date :2020.08.24 */ #include <iostream> #include <chrono> #include <opencv2/opencv.hpp> #inclu 阅读全文