Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync upstream #9

Merged
merged 15 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/course/perception.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# 04. 外界認識
# 03. 外界認識

## 04-01. lidarから点群を取得し障害物検知をする
## 03-01. lidarから点群を取得し障害物検知をする

!!! warning

作成中

## 04-02. 点群情報に基づいて経路・軌道計画し車両を追従させる
## 03-02. 点群情報に基づいて経路・軌道計画し車両を追従させる

!!! warning

作成中

## 04-03. PIDとpure pursuitで車両を軌道に追従させる
## 03-03. PIDとpure pursuitで車両を軌道に追従させる

!!! warning

Expand Down
1 change: 1 addition & 0 deletions docs/course/velocity_planning.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ twist:
$$ a = k_{\text{p}} \cdot (v_{\text{target}} - v_{\text{now}}) $$

以下に速度の比例制御を行うノードのサンプルを用意しました。

- [velocity_planning/p_controller.hpp](https://github.com/AutomotiveAIChallenge/autoware-practice/blob/main/src/autoware_practice_course/src/velocity_planning/p_controller.hpp)
- [velocity_planning/p_controller.cpp](https://github.com/AutomotiveAIChallenge/autoware-practice/blob/main/src/autoware_practice_course/src/velocity_planning/p_controller.cpp)

Expand Down
Loading