Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

img_1 #141

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
10 changes: 10 additions & 0 deletions ch2/Background.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//SLAM structure

<img src = "https://user-images.githubusercontent.com/36797374/106164047-9385ca80-6157-11eb-9d59-352c5e2dac79.png">


VO: visual odometry
capture motions, Chapter 7&8

Optimization: CH10, CH11.

2 changes: 1 addition & 1 deletion ch2/helloSLAM.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <iostream>
using namespace std;

//good luck
int main(int argc, char **argv) {
cout << "Hello SLAM!" << endl;
return 0;
Expand Down
2 changes: 1 addition & 1 deletion ch2/libHelloSLAM.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//这是一个库文件
//this is a file for creating dll
#include <iostream>
using namespace std;

Expand Down
6 changes: 3 additions & 3 deletions ch2/libHelloSLAM.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef LIBHELLOSLAM_H_
#define LIBHELLOSLAM_H_
// 上面的宏定义是为了防止重复引用这个头文件而引起的重定义错误
// prevent redefinition

// 打印一句hello的函数
// declare function printHello()
void printHello();

#endif
#endif