ros使用过程中,经常会用到rviz可视化各种数据。而在rviz中,marker与markerarray是常用的一种可视化工具,最近也用到过几次了,这里随手记录一下。

1、makerarray画线

在marker中常见的就是表示两点之间的连线,而marker或者markerarray可以很好的可视化线条属性,简单示例如下:

void marker_visualization::Add_Lines_Mark()
{Clear_Lines_Marker();//point_line_pub.publish(MarkerArray);int len = 10;int count = 0;for(int i=0;i<len;i++){point_lines.ns = "line_mark";    //命名空间namespace  //point_lines.type = visualization_msgs::Marker::ARROW;                                                                         point_lines.type = visualization_msgs::Marker::LINE_LIST;     //类型point_lines.pose.orientation.x=0.0;point_lines.pose.orientation.y=0.0;point_lines.pose.orientation.z=0.0;point_lines.pose.orientation.w=1.0;//lines.action = visualization_msgs::Marker::ADD;point_lines.scale.x = 0.1;//设置线的颜色,a应该是透明度point_lines.color.r = 1.0;point_lines.color.g = 0.0;point_lines.color.b = 0.0;point_lines.color.a = 1.0;//这个是指定marker在被自动清除前可以逗留多长时间。这里 ros::Duration()表示不自动删除。如果在lifetime结束之前有新内容到达了,它就会被重置。point_lines.lifetime = ros::Duration();//线的初始点point_lines.id = count;  //与命名空间联合起来,形成唯一的id,这个唯一的id可以将各个标志物区分开来,使得程序可以对指定的标志物进行操作geometry_msgs::Point p_start;p_start.x = 2*i;p_start.y = 2*i;p_start.z = 0.0;  //将直线存储到marker容器point_lines.points.push_back(p_start);geometry_msgs::Point p_end;p_end.x = 2*i+1;p_end.y = 2*i+1;p_end.z = 0.0;point_lines.points.push_back(p_end);point_lines.header.frame_id = "map";point_lines.header.stamp = ros::Time::now();MarkerArray.markers.push_back(point_lines);point_lines.points.clear();count++;}lines_array_pub.publish(MarkerArray);point_lines.points.clear();MarkerArray.markers.clear();
}

在rviz中显示如下:

2、makerarray画箭头

箭头的表示跟直线差不多,基础代码如下:

void marker_visualization::Add_Arrow_Mark()
{Clear_Arrow_Marker();int len = 10;int count = 0;tf2::Quaternion Quaternion;for(int i=0;i<len;i++){lines_arrow.ns = "point_arrow";    //命名空间namespace                                                                          lines_arrow.type = visualization_msgs::Marker::ARROW;     //类型lines_arrow.scale.x = 0.5;//箭头长度lines_arrow.scale.y = 0.1;lines_arrow.scale.z = 0.1;//设置线的颜色,a是透明度lines_arrow.color.r = 0.0;lines_arrow.color.g = 1.0;lines_arrow.color.b = 0.0;lines_arrow.color.a = 1.0;//这个是指定marker在被自动清除前可以逗留多长时间。这里 ros::Duration()表示不自动删除。如果在lifetime结束之前有新内容到达了,它就会被重置。lines_arrow.lifetime = ros::Duration();//线的初始点for(int j=0;j<10;j++){lines_arrow.id = count;  //与命名空间联合起来,形成唯一的id,这个唯一的id可以将各个标志物区分开来,使得程序可以对指定的标志物进行操作geometry_msgs::Point p_start;lines_arrow.pose.position.x = 2*i;lines_arrow.pose.position.y = 2*i;lines_arrow.pose.position.z = 0;p_start.x = 2*i;p_start.y = 2*i;p_start.z = 0;//将直线存储到marker容器geometry_msgs::Point p_end;p_end.x = 2*i+1;p_end.y = 2*i+1;p_end.z = 0;double yaw = atan2((p_end.y-p_start.y), (p_end.x-p_start.x));Quaternion.setRPY( 0, 0, yaw );lines_arrow.pose.orientation.x = Quaternion.x();lines_arrow.pose.orientation.y = Quaternion.y();lines_arrow.pose.orientation.z = Quaternion.z();lines_arrow.pose.orientation.w = Quaternion.w();lines_arrow.header.frame_id = "map";lines_arrow.header.stamp = ros::Time::now();ArrowArray.markers.push_back(lines_arrow);count++;}}arrow_array_pub.publish(ArrowArray);ArrowArray.markers.clear();
}

3、makerarray写字

marker是可以在rviz中的特定位置显示文本的,但是需要注意的是它似乎显示不了汉字:

void marker_visualization::Add_Txt_Mark()
{Clear_Txt_Marker();int len = 10;int count = 0;tf2::Quaternion Quaternion;for(int i=0;i<len;i++){txt_mark.header.frame_id="map";txt_mark.header.stamp = ros::Time::now();txt_mark.ns = "txt_mark";//txt_mark.action = visualization_msgs::Marker::ADD;txt_mark.pose.orientation.w = 1.0;txt_mark.id = count;txt_mark.type = visualization_msgs::Marker::TEXT_VIEW_FACING;txt_mark.scale.z = 0.4;txt_mark.color.b = 255;txt_mark.color.g = 255;txt_mark.color.r = 255;txt_mark.color.a = 1;geometry_msgs::Pose pose;pose.position.x = 2*i+0.2;pose.position.y = 2*i+0.2;pose.position.z = 0;string text = "test";txt_mark.text=text;txt_mark.pose=pose;txt_mark.lifetime = ros::Duration();TxtArray.markers.push_back(txt_mark);count++;}txt_array_pub.publish(TxtArray);TxtArray.markers.clear();
}

显示结果如下:

4、makerarray画圆

某些时候需要在rviz中表示一些坐标位置的时候,使用一个立体的点是一种很好的方式:

void marker_visualization::Add_Sphere_Mark()
{Clear_Sphere_Marker();int len = 10;int count = 0;for(int i=0;i<len;i++){sphere_mark.header.frame_id = "map";sphere_mark.header.stamp = ros::Time::now();sphere_mark.ns = "sphere_mark";sphere_mark.id = count; sphere_mark.type = visualization_msgs::Marker::SPHERE; sphere_mark.action = visualization_msgs::Marker::ADD;sphere_mark.pose.position.x = 2*i;sphere_mark.pose.position.y = 2*i;sphere_mark.pose.position.z = 2*i;sphere_mark.pose.orientation.x = 0.0;sphere_mark.pose.orientation.y = 0.0;sphere_mark.pose.orientation.z = 0.0;sphere_mark.pose.orientation.w = 1.0;sphere_mark.scale.x = 0.2;sphere_mark.scale.y = 0.2;sphere_mark.scale.z = 0.2; sphere_mark.color.r = 1.0;sphere_mark.color.g = 1.0;sphere_mark.color.b = 0.0;sphere_mark.color.a = 1.0;count++;        SphereArray.markers.push_back(sphere_mark);}sphere_array_pub.publish(SphereArray);SphereArray.markers.clear();
}

结果如下:

5、makerarray消除

在添加了Marker之后,设置marker的 duration_time不起作用,表现形式是:marker一直显示,不会消失;使用delete指令也不能将已经显示在rviz内部的marker删除;所以我们需要用另外一种方式消除marker,简单的来说就是发布一组新的marker覆盖掉当前的marker,我们将其值设置为透明或者长度设置为一个非常小的值之类的都可以实现这个效果,拿第一个画线的例子来说:

void marker_visualization::Clear_Lines_Marker()
{visualization_msgs::Marker clear_mark;for(int i =0;i<10;i++){clear_mark.ns = "line_mark";clear_mark.id = i; clear_mark.pose.orientation.x=0.0;clear_mark.pose.orientation.y=0.0;clear_mark.pose.orientation.z=0.0;clear_mark.pose.orientation.w=1.0;//lines.action = visualization_msgs::Marker::ADD;clear_mark.scale.x = 0.1;clear_mark.scale.y = 0.1;clear_mark.scale.z = 0.1;//设置线的颜色,a应该是透明度clear_mark.color.r = 1.0;clear_mark.color.g = 0.0;clear_mark.color.b = 0.0;clear_mark.color.a = 1.0;geometry_msgs::Point p_start;p_start.x = 0.0;p_start.y = 0.0;p_start.z = 0.0;clear_mark.points.push_back(p_start);geometry_msgs::Point p_end;p_end.x = 0.1;p_end.y = 0.0;p_end.z = 0.0;clear_mark.points.push_back(p_end);//这个是指定marker在被自动清除前可以逗留多长时间。这里 ros::Duration()表示不自动删除。如果在lifetime结束之前有新内容到达了,它就会被重置。clear_mark.lifetime = ros::Duration();clear_mark.header.frame_id = "map";clear_mark.header.stamp = ros::Time::now();MarkerArray.markers.push_back(clear_mark);clear_mark.points.clear();}lines_array_pub.publish(MarkerArray);MarkerArray.markers.clear();
}

以上是markerarray的一些简单用法,后期有更多用法继续更新。

如果需要复现的话详细的代码放在:

https://download.csdn.net/download/YiYeZhiNian/87135596

ROS MarkerArray的几种常见用法相关推荐

  1. 动词ing形式的5种用法_动词ing的几种常见用法

    龙源期刊网 http://www.qikan.com.cn 动词 ing 的几种常见用法 作者:张爱娟 来源:<中学生英语 · 阅读与写作> 2016 年第 10 期 为了让同学们更好掌握 ...

  2. Java接口的几种常见用法

    接口(interface)对于面向对象编程来说是一个非常重要的概念.它是一系列方法的声明,却没有具体实现.有些编程语言,比如swift,把接口解释成"协议(protocol)",我 ...

  3. 计算机excelsumif的公式,excel中sumif函数的几种常见用法

    在excel中sumif函数是一个非常有用的函数,它可以按条件进行求和.其实从这个函数的名字就可以看出来它是用来干什么的,SUM是求和,IF是如果.如果什么..就求和,其实就是按条件求和.本教程图文详 ...

  4. 二极管在LDO电路中的几种常见用法

    文章目录 1.防反接--二极管接在VIN端 2.防反接--二极管接在GND端 3.输入输出钳位保护 4.降压&防灌电 大家好,我是记得诚. 交流群的一次讨论,想到简单汇总一下,二极管在LDO电 ...

  5. linux中touch命令如何使用,Linux Touch命令的8种常见用法

    除了在Linux上简单地创建一个空文件之外,Linux touch命令还有更多的用途.您也可以使用它来更改现有文件的时间戳,包括它们的访问和修改时间.本文介绍了8种通过Linux终端使用touch命令 ...

  6. 消息模式Toast.makeText的几种常见用法

    转载自:http://daikainan.iteye.com/blog/1405575 Toast 是一个 View 视图,快速的为用户显示少量的信息. Toast 在应用程序上浮动显示信息给用户,它 ...

  7. java中for 的几种常见用法

    来自:http://blog.csdn.net/sunhui8888/article/details/7353746 J2SE 1.5提供了另一种形式的for循环.借助这种形式的for循环,可以用更简 ...

  8. android 消息模式Toast.makeText的几种常见用法

    Toast 是一个 View 视图,快速的为用户显示少量的信息. Toast 在应用程序上浮动显示信息给用户,它永远不会获得焦点,不影响用户的输入等操作,主要用于 一些帮助 / 提示. Toast 最 ...

  9. 实例讲解sed的9种常见用法

    转自:http://blog.csdn.net/showman/archive/2009/07/31/4396142.aspx 1.       打印:p [root@TestAs4 chap04]# ...

最新文章

  1. php static 和 global,php中global static和$GLOBALS使用与区别
  2. ACL 2019 | 基于知识增强的语言表示模型,多项NLP任务表现超越BERT(附论文解读)...
  3. NeHe OpenGL教程 第四十课:绳子的模拟
  4. 模型压缩的开源项目工具
  5. 分享Kali Linux 2016.2最新镜像20160919
  6. JLOI2015 解题报告
  7. 《火球——UML大战需求分析》(第1章 大话UML)——1.5 小结和练习
  8. sublime 关闭自动更新
  9. virtual 修饰符与继承对析构函数的影响(C++)
  10. php 开源邮件系统,企业级开源邮件系统搭建的全过程
  11. 大学生体育运动网页设计模板代码 校园篮球网页作业成品 学校篮球网页制作模板 学生简单体育运动网站设计成品...
  12. 2022-3-6 stm32串口通信实例(库函数)-学习笔记
  13. mysql数据库客户端--navicat for mysql 12中文破解版64位/32位 v12.0.29
  14. docker 编译 文件 执行 dockerfile 报错 :debconf: delaying package configuration, since apt-utils is not ins
  15. Apache ShenYu网关初体验
  16. 5336: [TJOI2018]party
  17. Android CHM文件阅读器
  18. 常规调幅系统matlab结果,matlab课程设计参考题目
  19. JavaScript函数isFinite()
  20. 在家上用宽带IPv6网站,下载六维,IPv4 to IPv6

热门文章

  1. Go 应用的持续性分析
  2. 算法手撕代码1~10
  3. 《1024 程序员节》—我喂自己袋盐
  4. egg使用egg-socket.io
  5. 测视力距离5米还是3米_3米视力表,5米视力表和3米的有什么不同吗?得出来的结果有什......
  6. “贫困县电商特产”大数据地图:一定有你青睐的特色产品
  7. 读冯友兰之《中国哲学简史》
  8. 如何做推广引流?教你利用音频长期被动引流
  9. JAVA开发中高级知识储备
  10. 《劝学》---附一篇《热爱生命》