Linux   发布时间:2022-05-08  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了4.8-URDF in ROS大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

机器人模型构建

前言

  • 目的:构建包含P3AT本体+cyton机械臂+相机的可视化环境?+云台相机+二维激光+。。。
  • rviz并不是仿真环境,而是提供一个从Linux环境的可视化环境,这样,整个机器人操作系统就多了一个环节,即可以多机远程登陆,在三维可视化环境中访问机器人状态。
    gazbo才是仿真环境,老板指出,现在当务之急是做一个仿真器,在没有机器人实体的情况下进行仿真开发和测试。

机器人模型构建
前言

学习记录
基础知识
基本步骤
从建模工具快速生成urdf
TOC

学习记录

基础知识

ros packages for modeling
URDF model and code
Xacro model
robot description
create rotot descroption using ros paclages for robot modeling
Gazebo is a 3D rigid-body physics simulator (including a graphical interfacE).
物理仿真环境
rviz is a tool for 3D visualization of data from other ROS nodes as well as some support for sending commands to other ROS nodes.
可视化工具
packages
urdf
link
joint
robot
gazebo(not included in rviz)
View it in rviz
roslaunch decription_pkg view_demo.launch
use the joint state publisher to control
adding physical and collision properties to a urdf model
joint_state_publisher
controling sliders
kdl_parser
xacro
with complex robot models
urdf的方便之处在于,一套模型可以有多种配置,但是想要将这套模型与另一套模型耦合起来的时候就很麻烦了,xarco就是为了这个而产生的
xarco包含变量,常亮,数学表达式,条件语句等等提供灵活性的东西
优点在于,简化和可编程性
robot_state_publisher
After discussing the robot model,we can view the designed xacro file in RViz and
control each joint using the joint state publisher node and publish the robot
state using the Robot State Publisher.
the two publishers

基本步骤

具体步骤
各个显示
编写xacro
全部显示出来
sudo apt-get install liburdfdom-tools
先做rviz可视化

从建模工具快速生成urdf

  • 当前有两种建模工具支持快速生成文件,Windows 上的solidworks 2012和Linux上的blender。
  • Solidworks2012使用插件
  • blender可以使用插件,也可以先导出为dae格式,然后使用COllada_urdf工具转化

大佬总结

以上是大佬教程为你收集整理的4.8-URDF in ROS全部内容,希望文章能够帮你解决4.8-URDF in ROS所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:这样