run_benchmark_ompl.launch 756 B

123456789101112131415161718192021
  1. <launch>
  2. <!-- This argument must specify the list of .cfg files to process for benchmarking -->
  3. <arg name="cfg" />
  4. <!-- Load URDF -->
  5. <include file="$(dirname)/planning_context.launch">
  6. <arg name="load_robot_description" value="true"/>
  7. </include>
  8. <!-- Start the database -->
  9. <include file="$(dirname)/warehouse.launch">
  10. <arg name="moveit_warehouse_database_path" value="moveit_ompl_benchmark_warehouse"/>
  11. </include>
  12. <!-- Start Benchmark Executable -->
  13. <node name="$(anon moveit_benchmark)" pkg="moveit_ros_benchmarks" type="moveit_run_benchmark" args="$(arg cfg) --benchmark-planners" respawn="false" output="screen">
  14. <rosparam command="load" file="$(find robot_config)/config/ompl_planning.yaml"/>
  15. </node>
  16. </launch>