Skip to main content

视觉资料整理

可以参考的博客:
https://www.cnblogs.com/shang-slam/

不错的文档:
se3:
http://ethaneade.com/lie.pdf
A tutorial on SE(3) transformation parameterizations and on-manifold optimization
Three-Dimensional Projective Geometry with Geometric Algebra
四元数:
Quaternion kinematics for the error-state Kalman filter
Indirect Kalman Filter for 3D Attitude Estimation.A Tutorial for Quaternion Algebra 
Quaternions White Paper
https://researchers.anu.edu.au/researchers/kim-j#biography   这个作者研究室的是双四元数SLAM,有时间研究研究
rovio作者关于四元数问题的论文:
Why and How to Avoid the Flipped Quaternion Multiplication



bundle adjustment

ROVIO开源项目中,作者对姿态的处理比较特别:
作者的博士论文:
State Estimation for Legged Robots - Kinematics, Inertial Sensing, and Computer Vision
代码参考的论文: Iterated extended Kalman filter based visual-inertial odometry using direct photometric feedback
作者关于rovio中姿态计算的论文:A Primer on the Differential Calculus of 3D Orientations

DSO作者博士论文:
Large-Scale Direct SLAM and 3D Reconstruction in Real-Time


论文:
Combining Feature-based and Direct Methods for Semi-dense Real-time Visual SLAM from Stereo Cameras

rovio视觉里程计的笔记

bpvo作者的博士论文
https://www.cs.cmu.edu/~halismai/h_alismail_robotics_2016.pdf
 一本比较老的书,内容还不错(包括各种变换的解释):
An Invitation to 3-D Vision From Images to Models

slam及其及其数据集:
http://fzheng.me/  

大神的地址:
http://paulfurgale.info/ 
https://github.com/laurentkneip ,  opengv


TUM课程:
Lecture 6: Visual Navigation for Flying Robots (Dr. Jürgen Sturm)


卷帘相机版本的lsd-slam
https://github.com/jaehak/rrd_slam
 
基于SFM构建的稠密模型进习定位:
http://www.graphics.rwth-aachen.de/publication/03213/
https://github.com/hanjianwei/ACG-Tracker-Demo

Comments

Popular posts from this blog

电子书籍整理

状态估计: 神书:  stste estimation for robotics.  barfoot 微分集合&李群: 李群的大部头神书: Notes on Differential Geometry and Lie Groups INTRODUCTION TODIFFERENTIAL GEOMETRY Introduction to Smooth Manifolds & Lie Groups INTRODUCTION TO DIFFERENTIABLEMANIFOLDS  (笔记类型,一百多页) 一个很好的教学笔记: Lie groups, Lie Algebras, projective geomtry and optimization for 3D Geometry, Engineering and Computer Vision 张量:  A Student’s Guide to Vectors and Tensors

ROS、惯导、OpenCV、开源算法中坐标表示的理解

ros中tf系统的坐标表示: http://wiki.ros.org/tf/Overview/Transformations tf中坐标转换方向 ros中各个坐标系的定义: http://www.ros.org/reps/rep-0105.html#odom rovio算法中的坐标表示: https://github.com/ethz-asl/rovio/wiki/Coordinate-Frames-and-Notation 变换的理解:       两个坐标系的同一个点,由c1系转换到c2系,称为坐标变换,或俗称点变换;只考虑两个坐标系的变换,称为基变换,俗称坐标系变换。坐标变换和基变换方向相反,但表达的坐标系是同一个。变换要考虑变换的方向和描述的坐标系两个问题。 一般的变换中,都是以坐标系下的一个坐标点作为参照进行转换推导,参见《视觉SLAM14讲》P41的推导。因此,得到的变换R、t,是坐标的变换,即简单的理解为点的变换。 在VIO中一样,IMU即使看不到点,也以其坐标系下的 一个点作为参考(比如,将重力从n系转换到b系,将重力看作一个点)。 考虑点P在1、2坐标系的表示分别为P1、P2, 坐标点P从P1变换到P2: P2 = R_21*P1+ t_21_2 坐标系1、2的坐标基变换则为从2变换到1: R_12 、 t_12_2 因此,坐标变换的描述坐标系为终点坐标系,基变换的描述坐标系为起点坐标系 在tf/message的ros框架下,以tf为例: 描述坐标系为frame_id, -> 全局坐标系 坐标基变换(坐标系变换):frame_id -> child_frame_id 坐标变换(点变换):child_frame_id -> frame_id 在ros message中变换也是基于坐标基的变换。  有的是基于点的,查看源码的注释,比如loockTransform(),注释中就说了是变换data。sendTrsnform()中通过frame_id和child_frame_id进行识别。 更新: 最直接的记忆方式就跟据全局坐标系, 比如,标定结果中,T_cam0_imu, 意味着将点从imu坐标系转换到cam0坐标系,对于...

ros调试----rosparm

当程序有许多参数传入时,通常会通过rosparm进行传递, 传递形式为在roslaunch文件中的node中,使用rosparm,比如 <node pkg="tvio" type="image_processor_node" name="image_processor"  output="screen" >       <rosparam command="load" file="$(arg calibration_file)"/>       <param name="grid_row" value="4"/>       <param name="grid_col" value="5"/>       <remap from="~imu" to="/xsens_imu_data"/>       <remap from="~cam0_image" to="/camera/left/image_raw"/>       <remap from="~cam1_image" to="/camera/right/image_raw"/>  </node> 其中,calibration_file为指定的rosparam格式的yaml文件。 可以通过launch文件启动调试,但是不是很习惯,还是喜欢用Clion的可视化调试。 方法: 1)在终端中手动加载rosparam参数: python /opt/ros/kinetic/bin/rosparam  load  /xxxx/camchain.yaml 参数一旦加载后,会保持在本机上的参数服务器中(是不是和roscore相关),程序运行就能读取到。 2)remap中的参数项通过程序的命令行参数形式传入: image_processor   ~imu:=/xsens_imu_data...