No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.2.0
License Apache 2
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/autowarefoundation/autoware_tools.git
VCS Type git
VCS Version main
Last Updated 2025-04-03
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

The parameter_estimator

Additional Links

No additional links.

Maintainers

  • Taiki Tanaka
  • Tomoya Kimura

Authors

No additional authors.

ParameterEstimation

This parameter estimation node estimates a default parameters from inputs for steer offset,wheel base and gear ratio.

I/O

input

The following topics are used to estimate the parameters.

  • /sensing/imu/imu_data: used as vehicle angular velocity
  • /vehicle/status/twist: used as vehicle velocity
  • /vehicle/status/steering: used as vehicle steering angle (Only used in Steer Offset Estimator & Wheel Base Estimator)
  • /calibration/vehicle/handle_status: used as vehicle handle angle (Only used in Gear Estimator)
  • /vehicle/engage: used to check the driving operation status

output

The following topics are the output

  • /vehicle/status/gear_ratio
  • /vehicle/status/steering_offset
  • /vehicle/status/wheel_base

For users, the EstimationResult.msg output contains the following items:

  • result: Estimated result.
  • result_mean: Average value of result.
  • result_stddev: Standard deviation value of the estimated parameter
  • absolute_error: Absolute error of the estimated parameters
  • mean_absolute_error: Mean absolute error of the estimated parameters
  • stddev_absolute_error: Standard Deviation of absolute error of the estimated parameters

These values can be confirmed in plot_juggler

  • To display in the plot juggler, you need to drag the result into the table, currently plot juggler cannot auto display the value

How to Run Parameter Estimator

Note: You need to build the Autoware beforehand.

The following command will start the parameter estimation node.

ros2 launch parameter_estimator parameter_estimator.launch.xml vehicle_model:=lexus

  • The following arguments are using to select the estimator, default is true
    • select_gear_ratio_estimator
    • select_steer_offset_estimator
    • select_wheel_base_estimator
  • To deselect the specific estimator, you need to set estimator to false
  • Example, the following command will only launch gear ratio estimator
ros2 launch parameter_estimator parameter_estimator.launch.xml vehicle_model:=lexus select_steer_offset_estimator:=false select_wheel_base_estimator:=false

If you want to launch with Rviz, use the following launch file. Currently unavailable

# Launch parameter Estimator with the Autoware
$ ros2 launch parameter_estimator parameter_estimator_with_simulation.launch.xml map_path:=.../kashiwanoha2/ vehicle_model:=jpntaxi sensor_model:=aip_xx1 rviz:=true

How to check the estimated parameters

The necessary information is plotted in the plot_juggler, which displays the following information from top to bottom.

  • First row: Estimation results confirmation
  • Second row: error for estimation

You need to adjust the value of (valid_min_) or (valid_max_). according to the standard deviation to determine the validity of the data.

Estimation results confirmation

Check the estimation results.

  • result : parameter estimated at each step
  • result_mean : Average of the parameters
  • result_stddev : Standard deviation of the estimated parameters

It is preferable to use the _mean for the calibration results.

The parameters estimation starts when enough data is stored. The output value is zero until it is ready.

Error for parameters estimation

Check the statistics of the errors in the input/output data after the parameter estimation.

  • absolute_error : absolute error of measured and estimated of the parameters estimation
  • mean_absolute_error : Mean of the absolute error calculated in each estimation step
  • stddev_absolute_error : Standard deviation of the absolute error calculated in each estimation step

If these values are large, the model needs to be reconsidered.

Data preprocessing

Examine the results of processing the input data

Data that do not satisfy the following conditions are considered invalid and will not be used for estimation.

  • Data variation (evaluated by standard deviation) is smaller than the threshold
  • The car is not in automatic operation mode (judged from Autoware’s Engage, Vehicle’s Engage, etc.)
CHANGELOG

Changelog for package parameter_estimator

0.2.0 (2025-03-24)

0.1.0 (2025-01-28)

  • unify version to 0.0.0
  • feat(parameter_estimator)!: replace tier4_debug_msgs with tier4_internal_debug_msgs (#198)
    • feat(parameter_estimator)!: replace tier4_debug_msgs with tier4_internal_debug_msgs

    * style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com>

  • refactor(global_parameter_loader): prefix package and namespace with autoware (#159)
  • fix: some fix on calibration_adapter and parameter_estimator (#127)
    • some fix on calibration_adapter and parameter_estimator
    • minor fix

    * style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com> Co-authored-by: Yuxuan Liu <<619684051@qq.com>>

  • Changed from map.launch.py to map.launch.xml (#71)
  • feat: add vehicle, control and localization calibration tools (#22)
    • add vehicle control localization tools
    • style(pre-commit): autofix
    • fix pre commit
    • Fix to pass cspell about localization
    • ignore words from spellcheck
    • ROS2 -> ROS 2
    • feat: convert autoware_auto_msg to autoware_msg (#42)
    • merge
    • delete autoware_auto

    * style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com>

    • add prefix to vehicle_info_utils
    • style(pre-commit): autofix
    • fix: add s to VehicleInfoUtil

    * fix

    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]\@users.noreply.github.com> Co-authored-by: Shintaro Sakoda <<shintaro.sakoda@tier4.jp>> Co-authored-by: SakodaShintaro <<rgbygscrsedppbwg@gmail.com>> Co-authored-by: tomoya.kimura <<tomoya.kimura@tier4.jp>>

  • Contributors: Esteve Fernandez, KeiNakazato, Ryohsuke Mitsudome, SakodaShintaro, Yutaka Kondo, yabuta

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Launch files

  • launch/parameter_estimator_with_simulation.launch.xml
      • map_path — point cloud and lanelet2 map directory path
      • vehicle_model
      • sensor_model
      • rviz [default: true] — launch rviz
      • lanelet2_map_file [default: lanelet2_map.osm]
      • pointcloud_map_file [default: pointcloud_map.pcd]
  • launch/parameter_estimator.launch.xml
      • vehicle_model [default: lexus]
      • select_gear_ratio_estimator [default: true]
      • select_steer_offset_estimator [default: true]
      • select_wheel_base_estimator [default: true]
      • invert_imu_z [default: true]
      • is_showing_debug_info [default: true]
      • parameter_estimator_param [default: $(find-pkg-share parameter_estimator)/config/parameter_estimator_param.yaml]
      • imu_twist [default: /sensing/imu/imu_data]
      • use_auto_mode [default: false]
      • show_plot [default: false]

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged parameter_estimator at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.