GithubHelp home page GithubHelp logo

aurora-zhou / ltslam Goto Github PK

View Code? Open in Web Editor NEW

This project forked from duyongquan/ltslam

1.0 0.0 0.0 144.01 MB

lean slam step by step

CMake 1.57% Lua 0.01% C++ 35.47% Jupyter Notebook 56.11% Python 1.28% CSS 0.02% Batchfile 0.01% Shell 0.15% C 2.73% Makefile 0.05% TeX 0.11% Yacc 0.01% Lex 0.01% Cuda 0.20% Objective-C 0.01% Objective-C++ 0.04% Starlark 0.08% HTML 0.08% M4 0.09% Fortran 1.99%

ltslam's Introduction

LTSLAM

1 Introduction

I hope you can lean slam step by step, you will can learn online LTSLAM documents tutorial

You can learn slam knowledge by 哔哩哔哩 bilibili . This video website has a detailed explanation of the code and the corresponding SLAM technology principle. Let's start a happy journey. enjoy....

project directory:

  • xlsam
  • xlsam_ros

download LTSLAM source:

git clone https://github.com/quanduyong/LTSLAM.git

2 Install dependency

2.1 Generate study documents

  • 安装Sphinx

    pip install -U sphinx
  • 安装主题

    pip install sphinx_rtd_theme
  • 安装markdown插件

    pip install recommonmark
    pip install sphinx_markdown_tables

2.2 Third party library

(推荐)我已经提供了第三方库源码文件3rdparty目录下,执行以下命令安装,不然会出现版本不匹配问题:

mkdir build && cd build
cmake ..
make -j6 
sudo make install

​ (不推荐)如果你想自己源码安装第三方库请使用以下步骤:

  • 安装Eigen

    git clone https://gitlab.com/libeigen/eigen.git
    cd eigen
    git checkout 3.3.8
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install
    
  • 安装Sophus

    git clone https://github.com/strasdat/Sophus.git
    cd Sophus
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install
  • 安装abseil

    在abseil项目的CMakeLists.txt的project(absl LANGUAGES CXX) 下添加以下命令:

    add_compile_options(-fPIC)

    git clone https://github.com/abseil/abseil-cpp.git
    cd abseil-cpp
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install
  • 安装 DBow3

    git clone https://github.com/rmsalinas/DBow3.git
    cd abseil-cpp
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install  
    
  • 安装googletest

    git clone https://github.com/google/googletest.git
    cd googletest
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install  
    
  • 安装g2o

    git clone https://github.com/rmsalinas/DBow3.git
    cd abseil-cpp
    git checkout 9b41a4ea
    mkdir build && cd build
    cmake ..
    make -j6 
    sudo make install  
    
  • 安装opencv & opencv_contrib (4.5-x)

    git clone https://github.com/opencv/opencv.git
    git clone https://github.com/opencv/opencv_contrib.git
    
    cd opencv
    mkdir build && cd build
    cmake-gui .. # 选择extra module opencv_contrib
    make -j6 
    sudo make install
    

3 工程编译

cd LTSLAM
mkdir build
cd build 
cmake ..
make -j6

4 如何运行工程demo

在工程的build/bin目录中,你可以看到对应的每个可执行二进制文件

Let ‘s run xslam.opencv.KLT_test shell command

# KLT 光流跟踪算法
./xslam.opencv.KLT_test

5 Contact Me

我们有微信群和QQ群: 710288823 ,你可以加入我们一起成长,所有代码和教学视频免费。

加入我们吧!!!

ltslam's People

Contributors

duyongquan avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.