
ROS
文章平均质量分 85
ganbaoni9yang
这个作者很懒,什么都没留下…
展开
-
ROS代码经验系列-- tf进行位置查询变换
include文件:// For transform support#include "tf/transform_broadcaster.h"#include "tf/transform_listener.h"#include "tf/message_filter.h"#include "tf/tf.h"#include "message_filters/subscriber转载 2015-11-26 19:22:23 · 712 阅读 · 0 评论 -
安装rgbd slam v2时,部分问题
rgdb slam v2在后面的版本都支持不太好的样子需要改一部分命令才能顺利安装下去catkin_make出现的错误:(1)SiftGPU cannot be compiled. Returnd 2。 解决方法:将cmakelist.txt里的set(USE_SIFT_GPU 1)改为set(USE_SIFT_GPU 0)。(2)/tmp/ccJWleRv.s:7191: E转载 2015-12-01 19:56:40 · 535 阅读 · 0 评论 -
slam数据集整合
根据大家的要求,在此整合一下常用的几个数据集。我平时话太啰嗦了,这里就简单一些。(为啥编辑器的分隔线都这么萌)1. Tum数据集这个大家用的人都知道,RGB-D数据集,有很多个sequence,自带Ground-truth轨迹与测量误差的脚本(python写的,还有一些有用的函数)。有一些很简单(xyz, 360系列),但也有的很难(各个slam场景)。由于它的目标场景是机转载 2015-12-02 15:24:54 · 9567 阅读 · 0 评论 -
学习ROS笔记之TF——learning tf(一)
1,tf官网学习,第一部分为learning tf http://wiki.ros.org/tf/Tutorials2,首先学习introduction to tf http://wiki.ros.org/tf/Tutorials/Introduction%20to%20tf注意运行$ roslaunch turtle_tf turtle_tf_demo.转载 2015-11-27 15:34:11 · 1859 阅读 · 0 评论 -
学习ROS笔记之TF——learning tf(二)
1,add a frame (C++)tf builds up a tree structure of frames; it does not allow a closed loop in the frame structure. This means that a frame only has one single parent, but it can have multiple chi转载 2015-11-27 15:35:26 · 741 阅读 · 0 评论 -
ROS代码经验系列-- tf进行位置查询变换
include文件:[cpp] view plaincopy"code" class="cpp">// For transform support #include "tf/transform_broadcaster.h" #include "tf/transform_listener.h" #include "tf/mes转载 2015-11-26 20:22:40 · 7694 阅读 · 0 评论 -
Ubuntu Ros_common msgs
vector是C++标准模板库中的部分内容,它是一个多功能的,能够操作多种数据结构和算法的模板类和函数库。vector之所以被认为是一个容器,是因为它能够像容器一样存放各种类型的对象,简单地说,vector是一个能够存放任意类型的动态数组,能够增加和压缩数据。为了可以使用vector,必须在你的头文件中包含下面的代码:#include vector属于std命名域的,因此需要通过命名限原创 2015-11-26 11:21:39 · 947 阅读 · 0 评论 -
ROS中nav_msgs消息类型
一、消息类型1 GridCells 栅格单元 (1)std_msgs/Header header头,时间戳与坐标系 (2)float32 cell_width,float32 cell_height宽度与高度 (3)geometry_msgs/转载 2015-11-26 20:06:02 · 3883 阅读 · 0 评论 -
ROS中geometry_msgs消息类型
Point 点float64 x ,float64 y,float64 zPoint32 float32 x,float32 y,float32 z 一般使用Point,大规模点云使用Point32PointStamped :(1)std_msgs/Header header 包含坐标系和时间戳信息转载 2015-11-26 20:00:13 · 34258 阅读 · 0 评论 -
eigen与matlab对应函数列表
// A simple quickref for Eigen. Add anything that's missing.// Main author: Keir Mierle#include Matrix A; // Fixed rows and cols. Same as Matrix3d.Matrix B; // Fixed rows,转载 2015-12-03 09:01:10 · 711 阅读 · 0 评论