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

feat(map_tf_generator): accelerate the 'viewer' coordinate calculation #890

Merged
merged 18 commits into from
May 13, 2022

Conversation

IshitaTakeshi
Copy link
Contributor

@IshitaTakeshi IshitaTakeshi commented May 12, 2022

Description

Accelerated the 'viewer' tf calculation by randomly sampling map points

I found that all map points are used to calculate the tf viewer coordinate so I randomly sampled only a few points from the map for faster calculation

Related links

Tests performed

Tested the random sampling function
The test checks

  • if the random index range is within [0, point size)
  • if the random index vector has the expected length

Notes for reviewers

Pre-review checklist for the PR author

The PR author must check the checkboxes below when creating the PR.

In-review checklist for the PR reviewers

The PR reviewers must check the checkboxes below before approval.

  • The PR follows the pull request guidelines.
  • The PR has been properly tested.
  • The PR has been reviewed by the code owners.

Post-review checklist for the PR author

The PR author must check the checkboxes below before merging.

  • There are no open discussions or they are tracked via tickets.
  • The PR is ready for merge.

After all checkboxes are checked, anyone who has write access can merge the PR.

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
@IshitaTakeshi IshitaTakeshi changed the title feat(map_tf_generator): accelerate viewer calculation feat(map_tf_generator): accelerate the 'viewer' coordinate calculation May 12, 2022
@IshitaTakeshi IshitaTakeshi marked this pull request as ready for review May 12, 2022 07:25
@codecov
Copy link

codecov bot commented May 12, 2022

Codecov Report

Merging #890 (f12e334) into main (7307ce7) will increase coverage by 0.00%.
The diff coverage is 47.61%.

@@          Coverage Diff          @@
##            main    #890   +/-   ##
=====================================
  Coverage   9.53%   9.54%           
=====================================
  Files        931     933    +2     
  Lines      57687   57714   +27     
  Branches   10403   10408    +5     
=====================================
+ Hits        5502    5510    +8     
- Misses     47656   47672   +16     
- Partials    4529    4532    +3     
Flag Coverage Δ *Carryforward flag
differential 20.40% <52.63%> (?)
total 9.53% <0.00%> (-0.01%) ⬇️ Carriedforward from 93384d4

*This pull request uses carry forward flags. Click here to find out more.

Impacted Files Coverage Δ
map/map_tf_generator/src/map_tf_generator_node.cpp 0.00% <0.00%> (ø)
map/map_tf_generator/test/test_uniform_random.cpp 57.14% <57.14%> (ø)
...erator/include/map_tf_generator/uniform_random.hpp 100.00% <100.00%> (ø)
...planning_evaluator/src/planning_evaluator_node.cpp 32.96% <0.00%> (-2.20%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 7307ce7...f12e334. Read the comment docs.

map/map_tf_generator/CMakeLists.txt Outdated Show resolved Hide resolved
map/map_tf_generator/CMakeLists.txt Outdated Show resolved Hide resolved
map/map_tf_generator/package.xml Outdated Show resolved Hide resolved
map/map_tf_generator/src/map_tf_generator_node.cpp Outdated Show resolved Hide resolved
map/map_tf_generator/src/map_tf_generator_node.cpp Outdated Show resolved Hide resolved
map/map_tf_generator/src/map_tf_generator_node.cpp Outdated Show resolved Hide resolved
map/map_tf_generator/CMakeLists.txt Outdated Show resolved Hide resolved
@IshitaTakeshi
Copy link
Contributor Author

Anything more to fix?

@kenji-miyake
Copy link
Contributor

Maybe not so much, I'll re-check it tonight.

@yukkysaito
Copy link
Contributor

When it use random numbers to determine the viewer frame, the view position of rviz changes every time. Is it possible to do this without using random numbers?

@yukkysaito
Copy link
Contributor

For example,

Step = Pointcloud size / sampling number
for (i) {
  pointcloud.at(Step * i)
}

@kenji-miyake
Copy link
Contributor

I think it's good!
#890 (comment)

@IshitaTakeshi
Copy link
Contributor Author

@yukkysaito How about fixing the random seed?

IshitaTakeshi and others added 2 commits May 13, 2022 12:40
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
@yukkysaito
Copy link
Contributor

@IshitaTakeshi It's ok 👍

@IshitaTakeshi IshitaTakeshi merged commit 3bcb248 into main May 13, 2022
@IshitaTakeshi IshitaTakeshi deleted the feature/accelerate-viewer-calculation branch May 13, 2022 04:50
0x126 referenced this pull request in tier4/autoware.universe May 18, 2022
#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
0x126 referenced this pull request in tier4/autoware.universe May 19, 2022
#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
kosuke55 pushed a commit to kosuke55/autoware.universe that referenced this pull request May 20, 2022
autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
shmpwk pushed a commit to shmpwk/autoware.universe that referenced this pull request May 24, 2022
autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>
shmpwk added a commit that referenced this pull request May 24, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
ktro2828 pushed a commit to ktro2828/autoware.universe that referenced this pull request Jun 7, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (autowarefoundation#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (autowarefoundation#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (autowarefoundation#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (autowarefoundation#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (autowarefoundation#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (autowarefoundation#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (autowarefoundation#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (autowarefoundation#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (autowarefoundation#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (autowarefoundation#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (autowarefoundation#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (autowarefoundation#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (autowarefoundation#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (autowarefoundation#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (autowarefoundation#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (autowarefoundation#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (autowarefoundation#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (autowarefoundation#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (autowarefoundation#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (autowarefoundation#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (autowarefoundation#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (autowarefoundation#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (autowarefoundation#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (autowarefoundation#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (autowarefoundation#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (autowarefoundation#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (autowarefoundation#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (autowarefoundation#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (autowarefoundation#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (autowarefoundation#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (autowarefoundation#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: ktro2828 <kotaro.uetake@tier4.jp>
YoheiMishina added a commit to YoheiMishina/autoware.universe that referenced this pull request Jun 9, 2022
* release v0.4.0

* Add spline interpolation library (autowarefoundation#705)

* Feature/intersection use spline interpolation library (autowarefoundation#710)

* Use spline_interpolation module

* Remove debug messages

* Fix/spline interpolation in intersection module (autowarefoundation#726)

* Remove duplicating sample points

* Change isValidInput

* Apply clang-format

* Fix convergence check in PCG

* update osqp interface (autowarefoundation#730)

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add sample ros2 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* remove ROS1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Revert "remove ROS1 packages temporarily"

This reverts commit 7127cf7.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Port osqp-interface to ros2 (autowarefoundation#45)

It doesn't use any ros functionality so the source code is unchanged, only `package.xml` and `CMakeLists.txt` needed to
be modified. But osqp is added through a vendor package created at https://github.com/tier4/osqp_vendor

To test this locally, eigen needs to be installed in the environment with

    sudo apt install libeigen3-dev

* Port spline interpolation to ros2. (autowarefoundation#65)

* Fix osqp_interface dependencies (autowarefoundation#66)

* [osqp_interface] fix eigen3 dependencies

fixes autowarefoundation#63

* Fix link order in consumers of osqp_interface

* Update logger name for SOR class (autowarefoundation#87)

Signed-off-by: Servando German Serrano <servando.german.serrano@linaro.org>

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* ROS2 Linting: osqp_interface (autowarefoundation#202)

* Add linters

* Fix clang-tidy missing header error

* ROS2 Linting: spline_interpolation (autowarefoundation#203)

* Add linters and fix indentation in package.xml

* Address PR comments:
 - Convert indents to spaces

* Use two spaces for indent

Co-authored-by: Esteve Fernandez <esteve@apache.org>

* Fix out-of-range bug of spline_interpolation (autowarefoundation#917) (autowarefoundation#273)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Ros2 v0.8.0 osqp interface (autowarefoundation#271)

* restore file name for v0.8.0 update

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix typos in common modules (autowarefoundation#914)

* fix typos in common modules

* minor fix (lowercasing)

* revert changes in PathPoint.msg

* Fix/osqp interface api error (autowarefoundation#969)

* [osqp_interface] fix update setting api

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* [osqp_interface] fix format

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* Revert "restore file name for v0.8.0 update"

This reverts commit b767c308d492c6f754f9aa45ab9521f209ad9c9c.

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* Ros2 v0.8.0 ekf localizer (autowarefoundation#270)

* restore file name for v0.8.0 update

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* fix typos in localization (autowarefoundation#890)

* move kalman filter to lib package (autowarefoundation#1141)

* move kalman filter to lib package

* add kalman_filter dir

* Revert "restore file name for v0.8.0 update"

This reverts commit 485111da0aba91eeddda77e1e3b6b3f517373163.

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>

* Feature/ekf tracker (autowarefoundation#1158) (autowarefoundation#381)

* Feature/ekf tracker (autowarefoundation#1158)

* change to ekf tracker

* visualize covariance

* cosmetic change

* cosmetic change

* change param

* add multi model ekf tracker (autowarefoundation#1165)

* add multi model ekf tracker

* cosmetic change

* cosmetic change

* add iou filter

* change correct license

* change correct license

* cosmetic change

* bug fix

* cosmetic change

* check clockwise

* change param

* bug fix

* cosmetic change

* add comment

* add enum

* cosmetic change

* cosmetic change

* apply format

* apply format

* fix config name

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* [multi_object_tracker] apply ament_uncrustify

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* [multi_object_tracker] fix lint errors

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* fix include brackets

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Fix typo in common module (autowarefoundation#433)

* Unify Apache-2.0 license name (autowarefoundation#1242)

* Make control modules components (autowarefoundation#1262)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Make planning modules components (autowarefoundation#1263)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Porting small fix (autowarefoundation#1288)

* Delete unused code (autowarefoundation#1183)

* Fix control topic name of closest_velocity_checker.py (autowarefoundation#1174)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add comments for livox tag (autowarefoundation#1188)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Clear return value (autowarefoundation#1193)

* Change tracker model of unknown object (autowarefoundation#1204)

* treat polygon points as relative (autowarefoundation#1205)

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* hotfix: reference velocity in consideration of vehicle gear (autowarefoundation#1213)

* fix reference velocity for vehicle gear

* add initialization

* revert

* add comment

* change max area param (autowarefoundation#1218)

* Fix an identical code for different branches (autowarefoundation#1230)

* Update livox_tag_filter.launch.xml

* Fixup

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: shin <8327162+0x126@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix osqp interface double free problem (autowarefoundation#1327)

* Use smart pointers for members

* Add test code

* Fix typo

* Fix test code

* Change variable name

* Fix for lint test

* Fix include

* Fix header and CMakeLists.txt

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: wep21 <border_goldenmarket@yahoo.co.jp>

* add new updater function to osqp_interface (autowarefoundation#1433) (autowarefoundation#1483)

* add new updater function

* modify spell

Co-authored-by: purewater0901 <43805014+purewater0901@users.noreply.github.com>

* Add pre-commit (autowarefoundation#1560)

* add pre-commit

* add pre-commit-config

* add additional settings for private repository

* use default pre-commit-config

* update pre-commit setting

* Ignore whitespace for line breaks in markdown

* Update .github/workflows/pre-commit.yml

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* exclude svg

* remove pretty-format-json

* add double-quote-string-fixer

* consider COLCON_IGNORE file when seaching modified package

* format file

* pre-commit fixes

* Update pre-commit.yml

* Update .pre-commit-config.yaml

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: pre-commit <pre-commit@example.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* Fix bugprone-fold-init-type in spline_interpolation (autowarefoundation#1816)

* Fix bugprone-fold-init-type

* Fix modernize-use-override

* Fix cppcoreguidelines-pro-type-member-init

* Fix modernize-loop-convert

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* remove spline_interpolation, and create interpolation package that ha… (autowarefoundation#2114)

* remove spline_interpolation and add interpolation package

* fix bugs and add simple test

* modify application for interpolation package

* add some tests and fix ci test

* add some tests

* add -Werror

* move functions to anonymous

* fix reviews

* fix typo

* fix review and lint

* add tests

* resolve TODOs

* add README.md

* Update common/math/interpolation/test/src/test_interpolation_utils.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Update common/math/interpolation/test/src/test_interpolation_utils.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Update common/math/interpolation/test/src/test_interpolation_utils.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* fix README.md

* dealt with reviews

* update README.md

* update README.md

* Update common/math/interpolation/README.md

* fix some bugs

* fix typo

* update README.md

* Update common/math/interpolation/README.md

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* fix test

* Update common/math/interpolation/README.md

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* fix cdots

* fix README.md

* Update common/math/interpolation/README.md

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* Feature/lpf in common ros2 (autowarefoundation#1628)

* add first order lowpass filter (autowarefoundation#1505)

* add first order lowpass filter

* fix bugs, and add tests

* update copyright

* apply clang-format

* add another constructor

* add another reset member function

* update

* add test

* update test

* update test

* rename lowpass filter to signal processing

* Porting lpf1d to ros2

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>

* [osqp interface] size check invalid argument error ros2 (autowarefoundation#1870)

* throw invalid_argument when osqp matrix/vector are invalid

* add test for invalid_argumetn

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* remove COLCON_IGNORE (autowarefoundation#506)

Co-authored-by: Takayuki Murooka <takayuki.murooka@tier4.jp>

* Remove COLCON_IGNORE from interpolation (autowarefoundation#516)

* delete COLCON IGNORE in signal processing package(autowarefoundation#537)

* Delet colcon ignore (autowarefoundation#534)

* Back port .auto control packages (autowarefoundation#571)

* Implement Lateral and Longitudinal Control Muxer

* [autowarefoundation#570] Porting wf_simulator

* [autowarefoundation#1189] Deactivate flaky test in 'trajectory_follower_nodes'

* [autowarefoundation#1189] Fix flacky test in 'trajectory_follower_nodes/latlon_muxer'

* [autowarefoundation#1057] Add osqp_interface package

* [autowarefoundation#1057] Add library code for MPC-based lateral control

* [autowarefoundation#1271] Use std::abs instead of abs

* [autowarefoundation#1057] Implement Lateral Controller for Cargo ODD

* [autowarefoundation#1246] Resolve "Test case names currently use snake_case but should be CamelCase"

* [autowarefoundation#1325] Deactivate flaky smoke test in 'trajectory_follower_nodes'

* [autowarefoundation#1058] Add library code of longitudinal controller

* Fix build error for trajectory follower

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix build error for trajectory follower nodes

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* [autowarefoundation#1272] Add AckermannControlCommand support to simple_planning_simulator

* [autowarefoundation#1058] Add Longitudinal Controller node

* [autowarefoundation#1058] Rename velocity_controller -> longitudinal_controller

* [autowarefoundation#1058] Update CMakeLists.txt for the longitudinal_controller_node

* [autowarefoundation#1058] Add smoke test python launch file

* [autowarefoundation#1058] Use LowPassFilter1d from trajectory_follower

* [autowarefoundation#1058] Use autoware_auto_msgs

* [autowarefoundation#1058] Changes for .auto (debug msg tmp fix, common func, tf listener)

* [autowarefoundation#1058] Remove unused parameters

* [autowarefoundation#1058] Fix ros test

* [autowarefoundation#1058] Rm default params from declare_parameters + use autoware types

* [autowarefoundation#1058] Use default param file to setup NodeOptions in the ros test

* [autowarefoundation#1058] Fix docstring

* [autowarefoundation#1058] Replace receiving a Twist with a VehicleKinematicState

* [autowarefoundation#1058] Change class variables format to m_ prefix

* [autowarefoundation#1058] Fix plugin name of LongitudinalController in CMakeLists.txt

* [autowarefoundation#1058] Fix copyright dates

* [autowarefoundation#1058] Reorder includes

* [autowarefoundation#1058] Add some tests (~89% coverage without disabling flaky tests)

* [autowarefoundation#1058] Add more tests (90+% coverage without disabling flaky tests)

* [autowarefoundation#1058] Use Float32MultiArrayDiagnostic message for debug and slope

* [autowarefoundation#1058] Calculate wheel_base value from vehicle parameters

* [autowarefoundation#1058] Cleanup redundant logger setting in tests

* [autowarefoundation#1058] Set ROS_DOMAIN_ID when running tests to prevent CI failures

* [autowarefoundation#1058] Remove TF listener and use published vehicle state instead

* [autowarefoundation#1058] Change smoke tests to use autoware_testing

* [autowarefoundation#1058] Add plotjuggler cfg for both lateral and longitudinal control

* [autowarefoundation#1058] Improve design documents

* [autowarefoundation#1058] Disable flaky test

* [autowarefoundation#1058] Properly transform vehicle state in longitudinal node

* [autowarefoundation#1058] Fix TF buffer of lateral controller

* [autowarefoundation#1058] Tuning of lateral controller for LGSVL

* [autowarefoundation#1058] Fix formating

* [autowarefoundation#1058] Fix /tf_static sub to be transient_local

* [autowarefoundation#1058] Fix yaw recalculation of reverse trajs in the lateral controller

* modify trajectory_follower for galactic build

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* [autowarefoundation#1379] Update trajectory_follower

* [autowarefoundation#1379] Update simple_planning_simulator

* [autowarefoundation#1379] Update trajectory_follower_nodes

* apply trajectory msg modification in control

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* move directory

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* remote control/trajectory_follower level dorectpry

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* remove .iv trajectory follower

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* use .auto trajectory_follower

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* remove .iv simple_planning_simulator & osqp_interface

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* use .iv simple_planning_simulator & osqp_interface

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* add tmp_autoware_auto_dependencies

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* tmporally add autoware_auto_msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* apply .auto message split

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* fix build depend

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* fix packages using osqp

* fix autoware_auto_geometry

* ignore lint of some packages

* ignore ament_lint of some packages

* ignore lint/pre-commit of trajectory_follower_nodes

* disable unit tests of some packages

Co-authored-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Co-authored-by: Joshua Whitley <josh.whitley@autoware.org>
Co-authored-by: Igor Bogoslavskyi <igor.bogoslavskyi@gmail.com>
Co-authored-by: MIURA Yasuyuki <kokosabu@gmail.com>
Co-authored-by: wep21 <border_goldenmarket@yahoo.co.jp>
Co-authored-by: tomoya.kimura <tomoya.kimura@tier4.jp>

* add readme signal processing (autowarefoundation#587)

* add readme signal processing

* better fix

* add readme in kalman_filter (autowarefoundation#633)

* ci(pre-commit): autofix

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Frederik Beaujean <72439809+fred-apex-ai@users.noreply.github.com>
Co-authored-by: Yunus Emre Çalışkan <yunus.ec@gmail.com>
Co-authored-by: Servando <43142004+sgermanserrano@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: Jilada Eccleston <jilada.eccleston@gmail.com>
Co-authored-by: Jilada Eccleston <jilada.eccleston@tier4.jp>
Co-authored-by: Esteve Fernandez <esteve@apache.org>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Keisuke Shima <keisuke.shima@tier4.jp>
Co-authored-by: shin <8327162+0x126@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: wep21 <border_goldenmarket@yahoo.co.jp>
Co-authored-by: purewater0901 <43805014+purewater0901@users.noreply.github.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: pre-commit <pre-commit@example.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takayuki Murooka <takayuki.murooka@tier4.jp>
Co-authored-by: Sugatyon <32741405+Sugatyon@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Co-authored-by: Joshua Whitley <josh.whitley@autoware.org>
Co-authored-by: Igor Bogoslavskyi <igor.bogoslavskyi@gmail.com>
Co-authored-by: MIURA Yasuyuki <kokosabu@gmail.com>
Co-authored-by: Takeshi Miura <57553950+1222-takeshi@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
YoheiMishina pushed a commit to YoheiMishina/autoware.universe that referenced this pull request Jun 9, 2022
* release v0.4.0

* Avoid setting CMAKE_BUILD_TYPE=Release in each CMakeLists.txt (autowarefoundation#720)

* remove set CMAKE_BUILD_TYPE Release in each CMakeLists.txt

* remove set CMAKE_BUILD_TYPE Release in ndt_pcl_modified

* set compile options for debug in ndt_omp

* Fix indent

* add warning if -DCMAKE_BUILD_TYPE=Release is not set in ndt_omp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Revert "remove ROS1 packages temporarily"

This reverts commit f29c914.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Rename launch files to launch.xml (autowarefoundation#28)

* Port ekf_localizer (autowarefoundation#16)

* Ported ekf_localizer to ROS 2

* Ported ekf_localizer to ROS 2, but disabled them

* Update launch file

* Use ::SharedPtr where available

* Replace deprecated Float64 with Float64Stamped from autoware_debug_msgs

* Install launch file

* Added stamps

* fix duration unit for RCLCPP_*_THROTTLE (autowarefoundation#75)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Adjust copyright notice on 532 out of 699 source files (autowarefoundation#143)

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* Run uncrustify on the entire Pilot.Auto codebase (autowarefoundation#151)

* Run uncrustify on the entire Pilot.Auto codebase

* Exclude open PRs

* [ekf_localizer] [pose_initializer] fix topic message type (autowarefoundation#176)

Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* adding linters to ekf_localizer (autowarefoundation#194)

* add initialization for roll&pitch, remove condition in launch (autowarefoundation#209)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* fix units of time objects (autowarefoundation#195)

* fix units of time objects

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* fix tests

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* fix test

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* apply env_var to  use_sim_time (autowarefoundation#222)

* Ros2 v0.8.0 ekf localizer (autowarefoundation#270)

* restore file name for v0.8.0 update

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* fix typos in localization (autowarefoundation#890)

* move kalman filter to lib package (autowarefoundation#1141)

* move kalman filter to lib package

* add kalman_filter dir

* Revert "restore file name for v0.8.0 update"

This reverts commit 485111da0aba91eeddda77e1e3b6b3f517373163.

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>

* Unify Apache-2.0 license name (autowarefoundation#1242)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* update ekf readme (add reference) (autowarefoundation#1382) (autowarefoundation#1383)

* update ekf readme (add reference) (autowarefoundation#1382)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* Fix typo

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* Add pre-commit (autowarefoundation#1560)

* add pre-commit

* add pre-commit-config

* add additional settings for private repository

* use default pre-commit-config

* update pre-commit setting

* Ignore whitespace for line breaks in markdown

* Update .github/workflows/pre-commit.yml

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* exclude svg

* remove pretty-format-json

* add double-quote-string-fixer

* consider COLCON_IGNORE file when seaching modified package

* format file

* pre-commit fixes

* Update pre-commit.yml

* Update .pre-commit-config.yaml

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: pre-commit <pre-commit@example.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Add markdownlint and prettier (autowarefoundation#1661)

* Add markdownlint and prettier

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore .param.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* fix some typos (autowarefoundation#1941)

* fix some typos

* fix typo

* Fix typo

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Feature/add stop filter ros2 (autowarefoundation#1575)

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* add createQuaternionFromYaw (autowarefoundation#2120)

* add createQuaternionFromYaw

* add test

* change return value type of createQuaternionFromRPY from tf2::quat to geomety_msgs::msg::quat

* use geometry_msgs::msg::Quaternion in createQuaternionFromRPY in application

* [ekf_localizer] use autoware utils (autowarefoundation#2314)

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* add nav_msgs::msg::Odometry and publish odometry topic to ekf_localizer (autowarefoundation#501)

* publish odometry

* remove COLCON IGNORE

* fixed typo

* fixed order in package.xml

* add odom name

* fixed frame id

* pre commit

* subscribe odometry msg in stop filter package (autowarefoundation#520)

* remove COLCON IGNORE

* use nav_msgs::msg::Odometry

* publish stop filter odometry

* Create README.md for stop_filter (autowarefoundation#583)

* add odom topic to README (autowarefoundation#582)

* [stop filter] remove twist publisher (autowarefoundation#586)

* remove twist publisher

* remove twist publisher in README

* remove topic remap from launch file (autowarefoundation#703)

* [ekf_localizer] remove input pose and twist topic (autowarefoundation#707)

* remove input pose and twist topic

* fixed README

* pre-commit

* remove unused parameter

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Daichi Murakami <harihitode@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: Esteve Fernandez <esteve@apache.org>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: nik-tier4 <71747268+nik-tier4@users.noreply.github.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: pre-commit <pre-commit@example.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: kminoda <44218668+kminoda@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
YoheiMishina pushed a commit to YoheiMishina/autoware.universe that referenced this pull request Jun 9, 2022
* release v0.4.0

* Avoid setting CMAKE_BUILD_TYPE=Release in each CMakeLists.txt (autowarefoundation#720)

* remove set CMAKE_BUILD_TYPE Release in each CMakeLists.txt

* remove set CMAKE_BUILD_TYPE Release in ndt_pcl_modified

* set compile options for debug in ndt_omp

* Fix indent

* add warning if -DCMAKE_BUILD_TYPE=Release is not set in ndt_omp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* remove ROS1 packages temporarily

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Port autoware_localization_srvs

* Add DEPENDENCIES

* Revert "remove ROS1 packages temporarily"

This reverts commit ee01a755ac5b22c61f4274ae2ee57b0a18150a78.

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* add COLCON_IGNORE to ros1 packages

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Rename launch files to launch.xml (autowarefoundation#28)

* Port pose_initializer to ROS2 (autowarefoundation#11)

* CMakeLists.txt & package.xml

* Compiles

* Works

* Use callback instead

* Reviewer feedback

* Add sequence number check

* Review feedback

* Fix lint issues (autowarefoundation#128)

* Rename h files to hpp (autowarefoundation#142)

* Change includes

* Rename files

* Adjustments to make things compile

* Other packages

* Use quotes for includes where appropriate (autowarefoundation#144)

* Use quotes for includes where appropriate

* Fix lint tests

* Make tests pass hopefully

* fixing trasient_local in ROS2 packages (autowarefoundation#160)

* [ekf_localizer] [pose_initializer] fix topic message type (autowarefoundation#176)

Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* ading linters to pose_initializer (autowarefoundation#186)

* adding linters to autoware_localization_srvs (autowarefoundation#185)

* Port initial-pose-button-panel (autowarefoundation#125)

* Port

Signed-off-by: Servando German Serrano <servando.german.serrano@linaro.org>

* Initialize button when request received

Signed-off-by: Servando German Serrano <servando.german.serrano@linaro.org>

* Amend buildtool

Signed-off-by: Servando German Serrano <servando.german.serrano@linaro.org>

* Fix license

Signed-off-by: Servando German Serrano <servando.german.serrano@linaro.org>

* apply env_var to  use_sim_time (autowarefoundation#222)

* retry gnss initialize (autowarefoundation#1043) (autowarefoundation#263)

Co-authored-by: YamatoAndo <yamato.ando@gmail.com>

* Ros2 v0.8.0 initial pose buttion panel (autowarefoundation#312)

* restore initial pose button panel files for v0.8.0 update

* fix typos in localization (autowarefoundation#890)

* Fix memory leak and remove unused properties (autowarefoundation#964)

* Revert "restore initial pose button panel files for v0.8.0 update"

This reverts commit 01281a2633636f80f241a788f9d35c517a2977e1.

* delete unused header

* add ament lint test

* apply ament_lint

* fix bug

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* modify pose_initialize for foa  (autowarefoundation#382)

* pose_initialize for foa (autowarefoundation#1171)

* pose_initialize for foa

Signed-off-by: Yamato ANDO <yamato.ando@gmail.com>

* rename topic

Signed-off-by: Yamato ANDO <yamato.ando@gmail.com>

* fix topic name

Signed-off-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>

* Fix missing gnss subscriber (autowarefoundation#417)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Ros2 fix ndt align srv (autowarefoundation#442)

* Add success field to ndt align srv response

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* Apply change of ndt align srv

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* Apply change of ndt align srv

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* Fix lint

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* Unify Apache-2.0 license name (autowarefoundation#1242)

* Remove use_sim_time for set_parameter (autowarefoundation#1260)

Signed-off-by: wep21 <border_goldenmarket@yahoo.co.jp>

* Fix dependency type of rosidl_default_generators (autowarefoundation#1801)

* Fix dependency type of rosidl_default_generators

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove unnecessary depends

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Use ament_cmake_auto

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix -Wunused-parameter (autowarefoundation#1836)

* Fix -Wunused-parameter

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix mistake

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix spell

* Fix lint issues

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Ignore flake8 warnings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>

* Add autoware api (autowarefoundation#1979)

* add sort-package-xml hook in pre-commit (autowarefoundation#1881)

* add sort xml hook in pre-commit

* change retval to exit_status

* rename

* add prettier plugin-xml

* use early return

* add license note

* add tier4 license

* restore prettier

* change license order

* move local hooks to public repo

* move prettier-xml to pre-commit-hooks-ros

* update version for bug-fix

* apply pre-commit

* Change formatter to clang-format and black (autowarefoundation#2332)

* Revert "Temporarily comment out pre-commit hooks"

This reverts commit 748e9cdb145ce12f8b520bcbd97f5ff899fc28a3.

* Replace ament_lint_common with autoware_lint_common

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove ament_cmake_uncrustify and ament_clang_format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply Black

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix for cpplint

* Fix include double quotes to angle brackets

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Apply clang-format

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Fix build errors

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Add COLCON_IGNORE (autowarefoundation#500)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Remove COLCON_IGNORE under localization (autowarefoundation#553)

* Remove 'pose_initializer/COLCON_IGNORE' (autowarefoundation#556)

* add README.md (autowarefoundation#623)

* add README.md

* fix typo

* minor fix

* Update localization/util/autoware_localization_rviz_plugin/initial_pose_button_panel/README.md

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* Update localization/util/autoware_localization_rviz_plugin/initial_pose_button_panel/README.md

Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>

* Update localization/util/autoware_localization_rviz_plugin/initial_pose_button_panel/README.md

Co-authored-by: Takayuki Murooka <takayuki.murooka@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp>

* add readme in pose initializer (autowarefoundation#636)

* add readme in pose initializer

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* modify doc

Signed-off-by: Kosuke Murakami <kosuke.murakami@tier4.jp>

* move autoware_localization_srvs package (autowarefoundation#689)

* move autoware_localization_srvs package

* apply pre-commit

* rename pose_with_cov to pose_with_covariance

* apply pre-commit

* fix: move initial_pose_button_panel directory

Co-authored-by: mitsudome-r <ryohsuke.mitsudome@tier4.jp>
Co-authored-by: Daichi Murakami <harihitode@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Nikolai Morin <nikolai.morin@apex.ai>
Co-authored-by: Nikolai Morin <nnmmgit@gmail.com>
Co-authored-by: nik-tier4 <71747268+nik-tier4@users.noreply.github.com>
Co-authored-by: Ryohsuke Mitsudome <43976834+mitsudome-r@users.noreply.github.com>
Co-authored-by: Autoware <autoware@tier4.jp>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Servando <43142004+sgermanserrano@users.noreply.github.com>
Co-authored-by: Kosuke Murakami <kosuke.murakami@tier4.jp>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: YamatoAndo <yamato.ando@gmail.com>
Co-authored-by: tkimura4 <tomoya.kimura@tier4.jp>
Co-authored-by: Kazuki Miyahara <kmiya@outlook.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takayuki Murooka <takayuki.murooka@tier4.jp>
boyali referenced this pull request in boyali/autoware.universe Sep 28, 2022
tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
boyali referenced this pull request in boyali/autoware.universe Sep 28, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (tier4#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (tier4#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (tier4#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (tier4#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (tier4#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (tier4#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (tier4#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (tier4#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (tier4#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (tier4#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (tier4#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (tier4#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (tier4#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (tier4#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (tier4#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (tier4#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (tier4#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (tier4#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (tier4#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (tier4#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (tier4#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (tier4#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (tier4#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (tier4#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (tier4#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (tier4#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (tier4#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (tier4#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (tier4#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (tier4#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (tier4#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
boyali referenced this pull request in boyali/autoware.universe Oct 3, 2022
tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
boyali referenced this pull request in boyali/autoware.universe Oct 3, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (tier4#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (tier4#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (tier4#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (tier4#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (tier4#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (tier4#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (tier4#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (tier4#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (tier4#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (tier4#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (tier4#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (tier4#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (tier4#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (tier4#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (tier4#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (tier4#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (tier4#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (tier4#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (tier4#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (tier4#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (tier4#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (tier4#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (tier4#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (tier4#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (tier4#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (tier4#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (tier4#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (tier4#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (tier4#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (tier4#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (tier4#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
boyali referenced this pull request in boyali/autoware.universe Oct 3, 2022
tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
boyali referenced this pull request in boyali/autoware.universe Oct 3, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (tier4#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (tier4#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (tier4#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (tier4#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (tier4#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (tier4#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (tier4#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (tier4#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (tier4#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (tier4#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (tier4#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (tier4#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (tier4#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (tier4#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (tier4#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (tier4#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (tier4#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (tier4#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (tier4#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (tier4#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (tier4#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (tier4#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (tier4#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (tier4#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (tier4#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (tier4#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (tier4#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (tier4#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (tier4#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (tier4#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (tier4#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
boyali referenced this pull request in boyali/autoware.universe Oct 19, 2022
tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
boyali referenced this pull request in boyali/autoware.universe Oct 19, 2022
* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (tier4#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: update link style

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: fix link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (tier4#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(obstacle_stop_planner): update documentation (tier4#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(tier4_traffic_light_rviz_plugin): update documentation (tier4#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(accel_brake_map_calibrator): rviz panel type (tier4#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (tier4#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_path_planner): weakened noise filtering of drivable area (tier4#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle-cmd-gate): using namespace for msgs (tier4#913)

* refactor(vehicle-cmd-gate): using namespace for msgs

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* for clang

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(pose_initializer): introduce an array copy function (tier4#900)


Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add lidar point filter when debug (tier4#865)

* feat: add lidar point filter when debug

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(component_interface_utils): add interface classes  (tier4#899)

* feat(component_interface_utils): add interface classes

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* feat(default_ad_api): apply the changes of interface utils

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove old comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): add client log

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* fix(component_interface_utils): remove unimplemented message

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add design policy

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>

* docs(component_interface_utils): add comment

Signed-off-by: Takagi, Isamu <isamu.takagi@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* refactor(vehicle_cmd_gate): change namespace in launch file (tier4#927)

Signed-off-by: Berkay <berkay@leodrive.ai>

Co-authored-by: Berkay <berkay@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: visualize lane boundaries (tier4#923)

* feat: visualize lane boundaries

* fix: start_bound

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): fix truncation warning in strncpy (tier4#872)

* fix(system_monitor): fix truncation warning in strncpy

* Use std::string constructor to copy char array

* Fixed typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(behavior_velocity_planner.stopline): extend following and previous search range to avoid no collision (tier4#917)

* fix: extend following and previous search range to avoid no collision

* chore: add debug marker

* fix: simplify logic

* chore: update debug code

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* fix: delete space

* fix: some fix

* ci(pre-commit): autofix

* fix: delete debug code

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs(surround obstacle checker): update documentation (tier4#878)

* docs(surround_obstacle_checker): update pub/sub topics & params

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacle_checker): remove unused files

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(surround_obstacke_checker): update purpose

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_autoware_utils): add vehicle state checker (tier4#896)

* feat(tier4_autoware_utils): add vehicle state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): use absolute value

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(tier4_autoware_utils): divide into two classies

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* test(tier4_autoware_utils): add unit test for vehicle_state checker

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): impl class inheritance

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_autoware_utils): add vehicle_state_checker document

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): into same loop

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): fix variables name

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(tier4_autoware_utils): remove redundant codes

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point (tier4#816)

* fix(motion_velocity_smoother): fix overwriteStopPoint using backward point

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

* Modify overwriteStopPoint input and output

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): explicitly insert zero velocity (tier4#906)

* feat(obstacle_avoidance_planner) fix bug of stop line unalignment

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of unsorted output points

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* move calcVelocity in node.cpp

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix build error

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(behavior_velocity): find occlusion more efficiently (tier4#829)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(system_monitor): add some smart information to diagnostics (tier4#708)

Signed-off-by: kk-inoue-esol <kk-inoue@esol.co.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): dealt with close lane change (tier4#921)

* feat(obstacle_avoidance_planner): dealt with close lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix bug of right lane change

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(obstacle_avoidance_planner): some fix for narrow driving (tier4#916)

* use car like constraints in mpt

* use not widest bounds for the first bounds

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* organized params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix format

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* prepare rear_drive and uniform_circle constraints

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix param callback

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* remove unnecessary files

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update tier4_planning_launch params

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(obstacle_avoidance_planner): removed obsolete obstacle_avoidance_planner doc in Japanese (tier4#919)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check (tier4#932)

* chore(behavior_velocity_planner.stopline): add debug marker for stopline collision check

* feat: use marker helper

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(map_loader): visualize center line by points (tier4#931)

* feat: visualize center line points

* fix: delete space

* feat: visualize center line by arrow

* revert insertMarkerArray

* fix: delete space

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat: add RTC interface (tier4#765)

* feature(rtc_interface): add files

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): implement functions

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): reimprement functions to use CooperateCommands and write README.md

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add getModuleType()

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix definition of constructor

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix time stamp

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): fix README

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* feature(rtc_interface): add isRegistered and clearCooperateStatus

Signed-off-by: Fumiya Watanabe <rej55.g@gmail.com>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (tier4#911)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: replace boost::mutex::scoped_lock to std::scoped_lock (tier4#907)

* fix: replace boost::mutex::scoped_lock to std::scoped_lock

* fix: replace boost::mutex to std::mutex

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node (tier4#885)

* feat(tensorrt_yolo): add multi gpu support to tensorrt_yolo node

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

* feat(tensorrt_yolo): update arg

Signed-off-by: Kaan Colak <kcolak@leodrive.ai>

Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner (tier4#887)

* feat(tier4_planning_launch): create parameter yaml for behavior_velocity_planner

* Update launch/tier4_planning_launch/config/scenario_planning/lane_driving/behavior_planning/behavior_velocity_planner/behavior_velocity_planner.param.yaml

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>

* feat: add param.yaml in behavior_velocity_planner package

* some fix

Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader (tier4#942)

* fix(map_loader): use std::filesystem to load pcd files in pointcloud_map_loader

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): remove c_str

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>

* fix(map_loader): replace c_str to string

Signed-off-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative link

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: relative links

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix: typo

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* fix relative links

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore rare unknown words

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* docs: ignore unknown words one by one

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Berkay <brkay54@gmail.com>
Co-authored-by: Berkay <berkay@leodrive.ai>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: Kosuke Takeuchi <kosuke.tnp@gmail.com>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: kk-inoue-esol <76925382+kk-inoue-esol@users.noreply.github.com>
Co-authored-by: Fumiya Watanabe <rej55.g@gmail.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: RyuYamamoto <ryu.yamamoto@tier4.jp>
Co-authored-by: Kaan Çolak <kaancolak95@gmail.com>
Co-authored-by: Kaan Colak <kcolak@leodrive.ai>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
ito-san added a commit that referenced this pull request Oct 20, 2022
* adding document for voltage monitor

* ci(pre-commit): autofix

* fixed for the issue of multithread

* Fixed the lack for  processing of Error case.

* deleted magic number 200

* ci(pre-commit): autofix

* moved voltage_mnitor to tha last

* minimizing between try-catch.

* ci(pre-commit): autofix

* deleted unused files

* added default vlue of cmos_battery_voltage

* changed the label name to cmos_battery_label.

* adding language specified

* resolved conflict

* resolved conflict

* resolved conflict

* ci(pre-commit): autofix

* added topics_voltage_monitor.md)

* ci(pre-commit): autofix

* chore: sync files (#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (#639)

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: sync files (#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(behavior_velocity): avoid insert same point on trajectory utils (#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs: fix 404 error caused by typo in url (#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(image_projection_based_fusion): set imagebuffersize (#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore(avoidance_module): fix spell check (#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat: isolate gtests in all packages (#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(virtual traffic light): add documentation (#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(surround_obstacle_checker): fix ego footprint polygon (#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix: update nvinfer api (#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* test(autoware_testing): fix smoke_test (#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(rviz_plugins): add velocity limit to autoware state panel (#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(vehicle_info_util): add max_steer_angle (#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: fix typos (#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* fixed conflicts

* ci(pre-commit): autofix

* merged fork-origin

* merged

* resolve conflict

* ci(pre-commit): autofix

* deleted

* added "Voltage Monitor"

* merged with main->feature_battery_monitoring

* merge  main ->feature_battery_monitoring

* ci(pre-commit): autofix

* added default vlue of cmos_battery_voltage

* resolved conflict

* resolved conflict

* ci(pre-commit): autofix

* added topics_voltage_monitor.md)

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* chore: sync files (#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (#639)

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: sync files (#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(behavior_velocity): avoid insert same point on trajectory utils (#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs: fix 404 error caused by typo in url (#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(image_projection_based_fusion): set imagebuffersize (#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore(avoidance_module): fix spell check (#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat: isolate gtests in all packages (#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(virtual traffic light): add documentation (#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(surround_obstacle_checker): fix ego footprint polygon (#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix: update nvinfer api (#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* test(autoware_testing): fix smoke_test (#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(rviz_plugins): add velocity limit to autoware state panel (#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(vehicle_info_util): add max_steer_angle (#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: fix typos (#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* fixed conflicts

* ci(pre-commit): autofix

* resolve conflict

* ci(pre-commit): autofix

* merged with main->feature_battery_monitoring

* merge  main ->feature_battery_monitoring

* Added voltages are provisional values.

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* feat(behavior_path_planner): add turn signal parameters (#2086)

* feat(behavior_path_planner): add and change parameters

Signed-off-by: yutaka <purewater0901@gmail.com>

* update

Signed-off-by: yutaka <purewater0901@gmail.com>

* update

Signed-off-by: yutaka <purewater0901@gmail.com>

Signed-off-by: yutaka <purewater0901@gmail.com>

* refactor(perception_utils): refactor matching function in perception_utils (#2045)

* refactor(perception_util): refactor matching function in perception_util

Signed-off-by: scepter914 <scepter914@gmail.com>

* fix namespace

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor

Signed-off-by: scepter914 <scepter914@gmail.com>

* fix bug

Signed-off-by: scepter914 <scepter914@gmail.com>

* add const

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor function name

Signed-off-by: scepter914 <scepter914@gmail.com>

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor(perception_utils): refactor object_classification (#2042)

* refactor(perception_utils): refactor object_classification

Signed-off-by: scepter914 <scepter914@gmail.com>

* fix bug

Signed-off-by: scepter914 <scepter914@gmail.com>

* fix unittest

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor

Signed-off-by: scepter914 <scepter914@gmail.com>

* fix unit test

Signed-off-by: scepter914 <scepter914@gmail.com>

* remove redundant else

Signed-off-by: scepter914 <scepter914@gmail.com>

* refactor variable name

Signed-off-by: scepter914 <scepter914@gmail.com>

Signed-off-by: scepter914 <scepter914@gmail.com>

* feat(autoware_auto_perception_rviz_plugin): add accel text visualization (#2046)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* refactor(motion_utils, obstacle_cruise_planner): add offset to virtual wall utils func (#2078)

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* refactor(osqp_interface, motion_velocity_smoother): unsolved status log (#2076)

* refactor(osqp_interface, motion_velocity_smoother): unsolved status log

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Update common/osqp_interface/src/osqp_interface.cpp

Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>

* feat(lidar_centerpoint): eliminated the tf dependency for single frame detection (#1925)

Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>

Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>
Co-authored-by: Yusuke Muramatsu <yukke42@users.noreply.github.com>

* change name hardware_monitor -> voltage_monitor

* copy right 2020 -> 2022

* delete duplicated lines

* fix: catch exception, remove sensors_exists_

* adding error message output

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* adding document for voltage monitor

* fixed for the issue of multithread

* ci(pre-commit): autofix

* Fixed the lack for  processing of Error case.

* deleted magic number 200

* moved voltage_mnitor to tha last

* minimizing between try-catch.

* ci(pre-commit): autofix

* added default vlue of cmos_battery_voltage

* changed the label name to cmos_battery_label.

* adding language specified

* resolved conflict

* resolved conflict

* ci(pre-commit): autofix

* added topics_voltage_monitor.md)

* ci(pre-commit): autofix

* chore: sync files (#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (#639)

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: sync files (#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(behavior_velocity): avoid insert same point on trajectory utils (#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs: fix 404 error caused by typo in url (#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(image_projection_based_fusion): set imagebuffersize (#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore(avoidance_module): fix spell check (#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat: isolate gtests in all packages (#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(virtual traffic light): add documentation (#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(surround_obstacle_checker): fix ego footprint polygon (#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix: update nvinfer api (#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* test(autoware_testing): fix smoke_test (#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(rviz_plugins): add velocity limit to autoware state panel (#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(vehicle_info_util): add max_steer_angle (#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: fix typos (#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* fixed conflicts

* ci(pre-commit): autofix

* resolve conflict

* deleted

* added "Voltage Monitor"

* ci(pre-commit): autofix

* merged with main->feature_battery_monitoring

* merge  main ->feature_battery_monitoring

* ci(pre-commit): autofix

* added default vlue of cmos_battery_voltage

* resolved conflict

* resolved conflict

* added topics_voltage_monitor.md)

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* chore: sync files (#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (#639)

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: sync files (#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(behavior_velocity): avoid insert same point on trajectory utils (#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs: fix 404 error caused by typo in url (#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(image_projection_based_fusion): set imagebuffersize (#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore(avoidance_module): fix spell check (#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat: isolate gtests in all packages (#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(virtual traffic light): add documentation (#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(surround_obstacle_checker): fix ego footprint polygon (#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix: update nvinfer api (#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* test(autoware_testing): fix smoke_test (#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(rviz_plugins): add velocity limit to autoware state panel (#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(vehicle_info_util): add max_steer_angle (#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* chore: fix typos (#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* fixed conflicts

* ci(pre-commit): autofix

* resolve conflict

* ci(pre-commit): autofix

* merged with main->feature_battery_monitoring

* merge  main ->feature_battery_monitoring

* Added voltages are provisional values.

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* ci(pre-commit): autofix

* fixed conflict manually

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fixed conflict manually

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

* fixed conflict

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* fixed conflict

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>

* ci(pre-commit): autofix

Signed-off-by: Nobuo TAKAMASA <nobuo.takamasa@tier4.jp>
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Signed-off-by: yutaka <purewater0901@gmail.com>
Signed-off-by: scepter914 <scepter914@gmail.com>
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>
Co-authored-by: ito-san <57388357+ito-san@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: Shintaro Tomie <58775300+Shin-kyoto@users.noreply.github.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Zulfaqar Azmi <93502286+zulfaqar-azmi-t4@users.noreply.github.com>
Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Co-authored-by: badai nguyen <94814556+badai-nguyen@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Yutaka Shimizu <43805014+purewater0901@users.noreply.github.com>
Co-authored-by: Satoshi Tanaka <16330533+scepter914@users.noreply.github.com>
Co-authored-by: Kenzo Lobos Tsunekawa <kenzo.lobos@tier4.jp>
Co-authored-by: Yusuke Muramatsu <yukke42@users.noreply.github.com>
yukke42 pushed a commit that referenced this pull request Feb 20, 2023
…sor synchronization (#2705)

* ci: add sync-upstream.yaml (#4)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* ci(sync-upstream): update settings (#19)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* chore: sync files (#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore: sync files (#637)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (#639)

* chore: sync files (#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(behavior_velocity): avoid insert same point on trajectory utils (#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(system_monitor): fix build error on tegra platform (#869)

* fix(system_monitor): fix build error on tegra platform

Signed-off-by: Shark Liu <shark.liu@autocore.ai>

* ci(pre-commit): autofix

* Update system/system_monitor/src/gpu_monitor/tegra_gpu_monitor.cpp

Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>

* feat(ad_service_state_monitor): limit odometry buffer size (#514)

* feat(ad_service_state_monitor): limit odometry buffer size 40

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Update system/ad_service_state_monitor/src/ad_service_state_monitor_node/ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Update ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs: fix 404 error caused by typo in url (#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* fix(image_projection_based_fusion): set imagebuffersize (#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore(avoidance_module): fix spell check (#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* feat: isolate gtests in all packages (#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>

* docs(virtual traffic light): add documentation (#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat: remove deprecated package in prediction launch (#875)

Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>

* fix(surround_obstacle_checker): fix ego footprint polygon (#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix: update nvinfer api (#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* test(autoware_testing): fix smoke_test (#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(rviz_plugins): add velocity limit to autoware state panel (#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* fix(dummy_perception_publisher): publish multiple layers of pointcloud (#882)

* fix: single -> multiple layers pointcloud

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* refactor: share common among different pcloud creators

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* feat(vehicle_info_util): add max_steer_angle (#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>

* ci(deploy-docs): remove mdx_unimoji (#883)

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (#884)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* chore: fix typos (#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs(obstacle_stop_planner): update documentation (#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_traffic_light_rviz_plugin): update documentation (#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(accel_brake_map_calibrator): rviz panel type (#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>

* feat(behavior_path_planner): weakened noise filtering of drivable area (#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* ci: add slack-send.yaml (#133)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* add: update readme

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* fix: remove unneeded file

Signed-off-by: tzhong518 <sworgun@gmail.com>

* fix: table format

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* Update perception/image_projection_based_fusion/README.md

Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>

* Update README.md

* Update README.md

* Update README.md

---------

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>
Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: tzhong518 <sworgun@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: tier4-autoware-public-bot[bot] <98652886+tier4-autoware-public-bot[bot]@users.noreply.github.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Yuma Nihei <yuma.nihei@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Shark <71419791+Sharrrrk@users.noreply.github.com>
Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Shintaro Tomie <58775300+Shin-kyoto@users.noreply.github.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Zulfaqar Azmi <93502286+zulfaqar-azmi-t4@users.noreply.github.com>
Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Hirokazu Ishida <38597814+HiroIshida@users.noreply.github.com>
Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Co-authored-by: Shumpei Wakabayashi <42209144+shmpwk@users.noreply.github.com>
Co-authored-by: badai nguyen <94814556+badai-nguyen@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: naokimatsunawa <naoki.matsunawa@tier4.jp>
Co-authored-by: Tomohito ANDO <tomohito.ando@tier4.jp>
Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
nabetetsu pushed a commit to xygyo77/autoware.universe that referenced this pull request Mar 1, 2023
…sor synchronization (autowarefoundation#2705)

* ci: add sync-upstream.yaml (autowarefoundation#4)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* ci(sync-upstream): update settings (autowarefoundation#19)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* chore: sync files (autowarefoundation#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore: sync files (autowarefoundation#637)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (autowarefoundation#639)

* chore: sync files (autowarefoundation#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (autowarefoundation#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(behavior_velocity): avoid insert same point on trajectory utils (autowarefoundation#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (autowarefoundation#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(system_monitor): fix build error on tegra platform (autowarefoundation#869)

* fix(system_monitor): fix build error on tegra platform

Signed-off-by: Shark Liu <shark.liu@autocore.ai>

* ci(pre-commit): autofix

* Update system/system_monitor/src/gpu_monitor/tegra_gpu_monitor.cpp

Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>

* feat(ad_service_state_monitor): limit odometry buffer size (autowarefoundation#514)

* feat(ad_service_state_monitor): limit odometry buffer size 40

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Update system/ad_service_state_monitor/src/ad_service_state_monitor_node/ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Update ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs: fix 404 error caused by typo in url (autowarefoundation#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* fix(image_projection_based_fusion): set imagebuffersize (autowarefoundation#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore(avoidance_module): fix spell check (autowarefoundation#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* feat: isolate gtests in all packages (autowarefoundation#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>

* docs(virtual traffic light): add documentation (autowarefoundation#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (autowarefoundation#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat: remove deprecated package in prediction launch (autowarefoundation#875)

Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>

* fix(surround_obstacle_checker): fix ego footprint polygon (autowarefoundation#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix: update nvinfer api (autowarefoundation#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (autowarefoundation#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (autowarefoundation#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* test(autoware_testing): fix smoke_test (autowarefoundation#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(rviz_plugins): add velocity limit to autoware state panel (autowarefoundation#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* fix(dummy_perception_publisher): publish multiple layers of pointcloud (autowarefoundation#882)

* fix: single -> multiple layers pointcloud

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* refactor: share common among different pcloud creators

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* feat(vehicle_info_util): add max_steer_angle (autowarefoundation#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>

* ci(deploy-docs): remove mdx_unimoji (autowarefoundation#883)

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (autowarefoundation#884)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (autowarefoundation#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* chore: fix typos (autowarefoundation#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (autowarefoundation#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs(obstacle_stop_planner): update documentation (autowarefoundation#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_traffic_light_rviz_plugin): update documentation (autowarefoundation#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(accel_brake_map_calibrator): rviz panel type (autowarefoundation#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (autowarefoundation#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>

* feat(behavior_path_planner): weakened noise filtering of drivable area (autowarefoundation#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* ci: add slack-send.yaml (autowarefoundation#133)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* add: update readme

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* fix: remove unneeded file

Signed-off-by: tzhong518 <sworgun@gmail.com>

* fix: table format

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* Update perception/image_projection_based_fusion/README.md

Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>

* Update README.md

* Update README.md

* Update README.md

---------

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>
Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: tzhong518 <sworgun@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: tier4-autoware-public-bot[bot] <98652886+tier4-autoware-public-bot[bot]@users.noreply.github.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Yuma Nihei <yuma.nihei@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Shark <71419791+Sharrrrk@users.noreply.github.com>
Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Shintaro Tomie <58775300+Shin-kyoto@users.noreply.github.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Zulfaqar Azmi <93502286+zulfaqar-azmi-t4@users.noreply.github.com>
Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Hirokazu Ishida <38597814+HiroIshida@users.noreply.github.com>
Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Co-authored-by: Shumpei Wakabayashi <42209144+shmpwk@users.noreply.github.com>
Co-authored-by: badai nguyen <94814556+badai-nguyen@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: naokimatsunawa <naoki.matsunawa@tier4.jp>
Co-authored-by: Tomohito ANDO <tomohito.ando@tier4.jp>
Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
1222-takeshi pushed a commit to 1222-takeshi/autoware.universe that referenced this pull request Mar 6, 2023
…sor synchronization (autowarefoundation#2705)

* ci: add sync-upstream.yaml (#4)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* ci(sync-upstream): update settings (#19)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* chore: sync files (autowarefoundation#629)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* ci(pre-commit): autofix

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore: sync files (autowarefoundation#637)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(dummy_diag_publisher): use anon to make unique node name instead of diag name (autowarefoundation#639)

* chore: sync files (autowarefoundation#648)

* chore: sync files

Signed-off-by: GitHub <noreply@github.com>

* Revert "chore: sync files"

This reverts commit b24f530.

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* sync codecov.yaml

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage (autowarefoundation#666)

* fix(autoware_state_panel): fix message type for /api/autoware/get/engage

Signed-off-by: h-ohta <hiroki.ota@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* fix(behavior_velocity): avoid insert same point on trajectory utils (autowarefoundation#834)

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* refactor(behavior_velocity_planner): simplify CMakeLists.txt (autowarefoundation#855)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* fix(system_monitor): fix build error on tegra platform (autowarefoundation#869)

* fix(system_monitor): fix build error on tegra platform

Signed-off-by: Shark Liu <shark.liu@autocore.ai>

* ci(pre-commit): autofix

* Update system/system_monitor/src/gpu_monitor/tegra_gpu_monitor.cpp

Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>

* feat(ad_service_state_monitor): limit odometry buffer size (autowarefoundation#514)

* feat(ad_service_state_monitor): limit odometry buffer size 40

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Update system/ad_service_state_monitor/src/ad_service_state_monitor_node/ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* Update ad_service_state_monitor_node.cpp

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs: fix 404 error caused by typo in url (autowarefoundation#871)

* docs: fix 404 error caused by typo in url

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* docs: fix typo in url for yolov4

Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>

* fix(image_projection_based_fusion): set imagebuffersize (autowarefoundation#820)

* fix: set imagebuffersize configured

Signed-off-by: suchang <chang.su@autocore.ai>

* ci(pre-commit): autofix

Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* chore(avoidance_module): fix spell check (autowarefoundation#732)

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* feat: isolate gtests in all packages (autowarefoundation#693)

Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>

* docs(virtual traffic light): add documentation (autowarefoundation#245)

* doc(behavior_velocity): add graph and fix link

* doc(behavior_velocity): update virtual traffic light doc

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc(behavior_velocity): minor fix

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc : mediate to coordinate

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: minor update

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* doc: fix pre-commit

* doc: update docs

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* apply suggestion

* doc: to intersection-coordination

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* feat(surround_obstacle_checker): separate surround_obstacle_checker from hierarchical planning flow (autowarefoundation#830)

* fix(surroud_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(surround_obstacle_checker): use velocity limit

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* chore(surround_obstacle_checker): rename publisher, subscriber and callback functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use parameter struct

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(surround_obstacle_checker): use alias

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup member functions

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): cleanup polygon handling

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* refactor(surround_obstacle_checker): use marker helper

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat(planning_launch): separate surround_obstacle_checker from hierarchical motion planning flow

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* feat: remove deprecated package in prediction launch (autowarefoundation#875)

Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>

* fix(surround_obstacle_checker): fix ego footprint polygon (autowarefoundation#877)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix: update nvinfer api (autowarefoundation#863)

* fix(lidar_centerpoint): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(tensorrt_yolo): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(lidar_apollo_instance_segmentation): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_classifier): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(traffic_light_ssd_fine_detector): update nvinfer api

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* pre-commit run

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix(avoidance_module): ignore object instead of creating zero shift (autowarefoundation#731)

* fix: ignore object instead of creating zero shift

instead of creating zero shift point, the object will be ignored.
no behavior changes should be observed.

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* refactor: sync continue with upstream

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix: fix debug message for insufficient lateral margin

Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>

* fix(motion_velocity_smoother): curve deceleration not working with a specific parameter set (autowarefoundation#738)

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* test(autoware_testing): fix smoke_test (autowarefoundation#479)

* fix(autoware_testing): fix smoke_test

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* restore smoke_test for trajectory_follower_nodes

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* add support multiple parameter files

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

* ci(pre-commit): autofix

* minor fix

Signed-off-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(rviz_plugins): add velocity limit to autoware state panel (autowarefoundation#879)

* feat(rviz_plugins): add velocity limit to autoware state panel

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* chore(rviz_plugin): change ms to kmh

Signed-off-by: tanaka3 <ttatcoder@outlook.jp>

* fix(dummy_perception_publisher): publish multiple layers of pointcloud (autowarefoundation#882)

* fix: single -> multiple layers pointcloud

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* refactor: share common among different pcloud creators

Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>

* feat(vehicle_info_util): add max_steer_angle (autowarefoundation#740)

* feat(vehicle_info_util): add max_steer_angle

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* applied pre-commit

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* Added max_steer_angle in test config

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>

* ci(deploy-docs): remove mdx_unimoji (autowarefoundation#883)

Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>

* chore: sync files (autowarefoundation#884)

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>

* fix(lidar_centerpoint): fix google drive url to avoid 404 (autowarefoundation#889)

* fix(lidar_centerpoint): fix google drive url to avoid 404

* Update CMakeLists.txt

Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* chore: fix typos (autowarefoundation#886)

Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button (autowarefoundation#894)

* feat(state_rviz_plugin): add GateMode and PathChangeApproval Button

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* feat(map_tf_generator): accelerate the 'viewer' coordinate calculation (autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>

* docs(obstacle_stop_planner): update documentation (autowarefoundation#880)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* docs(tier4_traffic_light_rviz_plugin): update documentation (autowarefoundation#905)

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

* fix(accel_brake_map_calibrator): rviz panel type (autowarefoundation#895)

* fixed panel type

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified instruction for rosbag replay case

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* modified update_map_dir service name

Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>

* fix(behavior velocity planner): skipping emplace back stop reason if it is empty (autowarefoundation#898)

* skipping emplace back stop reason if it is empty

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* add braces

Signed-off-by: TakumiKozaka-T4 <takumi.kozaka@tier4.jp>

* ci(pre-commit): autofix

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>

* feat(behavior_path_planner): weakened noise filtering of drivable area (autowarefoundation#838)

* feat(behavior_path_planner): Weakened noise filtering of drivable area

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* fix lanelet's longitudinal disconnection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* add comments of erode/dilate process

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* ci: add slack-send.yaml (autowarefoundation#133)

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* add: update readme

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* fix: remove unneeded file

Signed-off-by: tzhong518 <sworgun@gmail.com>

* fix: table format

Signed-off-by: tzhong518 <sworgun@gmail.com>

* ci(pre-commit): autofix

* Update perception/image_projection_based_fusion/README.md

Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>

* Update README.md

* Update README.md

* Update README.md

---------

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Signed-off-by: tanaka3 <ttatcoder@outlook.jp>
Signed-off-by: Shin-kyoto <aquashin0202@gmail.com>
Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Signed-off-by: Maxime CLEMENT <maxime.clement@tier4.jp>
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
Signed-off-by: Yukihiro Saito <yukky.saito@gmail.com>
Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Signed-off-by: Hirokazu Ishida <h-ishida@jsk.imi.i.u-tokyo.ac.jp>
Signed-off-by: Shumpei Wakabayashi <shumpei.wakabayashi@tier4.jp>
Signed-off-by: badai-nguyen <dai.nguyen@tier4.jp>
Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
Signed-off-by: tzhong518 <sworgun@gmail.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
Co-authored-by: tier4-autoware-public-bot[bot] <98652886+tier4-autoware-public-bot[bot]@users.noreply.github.com>
Co-authored-by: awf-autoware-bot[bot] <94889083+awf-autoware-bot[bot]@users.noreply.github.com>
Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Hiroki OTA <hiroki.ota@tier4.jp>
Co-authored-by: Yuma Nihei <yuma.nihei@tier4.jp>
Co-authored-by: Kenji Miyake <kenji.miyake@tier4.jp>
Co-authored-by: taikitanaka3 <65527974+taikitanaka3@users.noreply.github.com>
Co-authored-by: Shark <71419791+Sharrrrk@users.noreply.github.com>
Co-authored-by: Shark Liu <shark.liu@autocore.ai>
Co-authored-by: Daisuke Nishimatsu <42202095+wep21@users.noreply.github.com>
Co-authored-by: Takayuki Murooka <takayuki5168@gmail.com>
Co-authored-by: Shintaro Tomie <58775300+Shin-kyoto@users.noreply.github.com>
Co-authored-by: storrrrrrrrm <103425473+storrrrrrrrm@users.noreply.github.com>
Co-authored-by: suchang <chang.su@autocore.ai>
Co-authored-by: Zulfaqar Azmi <93502286+zulfaqar-azmi-t4@users.noreply.github.com>
Co-authored-by: Maxime CLEMENT <78338830+maxime-clem@users.noreply.github.com>
Co-authored-by: Satoshi OTA <44889564+satoshi-ota@users.noreply.github.com>
Co-authored-by: Yukihiro Saito <yukky.saito@gmail.com>
Co-authored-by: Takamasa Horibe <horibe.takamasa@gmail.com>
Co-authored-by: Keisuke Shima <19993104+KeisukeShima@users.noreply.github.com>
Co-authored-by: Hirokazu Ishida <38597814+HiroIshida@users.noreply.github.com>
Co-authored-by: Tomoya Kimura <tomoya.kimura@tier4.jp>
Co-authored-by: Shumpei Wakabayashi <42209144+shmpwk@users.noreply.github.com>
Co-authored-by: badai nguyen <94814556+badai-nguyen@users.noreply.github.com>
Co-authored-by: Takeshi Ishita <ishitah.takeshi@gmail.com>
Co-authored-by: Mamoru Sobue <hilo.soblin@gmail.com>
Co-authored-by: TakumiKozaka-T4 <70260442+TakumiKozaka-T4@users.noreply.github.com>
Co-authored-by: Takagi, Isamu <43976882+isamu-takagi@users.noreply.github.com>
Co-authored-by: Yohei Mishina <66298900+YoheiMishina@users.noreply.github.com>
Co-authored-by: naokimatsunawa <naoki.matsunawa@tier4.jp>
Co-authored-by: Tomohito ANDO <tomohito.ando@tier4.jp>
Co-authored-by: Shunsuke Miura <37187849+miursh@users.noreply.github.com>
swiftfile pushed a commit to swiftfile/autoware.universe that referenced this pull request Mar 16, 2023
autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
swiftfile pushed a commit to swiftfile/autoware.universe that referenced this pull request Mar 16, 2023
autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
swiftfile pushed a commit to swiftfile/autoware.universe that referenced this pull request Mar 16, 2023
autowarefoundation#890)

* add random point sampling function to quickly calculate the 'viewer' coordinate

Signed-off-by: IshitaTakeshi <ishitah.takeshi@gmail.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Kenji Miyake <31987104+kenji-miyake@users.noreply.github.com>
YoshiRi pushed a commit to YoshiRi/autoware.universe that referenced this pull request Nov 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants