mycobot_ros/launch/run_benchmark_ompl.launch
2021-05-22 20:56:39 +09:00

22 lines
879 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/planning_context.launch">
<arg name="load_robot_description" value="true"/>
</include>
<!-- Start the database -->
<include file="$(find mycobot_ros)/launch/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>