Skip to content
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

chore: sync upstream #1078

Merged
merged 88 commits into from
Dec 20, 2023
Merged

chore: sync upstream #1078

merged 88 commits into from
Dec 20, 2023

Conversation

tier4-autoware-public-bot[bot]
Copy link

Features

Bug Fixes

Documentation

Code Refactoring

Performance Improvements

Builds

Chores

TaikiYamada4 and others added 30 commits December 6, 2023 15:25
…asurementPose/Twist (autowarefoundation#5691)

* Added X_delay_times_ to obtain the accumulated lap times of the timer callback.
Added find_closest_index function to easily use the X_delay_times_.

Signed-off-by: TaikiYamada4 <[email protected]>

* Added a concept/variable of accumulated_delay_time_ and store every lap time of timer callback.
The delay_step will be calculated from it, and the bug of calculating delay_step should be gone.
Besides, removed dt in measurementUpdatePose/Twist since it is not needed.

Signed-off-by: TaikiYamada4 <[email protected]>

* Fixed dt to ekf_dt_ in predictUpdateFrequency()

Signed-off-by: TaikiYamada4 <[email protected]>

* Removed temporary debug stuff

Signed-off-by: TaikiYamada4 <[email protected]>

* style(pre-commit): autofix

* Fixed code style pointed out from pre-commit.ci

Signed-off-by: TaikiYamada4 <[email protected]>

* style(pre-commit): autofix

* Fixed typo

Signed-off-by: TaikiYamada4 <[email protected]>

* Removed variable ekf_rate_ which is currently unused.
Added warnings when the ekf_dt_ is too large.

Signed-off-by: TaikiYamada4 <[email protected]>

* style(pre-commit): autofix

* Changed threshold of delay time so that to look the most last (or largest) value of accumulated_delay_times_

Signed-off-by: TaikiYamada4 <[email protected]>

* Correct the warning messages of diag_info to look up the last (or largest) value of accumulated_delay_times_

Signed-off-by: TaikiYamada4 <[email protected]>

* style(pre-commit): autofix

---------

Signed-off-by: TaikiYamada4 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
…foundation#5792)

1. The `updateData()` function now sets `status_.is_safe_dynamic_objects` to true when `requiresDynamicObjectsCollisionDetection()` returns false.

2. The `isExecutionReady()` function now checks for dynamic object collisions only if `requiresDynamicObjectsCollisionDetection()` returns true and `isWaitingApproval()` also returns true. This change ensures that dynamic object collision detection is performed only when necessary and approval is pending.

Signed-off-by: kyoichi-sugahara <[email protected]>
…dation#5782)

* feat(start_planner): add surround moving obstacle check
This commit introduces a new feature in the start_planner module for checking surrounding moving obstacles.
- It adds parameters to specify the search radius and threshold velocity for moving obstacles, along with flags to indicate which types of objects should be checked.
- The `noMovingObjectsAround` function has been added to filter dynamic objects within a certain radius based on their velocity.
  - If no moving objects are detected, the function returns true; otherwise, it returns false.
- This feature enhances the safety of the start_planner by ensuring that the path can't be approved while surrond moving obstacles exist.
---------
Signed-off-by: kyoichi-sugahara <[email protected]>
…warefoundation#5790)

* refactor(avoidance): separate package

Signed-off-by: satoshi-ota <[email protected]>

* refactor(AbLC): separate package

Signed-off-by: satoshi-ota <[email protected]>

* refactor(bpp): remove separate module

Signed-off-by: satoshi-ota <[email protected]>

* fix(bpp): fix test error

Signed-off-by: satoshi-ota <[email protected]>

---------

Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: GitHub <[email protected]>
Co-authored-by: github-actions <[email protected]>
…utowarefoundation#5758)

* refactor(motion_velocity_smoother): boost::optional to std::optional

Signed-off-by: Zulfaqar Azmi <[email protected]>

* style(pre-commit): autofix

---------

Signed-off-by: Zulfaqar Azmi <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
…dation#5802)

* separate packages

Signed-off-by: kyoichi-sugahara <[email protected]>

---------

Signed-off-by: kyoichi-sugahara <[email protected]>
…ic signals with duplicated ids (autowarefoundation#5653)

* fix: add operation to remove traffic signals with duplicated ids

Signed-off-by: ktro2828 <[email protected]>

* feat: move operation into `crosswalk_traffic_light_estimator`

Signed-off-by: ktro2828 <[email protected]>

---------

Signed-off-by: ktro2828 <[email protected]>
…owarefoundation#5769)

* rework multi object tracker parameters

Signed-off-by: yoshiri <[email protected]>

* update README

Signed-off-by: yoshiri <[email protected]>

* rework radar tracker parameter too

Signed-off-by: yoshiri <[email protected]>

---------

Signed-off-by: yoshiri <[email protected]>
* fix typo
* update comments

Signed-off-by: Yuki Takagi <[email protected]>
detection_by_tracker_param_path was missing

Signed-off-by: Taekjin LEE <[email protected]>
* refactor(lane_change): move lane change params

Signed-off-by: satoshi-ota <[email protected]>

* fix(avoidance): remove unnecessary param path

Signed-off-by: satoshi-ota <[email protected]>

---------

Signed-off-by: satoshi-ota <[email protected]>
…imes to obtain accurate computation of delay_time (autowarefoundation#5821)

Correct accumulated_delay_times in ekf_localizer so that the delay_step is computed accurately.

Signed-off-by: TaikiYamada4 <[email protected]>
…5820)

* refactor(side_shift): separate side shift module

Signed-off-by: satoshi-ota <[email protected]>

* refactor(bpp): remove side shift module

Signed-off-by: satoshi-ota <[email protected]>

---------

Signed-off-by: satoshi-ota <[email protected]>
…warefoundation#5689)

fix(avoidance): output invalid avoidance path

Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: GitHub <[email protected]>
Co-authored-by: github-actions <[email protected]>
…interpolate (autowarefoundation#5818)

Fixed rejection criteria of SmartPoseBuffer::interpolate

Signed-off-by: Shintaro Sakoda <[email protected]>
…arefoundation#5819)

* fix(traffic_light): stop if the traffic light signal timed out

Signed-off-by: Fumiya Watanabe <[email protected]>

* fix(traffic_light): fix README format

Signed-off-by: Fumiya Watanabe <[email protected]>

---------

Signed-off-by: Fumiya Watanabe <[email protected]>
…c_time/elapsed_time, tentative objects (autowarefoundation#5762)

* enable debugger in tracker

Signed-off-by: yoshiri <[email protected]>

* fix uninitialized class variable

Signed-off-by: yoshiri <[email protected]>

* feat: separate debugger class for simplification

Signed-off-by: yoshiri <[email protected]>

---------

Signed-off-by: yoshiri <[email protected]>
doc(intersection): add image

Signed-off-by: Mamoru Sobue <[email protected]>
@TakaHoribe TakaHoribe merged commit 15e7690 into beta/v0.19.0 Dec 20, 2023
11 of 14 checks passed
@TakaHoribe TakaHoribe deleted the sync-upstream branch December 20, 2023 01:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.