
SLAM
文章平均质量分 65
long long int
这个作者很懒,什么都没留下…
展开
-
SLAM-ch3-实践Eigen
1.eigenMatrix.cpp#include <iostream>#include <ctime>#include <eigen3/Eigen/Core>#include <eigen3/Eigen/Dense>using namespace std;#define MATRIX_SIZE 50int main(int argc, char *argv[]){ Eigen::Matrix<float, 2, 3&...原创 2020-09-06 00:39:47 · 322 阅读 · 0 评论 -
SLAM-ch2-cmake中使用库
1. 创建ibHelloSLAM.cpp#include <iostream>using namespace std;void printHello(){ cout<<"Hello SLAM!"<<endl;}2. 创建libHelloSLAM.h#ifndef LIBHELLOSLAM_H_#define LIBHELLOSLAM_H_void printHello();#endif3. 创建CMakeLists.tx...原创 2020-08-22 23:33:58 · 217 阅读 · 0 评论 -
SLAM-ch2-使用kdevelop创建helloWorld程序
1. 创建helloSLAM.cpp 实现如下#include <iostream>using namespace std;int main(){ cout<<"hello SLAM!"<<endl; return 0;}2. 创建CMakeLists.txt#声明要求的cmake最低版本cmake_minimum_required(VERSION 2.8)#声明一个cmake公程project(HelloSLAM)#添...原创 2020-08-22 23:21:52 · 193 阅读 · 0 评论 -
ubuntu中安装kDevelop
1. 下载安装包https://www.kdevelop.org/download一种方法是使用下载工具直接下载:https://download.kde.org/stable/kdevelop/5.5.2/bin/linux/KDevelop-5.5.2-x86_64.AppImage另外一种方法是使用命令行下载:wget -O KDevelop.AppImage https://download.kde.org/stable/kdevelop/5.5.2/bin/linux/KDe.原创 2020-08-22 22:47:00 · 736 阅读 · 0 评论