学习SLAM首推2个网站:

1. WIKI上的SLAM介绍与资源总结:http://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping

2. http://www.openslam.org/

1. The pose graph of Olson

http://rvsn.csail.mit.edu/graphoptim/

2. TreeMap

http://www.openslam.org/treemap.html

Treemap is an algorithm for feature
based Gaussian SLAM. Actually it is an algorithm for incremental
probabilistic inference in a high dimensional Gaussian defined as the
product of many low dimensional Gaussians (incremental
least square). Treemap can handle different variants of SLAM.
Everything, that's specific to a SLAM variant or even to SLAM as a
problem is contained in a small driver layer that can be adapted by the
user.

3. TORO

http://www.openslam.org/toro.html

TORO
is an optimization approach for constraint-network. It provides an
efficient, gradient descent-based error minimization procedure. There is
a 2D and a 3D version of TORO available.

4. Square Root SAM

http://www.cc.gatech.edu/~kaess/pub/Dellaert06ijrr.html

5. iSAM and iSAM2

http://people.csail.mit.edu/kaess/isam/

http://people.csail.mit.edu/kaess/pub/Kaess12ijrr.html

iSAM is a general
optimization library for incremental sparse nonlinear problems as
encountered in simultaneous localization and mapping (SLAM).

6. Sparse Pose Ajustment

http://www.ros.org/research/2010/spa/

7. g2o

http://www.openslam.org/g2o.html

g2o is an open-source C++
framework for optimizing graph-based nonlinear error functions. g2o has
been designed to be easily extensible to a wide range of problems and a
new problem typically can be specified in
a few lines of code. The current implementation provides solutions to
several variants of SLAM and BA.

8.
Vertigo

http://www.tu-chemnitz.de/etit/proaut/forschung/robustSLAM.html.en

Vertigo is a C++ extension for g2o and
gtam. It provides an implementation of switchable constraints and
enables g2o and gtsam to solve pose graph SLAM problems despite the
presence of false positive loop closure constraints.

graph slam BACK END 相关技术资料收集的更多相关文章

  1. 跨平台编程相关技术资料及笔记.md

    目录 跨平台编程技术选型 ## 需求 最终选定的技术方案:uni-app 混合或跨平台编程相关资料 ## uni-app 官网 相关资料 个人笔记 个人经验 ## taro 官网 相关资料 ## Ch ...

  2. 分享我积攒的测试相关的资料收集awesome-test

    微信扫描关注我的公众号,回复测试资料 即可免费获取资料下载地址,不定期更新资料

  3. AssetBundle机制相关资料收集

    原地址:http://www.cnblogs.com/realtimepixels/p/3652075.html AssetBundle机制相关资料收集 最近网友通过网站搜索Unity3D在手机及其他 ...

  4. 从技术小白到收获BAT研发offer,分享我的学习经验和感悟(赠送相关学习资料)

    去年秋季参加了校园招聘,有幸拿到了BAT.头条.网易.滴滴.亚马逊.华为等offer,经过研究生两年的学习积累,终于达成了自己的目标,期间也经历了很多,谨以此文,聊表感叹,也会分享很多我的Java学习 ...

  5. 关于 Graph Convolutional Networks 资料收集

    关于 Graph Convolutional Networks 资料收集 1.  GRAPH CONVOLUTIONAL NETWORKS   ------ THOMAS KIPF, 30 SEPTE ...

  6. SLAM+语音机器人DIY系列:(七)语音交互与自然语言处理——1.语音交互相关技术

    摘要 这一章将进入机器人语音交互的学习,让机器人能跟人进行语音对话交流.这是一件很酷的事情,本章将涉及到语音识别.语音合成.自然语言处理方面的知识.本章内容: 1.语音交互相关技术 2.机器人语音交互 ...

  7. FastAdmin 导出 Excel 相关资料收集 (2018-08-14)

    FastAdmin 导出 Excel 相关资料收集 导出 Excel 文件时身份证号变成科学计数法怎么办? https://forum.fastadmin.net/thread/1346 姊妹篇 Fa ...

  8. FastAdmin 导入 Excel 相关资料收集 (2018-08-14)

    FastAdmin 导入 Excel 相关资料收集 新版本一键CRUD后自带导入功能,但是默认被禁用,如何启动 https://forum.fastadmin.net/thread/540 Excel ...

  9. MPEG 编解码相关资料收集

    以下是我搜集的关于MPEG1/2的编解码相关的资料: (注:mpge帧内编码是基于jpeg编码的,所以请务必先理解jpeg的编解码原理.) 1:Introduction to MPEG 2 Video ...

随机推荐

  1. Linux 查看进程的线程数

    三种方法: 1. 使用top命令,具体用法是 top -H 加上这个选项,top的每一行就不是显示一个进程,而是一个线程. 2. 使用ps命令,具体用法是 ps -xH 这样可以查看所有存在的线程,也 ...

  2. 8款压箱底的Mac屏幕截图和录音录像工具软件,请你务必低调使用

    以下几款是是Mac上优秀的屏幕截图.录像和录音工具,有了这些工具,在Mac上进行截屏.录制视频或者录音都会事半功倍. 1. Snagit Mac上最好用最强大的屏幕截图工具,支持各种方式的屏幕截图以及 ...

  3. MK-编辑器

    MK-编辑器 MarkdownPad 一款全功能的编辑器,被很多人称赞为windows 平台最好用的markdown编辑器 好用的MK编辑器:Typora 一次打开两个界面 在本文编辑器领域,Vim ...

  4. JavaSE_坚持读源码_HashMap对象_put_Java1.7

    当你往HashMap里面put时,你其实在干什么? /** * Associates the specified value with the specified key in this map. * ...

  5. H5新属性FileReader实现选择图片后立即显示在页面上

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  6. 互斥量、条件变量与pthread_cond_wait()函数的使用,详解(二)

    1.Linux“线程” 进程与线程之间是有区别的,不过linux内核只提供了轻量进程的支持,未实现线程模型.Linux是一种“多进程单线程”的操作系统.Linux本身只有进程的概念,而其所谓的“线程” ...

  7. python 模块二(os,json,pickle)

    #################################总结##################### os常用 os.makedirs('baby/安哥拉/特斯拉/黄晓明') os.mkd ...

  8. Kafka技术内幕 读书笔记之(一) Kafka入门

    在0.10版本之前, Kafka仅仅作为一个消息系统,主要用来解决应用解耦. 异步消息 . 流量削峰等问题. 在0.10版本之后, Kafka提供了连接器与流处理的能力,它也从分布式的消息系统逐渐成为 ...

  9. 【转载】 C#读写注册表

    文章地址:https://blog.csdn.net/younghaiqing/article/details/61918968 自Windows95以来的所有Windows版本中,注册表是包含Win ...

  10. springboot(二十二)spring-boot使用AOP

    https://blog.csdn.net/w05980598/article/details/79053209