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

Commits on Dec 6, 2023

  1. fix(ekf_localizer): correct the calculation of delay_step in updateMe…

    …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>
    TaikiYamada4 and pre-commit-ci[bot] authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    a1f354d View commit details
    Browse the repository at this point in the history
  2. fix(start_planner): check safety only when waiting approval (autoware…

    …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]>
    kyoichi-sugahara authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ea958a2 View commit details
    Browse the repository at this point in the history
  3. feat(start_planner): add surround moving obstacle check (autowarefoun…

    …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]>
    kyoichi-sugahara authored Dec 6, 2023
    Configuration menu
    Copy the full SHA
    ab4a3eb View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2023

  1. refactor(avoidance, avoidance_by_lane_change): separate package (auto…

    …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]>
    satoshi-ota authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    13d45ae View commit details
    Browse the repository at this point in the history
  2. chore: update CODEOWNERS (autowarefoundation#5800)

    Signed-off-by: GitHub <[email protected]>
    Co-authored-by: github-actions <[email protected]>
    awf-autoware-bot[bot] and github-actions authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    c95b997 View commit details
    Browse the repository at this point in the history
  3. refactor(motion_velocity_smoother): boost::optional to std::optional (a…

    …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>
    zulfaqar-azmi-t4 and pre-commit-ci[bot] authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    dd0d6eb View commit details
    Browse the repository at this point in the history
  4. refactor(start_planner, goal_planner): separate package (autowarefoun…

    …dation#5802)
    
    * separate packages
    
    Signed-off-by: kyoichi-sugahara <[email protected]>
    
    ---------
    
    Signed-off-by: kyoichi-sugahara <[email protected]>
    kyoichi-sugahara authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    49c95d1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3ec6201 View commit details
    Browse the repository at this point in the history
  6. refactor(behavior_path_planner): delete unnecessary TODO (autowarefou…

    …ndation#5806)
    
    delete unnecessary TODO
    
    Signed-off-by: kyoichi-sugahara <[email protected]>
    kyoichi-sugahara authored Dec 7, 2023
    Configuration menu
    Copy the full SHA
    566c57f View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. chore(bpp): update maintainer (autowarefoundation#5809)

    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    089e8f2 View commit details
    Browse the repository at this point in the history
  2. fix(crosswalk_traffic_light_estimator): add operation to remove traff…

    …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]>
    ktro2828 authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    795d787 View commit details
    Browse the repository at this point in the history
  3. refactor(multi_object_tracker): put node parameters to yaml file (aut…

    …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]>
    YoshiRi authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    aeb461a View commit details
    Browse the repository at this point in the history
  4. chore(crosswalk): update comments (autowarefoundation#5813)

    * fix typo
    * update comments
    
    Signed-off-by: Yuki Takagi <[email protected]>
    yuki-takagi-66 authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    0e9d1f0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f582b5a View commit details
    Browse the repository at this point in the history
  6. fix: add missing param on perception launch: (autowarefoundation#5812)

    detection_by_tracker_param_path was missing
    
    Signed-off-by: Taekjin LEE <[email protected]>
    technolojin authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    1bac0bf View commit details
    Browse the repository at this point in the history
  7. refactor(lane_change): move lane change param (autowarefoundation#5807)

    * 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]>
    satoshi-ota authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    1f7ad17 View commit details
    Browse the repository at this point in the history
  8. fix(ekf_localizer): correct the initialization of accumulated_delay_t…

    …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]>
    TaikiYamada4 authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    055bc9d View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    9b4cd9c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    64d12e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2023

  1. refactor(side_shift): separate side shift module (autowarefoundation#…

    …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]>
    satoshi-ota authored Dec 9, 2023
    Configuration menu
    Copy the full SHA
    41e5903 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2023

  1. fix(avoidance): output invalid avoidance path with unsafe state (auto…

    …warefoundation#5689)
    
    fix(avoidance): output invalid avoidance path
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 10, 2023
    Configuration menu
    Copy the full SHA
    851de09 View commit details
    Browse the repository at this point in the history
  2. chore: update CODEOWNERS (autowarefoundation#5811)

    Signed-off-by: GitHub <[email protected]>
    Co-authored-by: github-actions <[email protected]>
    awf-autoware-bot[bot] and github-actions authored Dec 10, 2023
    Configuration menu
    Copy the full SHA
    281f1ec View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. fix(localization_util): fixed rejection criteria of SmartPoseBuffer::…

    …interpolate (autowarefoundation#5818)
    
    Fixed rejection criteria of SmartPoseBuffer::interpolate
    
    Signed-off-by: Shintaro Sakoda <[email protected]>
    SakodaShintaro authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    89d4462 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    32712ab View commit details
    Browse the repository at this point in the history
  3. feat(obstacle_cruise_planner): add jerk and acc limits for slow-down (a…

    …utowarefoundation#5810)
    
    Add jerk and acc limits for slow-down
    
    Signed-off-by: Daniel Sanchez <[email protected]>
    danielsanchezaran authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    f41d3fa View commit details
    Browse the repository at this point in the history
  4. fix(traffic_light): stop if the traffic light signal timed out (autow…

    …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]>
    rej55 authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5d6cfef View commit details
    Browse the repository at this point in the history
  5. feat(multi_object_tracker): add debugger output processing_time/cycli…

    …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]>
    YoshiRi authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    e58eac5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4f7e895 View commit details
    Browse the repository at this point in the history
  7. docs(intersection): add image (autowarefoundation#5833)

    doc(intersection): add image
    
    Signed-off-by: Mamoru Sobue <[email protected]>
    soblin authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    5af6f44 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    91290a3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    14e84ee View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8cd0628 View commit details
    Browse the repository at this point in the history
  11. feat(radar_threshold_filter): add unit test (autowarefoundation#5817)

    * update cmakelists
    
    Signed-off-by: N-Eiki <[email protected]>
    
    * add z filter param
    
    Signed-off-by: N-Eiki <[email protected]>
    
    * isWithin func private -> public
    
    Signed-off-by: N-Eiki <[email protected]>
    
    * add test code
    
    Signed-off-by: N-Eiki <[email protected]>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: N-Eiki <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Satoshi Tanaka <[email protected]>
    3 people authored Dec 11, 2023
    Configuration menu
    Copy the full SHA
    84b658b View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Configuration menu
    Copy the full SHA
    012fb51 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a0c837 View commit details
    Browse the repository at this point in the history
  3. fix(planning): fix typo (autowarefoundation#5841)

    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    6533c72 View commit details
    Browse the repository at this point in the history
  4. fix(landmark_manager): changed to a shared library (autowarefoundatio…

    …n#5848)
    
    Changed landmark_manager to a shared library
    
    Signed-off-by: Shintaro SAKODA <[email protected]>
    SakodaShintaro authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    2da91e9 View commit details
    Browse the repository at this point in the history
  5. refactor(localization_launch, ground_segmentation_launch): rename lid…

    …ar topic (autowarefoundation#5781)
    
    rename lidar topic
    
    Signed-off-by: yamato-ando <Yamato ANDO>
    Co-authored-by: yamato-ando <Yamato ANDO>
    YamatoAndo authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    3e62ad4 View commit details
    Browse the repository at this point in the history
  6. feat(multi_object_tracker): enable to output perception topic delay w…

    …ithin diagnostics (autowarefoundation#5840)
    
    * 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]>
    
    * enable check topic delay by diagnostics
    
    Signed-off-by: yoshiri <[email protected]>
    
    * fix: update diagnostics periods and threshold
    
    Signed-off-by: yoshiri <[email protected]>
    
    ---------
    
    Signed-off-by: yoshiri <[email protected]>
    YoshiRi authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    6d62096 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    68b4132 View commit details
    Browse the repository at this point in the history
  8. feat(rtc_interface): add publisher to publish auto mode status (autow…

    …arefoundation#5845)
    
    add publisher to publish auto mode status
    
    Signed-off-by: kyoichi-sugahara <[email protected]>
    kyoichi-sugahara authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    341d35e View commit details
    Browse the repository at this point in the history
  9. build(detection_by_tracker): move utils.hpp file to the detection_by_…

    …tracker folder and namespace to avoid conflicts (autowarefoundation#5837)
    
    * build(detection_by_tracker): move utils.hpp file to the detection_by_tracker folder and namespace to avoid conflicts
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] authored Dec 12, 2023
    Configuration menu
    Copy the full SHA
    dd3050a View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2023

  1. refactor(blind_spot_module): boost::optional to std::optional (autowa…

    …refoundation#5831)
    
    refactor(blind_spot_module: boost::optional to std::optional
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    zulfaqar-azmi-t4 authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    c3dcd81 View commit details
    Browse the repository at this point in the history
  2. feat(tracking_object_merger): check motion direction and yaw directio…

    …n to prevent unintended direction update (autowarefoundation#5853)
    
    * fix: add function to check object direction before merging object states
    
    Signed-off-by: yoshiri <[email protected]>
    
    * refactor: add warning in update whole tracked object
    
    Signed-off-by: yoshiri <[email protected]>
    
    ---------
    
    Signed-off-by: yoshiri <[email protected]>
    YoshiRi authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    705a70d View commit details
    Browse the repository at this point in the history
  3. fix(behavior, launch): fix launch error (autowarefoundation#5847)

    * fix(launch): set null to avoid launch error
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(behavior): check null
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * chore(behavior): add comment
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(launch): set  at the end of list
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(launch): fill empty string at the end of module list
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    ---------
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    a25114a View commit details
    Browse the repository at this point in the history
  4. refactor(avoidance): use drivable bound to calculate road shoulder di…

    …stance (autowarefoundation#5799)
    
    * refactor(utils): use drivable bound to calculate road shoulder distance
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(AbLC): set drivable bound
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * feat(avoidance): output road shoulder distance marker
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    ---------
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    b4ba3e1 View commit details
    Browse the repository at this point in the history
  5. fix(multi_object_tracker): fix typo in node yaml parameter (autowaref…

    …oundation#5856)
    
    fix: fix typo in node yaml parameter
    
    Signed-off-by: yoshiri <[email protected]>
    YoshiRi authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    1de8fc5 View commit details
    Browse the repository at this point in the history
  6. feat: add Planning Msg Adapter (autowarefoundation#5814)

    * fix:planning_adapter
    
    Signed-off-by: jack.song <[email protected]>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <[email protected]>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <[email protected]>
    
    * fix:planning_adapter
    
    Signed-off-by: jack.song <[email protected]>
    
    * fix:add planning adapter
    
    Signed-off-by: jack.song <[email protected]>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: jack.song <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Takagi, Isamu <[email protected]>
    3 people authored Dec 13, 2023
    Configuration menu
    Copy the full SHA
    5723f72 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7477e9a View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. refactor(ar_tag_based_localizer): refactor pub/sub and so on (autowar…

    …efoundation#5854)
    
    * Fixed ar_tag_based_localizer pub/sub
    
    Signed-off-by: Shintaro SAKODA <[email protected]>
    
    * Remove dependency on image_transport
    
    Signed-off-by: Shintaro SAKODA <[email protected]>
    
    ---------
    
    Signed-off-by: Shintaro SAKODA <[email protected]>
    SakodaShintaro authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    dff91ba View commit details
    Browse the repository at this point in the history
  2. feat(shape_estimation): add bicycle shape corrector (autowarefoundati…

    …on#5860)
    
    * feat(shape_estimation): add bicycle shape corrector
    
    Signed-off-by: Kaan Çolak <[email protected]>
    
    * style(pre-commit): autofix
    
    * feat(shape_estimation): add bicycle shape corrector
    
    Signed-off-by: Kaan Çolak <[email protected]>
    
    ---------
    
    Signed-off-by: Kaan Çolak <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    kaancolak and pre-commit-ci[bot] authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    3d40702 View commit details
    Browse the repository at this point in the history
  3. feat(simple_planning_simulator): add mesurent_steer_bias (autowarefou…

    …ndation#5868)
    
    * feat(simple_planning_simulator): add mesurent_steer_bias
    
    Signed-off-by: kosuke55 <[email protected]>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: kosuke55 <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    kosuke55 and pre-commit-ci[bot] authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    d4d632a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4fc8a4e View commit details
    Browse the repository at this point in the history
  5. refactor(lane_change): separate lane change and external request (aut…

    …owarefoundation#5850)
    
    * refactor(lane_change): separate lane change and external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * refactored external request lane change
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * separate on external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * style(pre-commit): autofix
    
    * delete external request
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix interface
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix external lane change couldn't be initialize
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix documents
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix link in README
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix based on comments
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * add ament auto package
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * Update planning/behavior_path_lane_change_module/test/test_behavior_path_planner_node_interface.cpp
    
    Co-authored-by: Satoshi OTA <[email protected]>
    
    * Update planning/behavior_path_external_request_lane_change_module/test/test_behavior_path_planner_node_interface.cpp
    
    Co-authored-by: Satoshi OTA <[email protected]>
    
    * fix test
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix AbLC test
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    ---------
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: Satoshi OTA <[email protected]>
    3 people authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    1b6cc51 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    2252226 View commit details
    Browse the repository at this point in the history
  7. build(detected_object_validation): move header files to a separate di…

    …rectory to avoid conflicts (autowarefoundation#5851)
    
    * build(detected_object_validation): move header files to a separate directory to avoid conflicts
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    
    * style(pre-commit): autofix
    
    ---------
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    4cd4688 View commit details
    Browse the repository at this point in the history
  8. fix(traffic_light_visualization): move header directory to match pack…

    …age name (autowarefoundation#5864)
    
    * fix(traffic_light_visualization): move header directory to match package name
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    
    * style(pre-commit): autofix
    
    * fix: fix include
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    
    ---------
    
    Signed-off-by: Esteve Fernandez <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    esteve and pre-commit-ci[bot] authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    0ae2685 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. refactor(compare_map_segmentation): rework parameters (autowarefounda…

    …tion#5005)
    
    * refactor the configuration files of the node compare_map_segmentation according to the new ROS node config guideline.
    
    Signed-off-by: yuntianyi-chen <[email protected]>
    
    * style(pre-commit): autofix
    
    * Add three parameters
    
    Signed-off-by: yuntianyi-chen <[email protected]>
    
    * style(pre-commit): autofix
    
    * Update perception/compare_map_segmentation/config/distance_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <[email protected]>
    
    * Update perception/compare_map_segmentation/config/voxel_based_approximate_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <[email protected]>
    
    * Update perception/compare_map_segmentation/config/voxel_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <[email protected]>
    
    * Update perception/compare_map_segmentation/config/voxel_distance_based_compare_map_filter.param.yaml
    
    Co-authored-by: badai nguyen  <[email protected]>
    
    * Update perception/compare_map_segmentation/schema/voxel_based_approximate_compare_map_filter.schema.json
    
    Co-authored-by: badai nguyen  <[email protected]>
    
    ---------
    
    Signed-off-by: yuntianyi-chen <[email protected]>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: badai nguyen <[email protected]>
    3 people authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    34241d6 View commit details
    Browse the repository at this point in the history
  2. feat(behavior_velocity_planner_common): add objects_of_interest_marke…

    …r_intereface to behavior_velocity_planner (autowarefoundation#5875)
    
    * feat(behavior_velocity_planner_common): add objects_of_interest_marker_intereface to behavior_velocity_planner
    
    Signed-off-by: Fumiya Watanabe <[email protected]>
    
    * fix(behavior_velocity_planner_common): add functions to publish objects of interest marker
    
    Signed-off-by: Fumiya Watanabe <[email protected]>
    
    * feat(no_stopping_area): insert object data
    
    Signed-off-by: Fumiya Watanabe <[email protected]>
    
    * refactor(behavior_velocity_planner_common): rename function
    
    Signed-off-by: Fumiya Watanabe <[email protected]>
    
    ---------
    
    Signed-off-by: Fumiya Watanabe <[email protected]>
    rej55 authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    1f82854 View commit details
    Browse the repository at this point in the history
  3. refactor(behavior_path_planner): move utils function to `behavior_pat…

    …h_planner_common` package (autowarefoundation#5877)
    
    * refactor(bpp): remove unused header file
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * refactor(bpp, bpp-common): move occ grid based collision detector
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    ---------
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    57278db View commit details
    Browse the repository at this point in the history
  4. chore: sync files (autowarefoundation#5600)

    Signed-off-by: GitHub <[email protected]>
    Co-authored-by: github-actions <[email protected]>
    awf-autoware-bot[bot] and github-actions authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    f2cc50c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7ce87a4 View commit details
    Browse the repository at this point in the history
  6. refactor(image_projection_based_fusion): add JSON Schema and remove d…

    …efault value spefications (autowarefoundation#4902)
    
    * refactor: add JSON Schema and remove default values in `declare_parameter()`
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: update configuration file
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: add configuration file and update launcher to load this
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: update funsion node configuration
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * docs: update the document for roi cluster fusion
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * docs: update documents
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: move `debug_mode` into `roi_sync.param.yaml`
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: rework parameters for `roi_pointcloud_fusion`
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * chore: update maintainers
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: remove debug_mode
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * refactor: rename parameter to avoid failure of spell-check
    
    Signed-off-by: ktro2828 <[email protected]>
    
    * fix: fix typo and parameters for initialization
    
    Signed-off-by: ktro2828 <[email protected]>
    
    ---------
    
    Signed-off-by: ktro2828 <[email protected]>
    ktro2828 authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    cc0b108 View commit details
    Browse the repository at this point in the history
  7. fix(avoidance): fix unexpected sudden deceleration for avoidance mane…

    …uver (autowarefoundation#5805)
    
    fix(avoidance): fix sudden deceleration
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    88dae03 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a661585 View commit details
    Browse the repository at this point in the history
  9. fix(avoidance): check far objects during shifting (autowarefoundation…

    …#5857)
    
    * fix(avoidance): check far objects during shifting
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(avoidance): update impl
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    ---------
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    a5d5479 View commit details
    Browse the repository at this point in the history
  10. perf(run_out): improve calculation cost of smoothPath (autowarefounda…

    …tion#5885)
    
    * perf(run_out): improve calculation cost of smoothPath
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    * re-index enum elements
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    takayuki5168 authored Dec 15, 2023
    Configuration menu
    Copy the full SHA
    ad9778e View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2023

  1. feat(planning_debug_utils): add update_logger_level.sh (autowarefound…

    …ation#5888)
    
    * feat(planning_debug_utils): update_logger_level.sh
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    * add error handling
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    * update README
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    takayuki5168 authored Dec 16, 2023
    Configuration menu
    Copy the full SHA
    90d5b94 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2023

  1. fix(static_drivable_area_expansion): fix bug in expansion logic for h…

    …atched road marking (autowarefoundation#5842)
    
    fix(utils): fix drivable area expansion logic for zebra zone
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 17, 2023
    Configuration menu
    Copy the full SHA
    2175b57 View commit details
    Browse the repository at this point in the history

Commits on Dec 18, 2023

  1. Configuration menu
    Copy the full SHA
    0b58725 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68e7434 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d06e42f View commit details
    Browse the repository at this point in the history
  4. fix(avoidance): unintentional path cut (autowarefoundation#5887)

    * fix(avoidance): unintentional path cut
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_common): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_side_shift): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_avoidance): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_lane_change): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_goal_planner): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    * fix(bpp_start_planner): nouse pointer
    
    Signed-off-by: satoshi-ota <[email protected]>
    
    ---------
    
    Signed-off-by: satoshi-ota <[email protected]>
    satoshi-ota authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    37573e5 View commit details
    Browse the repository at this point in the history
  5. chore: add maintainer in map packages (autowarefoundation#5865)

    * add maintainer
    
    Signed-off-by: Kento Yabuuchi <[email protected]>
    
    * modify map_tf_generator's maintainer
    
    Signed-off-by: Kento Yabuuchi <[email protected]>
    
    ---------
    
    Signed-off-by: Kento Yabuuchi <[email protected]>
    KYabuuchi authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    5a2da99 View commit details
    Browse the repository at this point in the history
  6. chore(crosswalk): remove debug print (autowarefoundation#5896)

    Signed-off-by: Mamoru Sobue <[email protected]>
    soblin authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    a38d1db View commit details
    Browse the repository at this point in the history
  7. feat(pid_longitudinal_controller): change the condition from emergenc…

    …y to stopped (autowarefoundation#5892)
    
    chore(pid_longitudinal_controller): change the condition from emergency to stopped
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    takayuki5168 authored Dec 18, 2023
    Configuration menu
    Copy the full SHA
    81f5c4b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e6b41a8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    b9fa290 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f40425b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    320bc2f View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Configuration menu
    Copy the full SHA
    1837f6b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7faeb91 View commit details
    Browse the repository at this point in the history
  3. feat(run_out)!: ignore the collision points on crosswalk (autowarefou…

    …ndation#5862)
    
    * suppress on crosswalk
    
    Signed-off-by: Yuki Takagi <[email protected]>
    yuki-takagi-66 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    e935b3e View commit details
    Browse the repository at this point in the history
  4. fix(dynamic_avoidance): fix drivable area generation during LC (autow…

    …arefoundation#5902)
    
    * fix(dynamic_avoidance): fix drivable area generation during LC
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    * fix
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    
    ---------
    
    Signed-off-by: Takayuki Murooka <[email protected]>
    takayuki5168 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    1b17959 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a427d29 View commit details
    Browse the repository at this point in the history
  6. chore(crosswalk, obstacle_cruise): add maintainer (autowarefoundation…

    …#5898)
    
    * add maintainer
    
    Signed-off-by: Yuki Takagi <[email protected]>
    yuki-takagi-66 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    a4ef3a0 View commit details
    Browse the repository at this point in the history
  7. refactor(avoidance_by_lane_change): update execution condition (autow…

    …arefoundation#5869)
    
    * refactor(avoidance_by_lane_change): update execution condition
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix lc parameter
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix both lane change and avoidance by lane change both are running
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * trying to set maximum_avoid_distance
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    
    * fix avoidance param not properly assigned
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * fixed avoidance not running
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * fix root lanelet
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * removed gdb
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * add debug
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * fix unnecessary changes
    
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    
    * Update planning/behavior_path_avoidance_module/include/behavior_path_avoidance_module/parameter_helper.hpp
    
    Co-authored-by: Satoshi OTA <[email protected]>
    
    ---------
    
    Signed-off-by: Muhammad Zulfaqar Azmi <[email protected]>
    Signed-off-by: Zulfaqar Azmi <[email protected]>
    Co-authored-by: Satoshi OTA <[email protected]>
    zulfaqar-azmi-t4 and satoshi-ota authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    c9b9fca View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    4b3da5d View commit details
    Browse the repository at this point in the history