Added ai vision model.

This commit is contained in:
张立军 2021-07-08 10:59:45 +08:00
parent 2ab79e73ea
commit 0b77a58479
3 changed files with 75692 additions and 1 deletions

File diff suppressed because one or more lines are too long

View file

@ -128,7 +128,7 @@
<joint name="joint2_to_joint1" type="revolute">
<joint name="joint2_to_joint1" type="revolute">
<axis xyz="0 0 1"/>
<limit effort = "1000.0" lower = "-3.14" upper = "3.14159" velocity = "0"/>
<parent link="joint1"/>

View file

@ -0,0 +1,29 @@
<?xml version="1.0"?>
<robot xmlns:xacro="http://www.ros.org/wiki/xacro" name="mycobot_ai" >
<xacro:property name="width" value=".2" />
<xacro:include filename="$(find mycobot_ros)/urdf/mycobot/mycobot_urdf.urdf" />
<link name="env">
<visual>
<geometry>
<!--- 0.0 0 -0.04 1.5708 3.14159-->
<mesh filename="package://mycobot_ros/urdf/mycobot/210110_6000_001_asm.dae"/>
</geometry>
<origin xyz = "0 0 0 " rpy = "1.5708 0 -1.5708"/>
</visual>
</link>
<joint name="vision_joint" type="fixed">
<axis xyz="0 0 0"/>
<limit effort = "1000.0" lower = "-3.14" upper = "3.14159" velocity = "0"/>
<parent link="joint1"/>
<child link="env"/>
<origin xyz= "0 0 0" rpy = "0 0 0"/>
</joint>
</robot>