-
Notifications
You must be signed in to change notification settings - Fork 668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ekf_lolcalizer): output variance for z, roll and pitch #8554
feat(ekf_lolcalizer): output variance for z, roll and pitch #8554
Conversation
Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also checked that the variance of z, roll, pitch appear in /localization/pose_twist_fusion_filter/biased_pose_with_covariance
and localization/kinematic_state
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8554 +/- ##
==========================================
- Coverage 23.99% 23.98% -0.02%
==========================================
Files 1384 1381 -3
Lines 102173 101500 -673
Branches 38939 38611 -328
==========================================
- Hits 24520 24344 -176
+ Misses 75092 74716 -376
+ Partials 2561 2440 -121
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…foundation#8554) publish covariance of z,roll.pitch Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
…foundation#8554) publish covariance of z,roll.pitch Signed-off-by: Yamato Ando <yamato.ando@tier4.jp>
Description
I modified ekf_localizer to output the variance for z, roll, and pitch.
Related links
Parent Issue:
How was this PR tested?
Lsim works.
And I have confirmed that the variances for z, roll, and pitch are being output from
/localization/pose_twist_fusion_filter/kinematic_state
and/localization/pose_twist_fusion_filter/biased_pose_with_covariance
.Notes for reviewers
The variable
dev_
inSimple1DFilter
is being treated as variance, not standard deviation. After this PR, I plan to submit another PR to renamedev_
tovar_
.Interface changes
None.
Effects on system behavior
None.