mycobot_ros/launch/mycobot_moveit/run_benchmark_ompl.launch
张立军 ec99780783 fix urdf of launch error.
fix launch problem.
2021-07-06 15:40:42 +08:00

22 lines
909 B
XML

<launch>
<!-- This argument must specify the list of .cfg files to process for benchmarking -->
<arg name="cfg" default="" />
<!-- Load URDF -->
<include file="$(find mycobot_ros)/launch/mycobot_moveit/planning_context.launch">
<arg name="load_robot_description" value="true"/>
</include>
<!-- Start the database -->
<include file="$(find mycobot_ros)/launch/mycobot_moveit/warehouse.launch">
<arg name="moveit_warehouse_database_path" value="moveit_ompl_benchmark_warehouse"/>
</include>
<!-- Start Benchmark Executable -->
<node name="$(anon moveit_benchmark)" pkg="moveit_ros_benchmarks" type="moveit_run_benchmark" args="$(arg cfg) --benchmark-planners" respawn="false" output="screen">
<rosparam command="load" file="$(find mycobot_ros)/config/kinematics.yaml"/>
<rosparam command="load" file="$(find mycobot_ros)/config/ompl_planning.yaml"/>
</node>
</launch>