-
Notifications
You must be signed in to change notification settings - Fork 715
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: merge changes that of 0.40.0
into humble
#9739
base: humble
Are you sure you want to change the base?
Conversation
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Kasunori-Nakajima <kazunori.nakajima@tier4.jp>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
…ble stop (#9353) * add updateParam for mrm comfortable stop Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * remove abs since it is not necessary Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> --------- Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
Signed-off-by: Kasunori-Nakajima <kazunori.nakajima@tier4.jp>
Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
…starts moving the steering (#9346) Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
) * make lanelet2_map_visualization independent Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * remove unused files Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * remove unused package Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * fix package name Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * add autoware_ prefix Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * add autoware to exec name Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * add autoware prefix Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> * removed unnecessary dependency Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com> --------- Signed-off-by: a-maumau <maumaumaumaumaumaumaumaumaumau@gmail.com>
… to lanelet functions (#9355) * add traffic light distance and modified goal allowance to avoidance data Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * add closest lanelet related variable to avoidanceData structure Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * use route handler for checking closest lanelet Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * use std::optional Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> --------- Signed-off-by: Go Sakayori <go.sakayori@tier4.jp>
…lannerData (#9292) Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
…ware (#9251) Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
…to launch for control modules (#9351) * update contro.launch for preset.xml Signed-off-by: xtk8532704 <1041084556@qq.com> * update options. Signed-off-by: xtk8532704 <1041084556@qq.com> * fix bug. Signed-off-by: xtk8532704 <1041084556@qq.com> * rename to enable_* Signed-off-by: xtk8532704 <1041084556@qq.com> * check group. Signed-off-by: xtk8532704 <1041084556@qq.com> * space. Signed-off-by: xtk8532704 <1041084556@qq.com> * reduce num of load_composable_node. Signed-off-by: xtk8532704 <1041084556@qq.com> * tmp save. Signed-off-by: xtk8532704 <1041084556@qq.com> * tmp save. Signed-off-by: xtk8532704 <1041084556@qq.com> * splite control modules' launch. Signed-off-by: xtk8532704 <1041084556@qq.com> * final version Signed-off-by: xtk8532704 <1041084556@qq.com> * remove on/off option for shift decider, vehicle cmd gate, and operation mode transition manager Signed-off-by: xtk8532704 <1041084556@qq.com> * pre-commit Signed-off-by: xtk8532704 <1041084556@qq.com> --------- Signed-off-by: xtk8532704 <1041084556@qq.com>
…handle for closest lanelet (#9367) use lanelet::utils for performance improvement Signed-off-by: Go Sakayori <gsakayori@gmail.com>
…#9259) Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
…ertainty (#9139) * feat: add Odometry uncertainty to object tracking Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: Add odometry heading uncertainty to object pose covariance feat: Rotate object pose covariance matrix to account for yaw uncertainty Rotate the object pose covariance matrix in the uncertainty_processor.cpp file to account for the yaw uncertainty. This ensures that the covariance matrix accurately represents the position uncertainty of the object. Refactor the code to rotate the covariance matrix using Eigen's Rotation2D class. The yaw uncertainty is added to the y-y element of the rotated covariance matrix. Finally, update the object_pose_cov array with the updated covariance values. Closes #123 Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: Add odometry motion uncertainty to object pose covariance Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> refactoring Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: Update ego twist uncertainty to the object velocity uncertainty Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: update object twist covariance by odometry yaw rate uncertainty Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: move uncertainty modeling to input side Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: add option to select odometry uncertainty Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * refactor: rename consider_odometry_uncertainty to enable_odometry_uncertainty Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * fix: transform to world first, add odometry covariance later Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> style(pre-commit): autofix Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> * feat: Add odometry heading uncertainty to object pose covariance Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp> --------- Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
…meter file (#9231) Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp> Co-authored-by: Yutaka Kondo <yutaka.kondo@youtalk.jp>
Signed-off-by: Kyoichi Sugahara <kyoichi.sugahara@tier4.jp>
Signed-off-by: veqcc <ryuta.kambe@tier4.jp>
Signed-off-by: veqcc <ryuta.kambe@tier4.jp>
…ecurity (#9378) Signed-off-by: veqcc <ryuta.kambe@tier4.jp>
…field (#9381) Signed-off-by: veqcc <ryuta.kambe@tier4.jp>
…9380) Signed-off-by: veqcc <ryuta.kambe@tier4.jp>
* fix docstring Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * add basic collision test Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * add some more tests Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> * add unit test for all functions Signed-off-by: Go Sakayori <gsakayori@gmail.com> * remove unecessary header and space Signed-off-by: Go Sakayori <gsakayori@gmail.com> --------- Signed-off-by: Go Sakayori <go.sakayori@tier4.jp> Signed-off-by: Go Sakayori <gsakayori@gmail.com>
…#9373) Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Ryuta Kambe <ryuta.kambe@tier4.jp>
* feat(mpc_lateral_controller): suppress rclcpp_warning/error Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * fix Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * fix test Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
…ion logic (#9612) fix: non-maximum suppression target decision logic Signed-off-by: Taekjin LEE <taekjin.lee@tier4.jp>
…9594) Signed-off-by: yuki-takagi-66 <yuki.takagi@tier4.jp>
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
* fix: dependent packages Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * feat: use steer angle, use warn for steer angle failure, calc curvature dicontinuously Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> * fix cppcheck Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com> --------- Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
… and big_vehicle_tracker (#9613) * refactor: define object_model_ at initialization * refactor: combine normal and big vehicle tracker
Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>
…ate-to-0.40.0 Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Signed-off-by: Junya Sasaki <junya.sasaki@tier4.jp>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## humble #9739 +/- ##
==========================================
+ Coverage 29.53% 29.62% +0.09%
==========================================
Files 1442 1442
Lines 108512 108350 -162
Branches 41405 41377 -28
==========================================
+ Hits 32049 32101 +52
+ Misses 73345 73132 -213
+ Partials 3118 3117 -1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
This pull request has been automatically marked as stale because it has not had recent activity. |
Description
This PR applies changes in that of
0.40.0
intohumble
How was this PR tested?
Currently the test strategy is under discussion with @mitsudome-r
Notes for reviewers
As this is a kind of breaking change for
humble
, effective strategy is needed for testing. Any your ideas for the test strategy, questions, and comments are highly appreciated!Effects on system behavior
The
humble
branch will have all features in the0.40.0