id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
| id |
title |
category |
status |
canonical_id |
aliases |
duplicate_of |
source_trust_level |
confidence_score |
verification_status |
tags |
raw_sources |
last_reinforced |
github_commit |
tech_stack |
| wiki-2026-0508-autonomous-vehicle-path-planning |
Autonomous Vehicle Path Planning |
10_Wiki/Topics |
verified |
self |
| AV Path Planning |
| Self-Driving Planning |
| Motion Planning |
|
none |
A |
0.94 |
applied |
| robotics |
| autonomous-driving |
| motion-planning |
| mpc |
| av |
|
|
2026-05-10 |
pending |
| language |
framework |
| Python/C++ |
Apollo/Autoware/OpenPlanner |
|
Autonomous Vehicle Path Planning
매 한 줄
"매 perception 의 X — 매 prediction + decision + trajectory 의 closed-loop.". AV path planning 의 perception output (objects, lanes, drivable area) → prediction (other agents) → behavior decision (lane change, yield) → trajectory (smooth, kinodynamic) → control. 매 2026 의 Tesla FSD v13 (end-to-end NN), Waymo (modular), Wayve LINGO (VLM-based), 모두 의 hybrid trend.
매 핵심
매 Architecture (Modular)
- Mission planner: route (A→B) over road graph.
- Behavior planner: discrete decision (FSM / POMDP / RL).
- Local planner / motion: collision-free trajectory (Frenet, lattice, sampling, optimization).
- Trajectory tracker: MPC / pure pursuit → steering + throttle.
매 Algorithms
- Search: A*, Hybrid A* (kinematic), RRT*, RRT-Connect.
- Sampling: lattice planner (predefined motion primitives).
- Optimization: iLQR, MPC, CILQR (cost = comfort + safety + progress).
- Frenet frame: lateral + longitudinal decoupling.
- Learning-based: ChauffeurNet, MotionLM, end-to-end (Tesla FSD v13).
- Foundation model: Wayve LINGO-2 / GAIA-2 — VLM + driving.
매 Safety
- ISO 26262 / ISO 21448 (SOTIF).
- RSS (Responsibility-Sensitive Safety, Mobileye).
- Formal verification of decision layer.
- Out-of-distribution detection.
매 응용
- L4 robotaxi (Waymo, Cruise relaunch, Apollo Go).
- L2+ ADAS (Tesla FSD, BYD, NIO Pilot).
- Truck platooning (Aurora, Plus).
- Last-mile delivery (Nuro).
💻 패턴
Pattern 1 — Frenet trajectory generation
Pattern 2 — Hybrid A* (sketch)
Pattern 3 — MPC trajectory tracking (acados / casadi)
Pattern 5 — Behavior FSM
매 결정 기준
| 상황 |
Approach |
| Highway lane change |
Frenet + lattice + MPC |
| Parking |
Hybrid A* + Reeds-Shepp |
| Urban intersection |
POMDP / behavior tree + RSS check |
| Off-road / unstructured |
RRT* + sampling MPC |
| End-to-end product (Tesla) |
NN policy + safety guard |
기본값: Frenet planning + MPC tracking + RSS safety check + rule-based behavior FSM.
🔗 Graph
🤖 LLM 활용
언제: scenario synthesis (corner cases), behavior reasoning prototype (LINGO-style), code generation for ROS / Apollo modules, log triage.
언제 X: real-time control loop (latency, safety cert), final RSS verification (formal methods).
❌ 안티패턴
- Greedy lane change: no comfort cost → jerky.
- No prediction uncertainty: 매 single mode 의 future — multi-modal essential.
- Skipping kinodynamic check: A* path 의 robot 의 unfollowable.
- End-to-end without guard: NN failure mode → safety violation.
🧪 검증 / 중복
- Verified (Apollo, Autoware open-source, Mobileye RSS paper, Waymo safety report).
- 신뢰도 A.
🕓 Changelog
| 날짜 |
변경 |
| 2026-05-08 |
Phase 1 |
| 2026-05-10 |
Manual cleanup — FULL content (Frenet, Hybrid A*, MPC, RSS) |