Package Summary
Tags | No category tags. |
Version | 0.1.0 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/ieiauto/autodrrt.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2024-09-19 |
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
Additional Links
Maintainers
- Yamato Ando
- Kento Yabuuchi
- Masahiro Sakamoto
- Taiki Yamada
- Ryu Yamamoto
- Shintaro Sakoda
Authors
- Shintaro Sakoda
pose_instability_detector
The pose_instability_detector
package includes a node designed to monitor the stability of /localization/kinematic_state
, which is an output topic of the Extended Kalman Filter (EKF).
This node triggers periodic timer callbacks to compare two poses:
- The pose obtained by integrating the twist values from the last received message on
/localization/kinematic_state
over a duration specified byinterval_sec
. - The latest pose from
/localization/kinematic_state
.
The results of this comparison are then output to the /diagnostics
topic.
If this node outputs WARN messages to /diagnostics
, it means that the EKF output is significantly different from the integrated twist values.
This discrepancy suggests that there may be an issue with either the estimated pose or the input twist.
The following diagram provides an overview of what the timeline of this process looks like:
Parameters
{{ json_to_markdown(“localization/pose_instability_detector/schema/pose_instability_detector.schema.json”) }}
Input
Name | Type | Description |
---|---|---|
~/input/odometry |
nav_msgs::msg::Odometry | Pose estimated by EKF |
~/input/twist |
geometry_msgs::msg::TwistWithCovarianceStamped | Twist |
Output
Name | Type | Description |
---|---|---|
~/debug/diff_pose |
geometry_msgs::msg::PoseStamped | diff_pose |
/diagnostics |
diagnostic_msgs::msg::DiagnosticArray | Diagnostics |
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
tier4_localization_launch |
Launch files
- launch/pose_instability_detector.launch.xml
-
- node_name [default: pose_instability_detector]
- param_file [default: $(find-pkg-share pose_instability_detector)/config/pose_instability_detector.param.yaml]
- input_odometry [default: ~/input/odometry]
- input_twist [default: ~/input/twist]