Advertisement
Guest User

Untitled

a guest
Jul 17th, 2024
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. collision_monitor:
  2. ros__parameters:
  3. base_frame_id: "base_footprint"
  4. odom_frame_id: "odom"
  5. cmd_vel_in_topic: "cmd_vel_raw"
  6. cmd_vel_out_topic: "cmd_vel"
  7. state_topic: "collision_monitor_state"
  8. transform_tolerance: 2.0 #0.5
  9. source_timeout: 5.0
  10. base_shift_correction: True
  11. stop_pub_timeout: 2.0
  12. # Polygons represent zone around the robot for "stop", "slowdown" and "limit" action types,
  13. # and robot footprint for "approach" action type.
  14. # Footprint could be "polygon" type with dynamically set footprint from footprint_topic
  15. # or "circle" type with static footprint set by radius. "footprint_topic" parameter
  16. # to be ignored in circular case.
  17. polygons: ["PolygonStop"]
  18. PolygonStop:
  19. type: "polygon"
  20. points: [0.3, 0.3, 0.3, -0.3, 0.0, -0.3, 0.0, 0.3]
  21. action_type: "stop"
  22. min_points: 4
  23. visualize: True
  24. polygon_pub_topic: "polygon_stop"
  25. enabled: True
  26. PolygonSlow:
  27. type: "polygon"
  28. points: [0.4, 0.4, 0.4, -0.4, -0.4, -0.4, -0.4, 0.4]
  29. action_type: "slowdown"
  30. min_points: 4
  31. slowdown_ratio: 0.3
  32. visualize: True
  33. polygon_pub_topic: "polygon_slowdown"
  34. enabled: True
  35. PolygonLimit:
  36. type: "polygon"
  37. points: [0.5, 0.5, 0.5, -0.5, -0.5, -0.5, -0.5, 0.5]
  38. action_type: "limit"
  39. min_points: 4
  40. linear_limit: 0.4
  41. angular_limit: 0.5
  42. visualize: True
  43. polygon_pub_topic: "polygon_limit"
  44. enabled: True
  45. FootprintApproach:
  46. type: "polygon"
  47. action_type: "approach"
  48. footprint_topic: "/local_costmap/published_footprint"
  49. time_before_collision: 2.0
  50. simulation_time_step: 0.1
  51. min_points: 6
  52. visualize: False
  53. enabled: True
  54. observation_sources: ["scan"]
  55. scan:
  56. type: "scan"
  57. topic: "scan"
  58. enabled: True
  59. pointcloud:
  60. type: "pointcloud"
  61. topic: "/intel_realsense_r200_depth/points"
  62. min_height: 0.1
  63. max_height: 0.5
  64. enabled: True
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement