Skip to content

Commit

Permalink
🔄 synced local 'docs/ai' with remote 'docs'
Browse files Browse the repository at this point in the history
  • Loading branch information
HansRobo committed May 11, 2024
1 parent 9350090 commit ff9c7c7
Showing 1 changed file with 58 additions and 2 deletions.
60 changes: 58 additions & 2 deletions docs/ai/diagram.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# ノードダイアグラム

## シミュレータ環境

```mermaid
graph TD
LP[Local Planner]
Expand Down Expand Up @@ -31,8 +33,8 @@ graph TD
GrC -. UDP .-> GrSim
GrSim -. UDP .-> GrC
GrC -- /geometry --> WP
GrSim -. UDP .-> VC
VC -- /geometry --> WP
GrSim -. UDP .-> VC
Expand All @@ -50,6 +52,60 @@ graph TD
Receiver -- /feedback --> WP
```

## 実機環境

```mermaid
graph TD
subgraph robot
Robots[Robots]
end
subgraph AI Computer
LP[Local Planner]
PS[Play Switcher]
VC[Vision Component]
GCC[Game Controller Component]
Receiver[Robot Receiver]
SC[Session Controller]
SS[Real Sender]
VT[Vision Tracker]
WP[World Model Publisher]
end
subgraph software
Vision[SSL Vision]
GC[Game Controller]
end
WP -- /world_model --> SC
WP -- /world_model --> PS
WP -- /world_model --> LP
Robots -. UDP .-> Receiver
VC -- /geometry --> WP
Vision -. UDP .-> VC
VC -- /detection --> VT
VT -- /detection_tracked --> WP
GC -. UDP .-> GCC
GCC -- /referee --> PS
PS -- /play_situation --> SC
SC -- /control_targets --> LP
LP -- /robot_commands --> SS
SS -. UDP .-> Robots
Receiver -- /feedback --> WP
```

## テスト用のノードダイアグラム

```mermaid
Expand Down

0 comments on commit ff9c7c7

Please sign in to comment.