Advertisement
Guest User

mapper_params_online_async.yaml

a guest
Jul 30th, 2023
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. slam_toolbox:
  2. ros__parameters:
  3.  
  4. # Plugin params
  5. solver_plugin: solver_plugins::CeresSolver
  6. ceres_linear_solver: SPARSE_NORMAL_CHOLESKY
  7. ceres_preconditioner: SCHUR_JACOBI
  8. ceres_trust_strategy: LEVENBERG_MARQUARDT
  9. ceres_dogleg_type: TRADITIONAL_DOGLEG
  10. ceres_loss_function: None
  11.  
  12. # ROS Parameters
  13. odom_frame: odom
  14. map_frame: map
  15. base_frame: base_footprint
  16. scan_topic: left_scan #fused_scan #real_kinect_sensor/scan
  17. mode: mapping #localization
  18.  
  19. # if you'd like to immediately start continuing a map at a given pose
  20. # or at the dock, but they are mutually exclusive, if pose is given
  21. # will use pose
  22. #map_file_name: test_steve
  23. # map_start_pose: [0.0, 0.0, 0.0]
  24. #map_start_at_dock: true
  25.  
  26. debug_logging: false
  27. throttle_scans: 1
  28. transform_publish_period: 0.02 #if 0 never publishes odometry
  29. map_update_interval: 5.0
  30. resolution: 1.0
  31. max_laser_range: 100.0 #for rastering images
  32. minimum_time_interval: 0.5
  33. transform_timeout: 0.2
  34. tf_buffer_duration: 30.
  35. stack_size_to_use: 40000000 #// program needs a larger stack size to serialize large maps
  36. enable_interactive_mode: true
  37.  
  38. # General Parameters
  39. use_scan_matching: true
  40. use_scan_barycenter: true
  41. minimum_travel_distance: 0.5
  42. minimum_travel_heading: 0.5
  43. scan_buffer_size: 100
  44. scan_buffer_maximum_scan_distance: 100.0
  45. link_match_minimum_response_fine: 0.1
  46. link_scan_maximum_distance: 100.0
  47. loop_search_maximum_distance: 100.0
  48. do_loop_closing: true
  49. loop_match_minimum_chain_size: 100
  50. loop_match_maximum_variance_coarse: 3.0
  51. loop_match_minimum_response_coarse: 0.35
  52. loop_match_minimum_response_fine: 0.45
  53.  
  54. # Correlation Parameters - Correlation Parameters
  55. correlation_search_space_dimension: 0.5
  56. correlation_search_space_resolution: 0.01
  57. correlation_search_space_smear_deviation: 0.1
  58.  
  59. # Correlation Parameters - Loop Closure Parameters
  60. loop_search_space_dimension: 15.0
  61. loop_search_space_resolution: 0.05
  62. loop_search_space_smear_deviation: 0.03
  63.  
  64. # Scan Matcher Parameters
  65. distance_variance_penalty: 0.5
  66. angle_variance_penalty: 1.0
  67.  
  68. fine_search_angle_offset: 0.00349
  69. coarse_search_angle_offset: 0.349
  70. coarse_angle_resolution: 0.0349
  71. minimum_angle_penalty: 0.9
  72. minimum_distance_penalty: 0.5
  73. use_response_expansion: true
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement