This chapter covers the planning and control layers of the autonomous driving stack, from classical path planning algorithms to modern End-to-End neural architectures. We then survey the major industry players shaping the autonomous driving landscape as of early 2026, including their technologies, deployment status, and strategic directions.
Learning Objectives
By completing this chapter, you will be able to:
- Compare classical, ML-based, and hybrid path planning approaches and their trade-offs
- Understand behavior prediction methods from physics models to Transformer-based architectures
- Explain knowledge-driven vs. data-driven decision-making and the hybrid mainstream
- Analyze the End-to-End vs. modular architecture debate and 2025-2026 frontiers
- Describe PID and MPC control strategies with their mathematical foundations
- Identify the major autonomous driving companies, their technology stacks, and deployment status
4. Planning Technologies
Planning is the "brain" of an autonomous vehicle, responsible for deciding where to go and how to get there safely and efficiently. This section covers the three core planning sub-problems: path planning, behavior prediction, and decision-making, along with the critical architectural debate between modular and End-to-End approaches.
4.1 Path Planning
Path planning computes a feasible trajectory from the vehicle's current position to a goal, considering obstacles, road geometry, traffic rules, and dynamic constraints. Approaches fall into three broad categories: traditional (algorithmic), machine learning-based, and hybrid methods.
Traditional Methods
Graph-based methods discretize the environment into a graph of nodes and edges, then search for optimal paths:
- A* (A-star): Uses a heuristic function $h(n)$ to guide search toward the goal efficiently. Guarantees optimality when the heuristic is admissible. Widely used for global route planning on road networks.
- Dijkstra's Algorithm: Explores all possible paths uniformly without heuristic guidance. Guarantees shortest path but is computationally more expensive than A* for large graphs.
- D* (Dynamic A*): Designed for dynamic environments where edge costs can change during traversal. Re-plans efficiently by reusing previous search results, making it suitable for real-time navigation with changing obstacles.
Sampling-based methods explore the configuration space through random sampling, making them effective in high-dimensional or complex environments:
- RRT (Rapidly-exploring Random Trees): Incrementally builds a tree by sampling random points in the configuration space and extending the nearest tree node toward them. Fast exploration but produces sub-optimal, jagged paths.
- RRT*: An asymptotically optimal variant of RRT that rewires the tree as new samples are added, converging toward the optimal path given sufficient samples.
- PRM (Probabilistic Roadmap): Pre-computes a roadmap by sampling the free space and connecting nearby samples. Efficient for multi-query planning in static environments.
Optimization-based methods formulate path planning as a continuous optimization problem, minimizing a cost function (e.g., path length, curvature, jerk) subject to vehicle kinematic and dynamic constraints.
Interpolation curves generate smooth, drivable paths from waypoints:
- Spline curves: Piecewise polynomial curves (cubic, B-spline) that pass through or approximate waypoints with controllable smoothness.
- Bezier curves: Defined by control points, providing intuitive shape control and guaranteed smoothness. Commonly used for lane-change and turn maneuver generation.
ML-Based Methods
Machine learning-based path planning (approximately 25% of recent research) leverages learned representations for:
- Learning capability: Neural networks can learn complex cost functions and driving behaviors from large-scale data, capturing nuances that are difficult to hand-engineer.
- Fast response: Once trained, neural network inference is typically faster than iterative optimization, enabling real-time planning in complex scenarios.
- Common architectures include convolutional neural networks for spatial reasoning, graph neural networks for traffic interaction modeling, and reinforcement learning for sequential decision-making.
Hybrid Methods
Hybrid approaches (approximately 27% of recent research, and the latest trend) combine the strengths of multiple method families:
- Classical algorithms provide safety guarantees and interpretability, while ML components handle complex perception-dependent planning.
- Example: Using a neural network to predict a cost map, then running A* or optimization on that cost map for the final trajectory.
- This combination addresses the reliability concerns of pure ML approaches while gaining the adaptability that pure classical methods lack.
Comparison of Path Planning Approaches
| Aspect | Traditional (Graph/Sampling/Optimization) | ML-Based | Hybrid |
|---|---|---|---|
| Share of Research | ~48% | ~25% | ~27% (growing) |
| Optimality | Provable (A*, RRT*) | No formal guarantees | Partial guarantees |
| Adaptability | Limited to hand-designed rules | Learns from data | Best of both worlds |
| Real-time Performance | Varies (optimization can be slow) | Fast inference | Moderate to fast |
| Interpretability | High | Low (black box) | Moderate |
| Safety Guarantees | Formal verification possible | Difficult to verify | Partial verification |
| Data Requirements | None | Large-scale driving data | Moderate |
| Handling Dynamic Obstacles | D* (replanning), moderate | Strong (learned patterns) | Strong |
| Example Methods | A*, RRT*, Spline, Bezier | NN planners, RL planners | NN cost map + A*, learned + optimization |
4.2 Behavior Prediction
Behavior prediction forecasts the future trajectories and intentions of surrounding traffic participants (vehicles, pedestrians, cyclists). Accurate prediction is essential for safe planning, as the ego vehicle must anticipate others' movements to avoid collisions and navigate smoothly.
Physics Model-Based Prediction
- Constant Velocity / Constant Acceleration models: Assume the target will continue at its current speed or acceleration. Simple and computationally cheap, but inaccurate for complex maneuvers (turns, lane changes).
- Bicycle model: Models a vehicle as a two-wheeled system with front-wheel steering. Captures basic vehicle kinematics (turning radius, slip angle) for short-horizon prediction. More accurate than constant velocity but still limited for multi-agent interactions.
Probability Distribution-Based Prediction
- Gaussian Processes (GP): Non-parametric probabilistic models that provide uncertainty estimates over predicted trajectories. Well-suited for capturing trajectory variability but computationally expensive for large datasets.
- Hidden Markov Models (HMM): Model driving behavior as transitions between discrete hidden states (e.g., lane-keeping, lane-changing, turning). Effective for intention recognition but struggle with continuous trajectory prediction.
Deep Learning-Based Prediction
- LSTM / GRU: Recurrent neural networks that model temporal sequences of trajectory points. Capture long-range temporal dependencies in driving behavior. Widely used as baseline architectures for trajectory prediction.
- Graph Neural Networks (GNN): Model traffic scenes as graphs where nodes represent traffic participants and edges represent their interactions (spatial proximity, social forces). Excel at capturing complex multi-agent interactions that are difficult to model explicitly.
- Transformer-based models: Apply self-attention mechanisms to trajectory sequences, capturing both temporal dynamics and spatial interactions simultaneously. Current state-of-the-art for trajectory prediction benchmarks (e.g., Argoverse, nuScenes prediction challenge).
Reinforcement Learning-Based Prediction
- Models other agents as RL agents interacting with the environment, predicting their actions based on learned reward functions.
- Particularly effective for modeling strategic interactions (e.g., merging, negotiating intersections) where agents' decisions depend on each other.
4.3 Decision-Making Algorithms
Decision-making determines the high-level driving strategy: when to change lanes, how to navigate intersections, when to yield, and how to respond to unexpected situations.
Knowledge-Driven Approaches
- Finite State Machines (FSM): Define driving behavior as transitions between discrete states (e.g., cruising, following, overtaking). Simple, interpretable, and easy to implement, but struggle with complex scenarios requiring many states and transitions.
- Decision Trees: Hierarchical rule-based structures that decompose decisions into a sequence of binary choices. Transparent and debuggable, but brittle when encountering scenarios outside the predefined rules.
- Partially Observable Markov Decision Processes (POMDP): Formalize driving as sequential decision-making under uncertainty, where the true state of other agents is partially observable. Theoretically principled but computationally intractable for real-world driving complexity without approximations.
- Game Theory: Models driving as a multi-player game where each agent optimizes its own objective. Captures strategic interactions (e.g., merging negotiation) but assumes rationality of other drivers, which may not hold in practice.
Data-Driven Approaches
- Imitation Learning: Learns driving policies directly from expert demonstrations (human driving data). Produces natural driving behavior but suffers from distribution shift: the model encounters states during deployment that were not present in the training data.
- Reinforcement Learning (RL): Learns driving policies through trial-and-error interaction with an environment (typically simulated). Can discover novel strategies beyond human demonstrations but requires careful reward shaping and extensive simulation training.
- Inverse Reinforcement Learning (IRL): Infers the reward function that explains observed expert behavior, then uses it to derive a driving policy. More robust than direct imitation learning as it captures the underlying objectives rather than surface-level behavior.
Hybrid Approaches: The 2025 Mainstream
The integration of knowledge-driven and data-driven methods represents the mainstream approach in 2025. Hybrid systems use rule-based components for safety-critical decisions (e.g., hard braking, emergency maneuvers) while leveraging learned components for nuanced decisions (e.g., comfortable lane-change timing, social navigation). This architecture provides both the reliability of explicit rules and the adaptability of learned behaviors.
4.4 End-to-End vs. Modular Architectures
The fundamental architectural choice in autonomous driving is between modular (pipeline) and End-to-End (E2E) approaches. This debate has intensified as deep learning capabilities have grown.
Architecture Comparison
| Aspect | Modular (Pipeline) | End-to-End (E2E) |
|---|---|---|
| Structure | Perception, Prediction, Planning, and Control are independently designed modules connected in sequence | A single neural network maps sensor inputs directly to control outputs (steering, throttle, brake) |
| Advantages | High interpretability; each module can be independently developed, tested, and debugged; clear failure attribution; leverages domain expertise | Minimized information loss between stages; globally optimized for the driving task; no hand-designed interfaces between modules |
| Disadvantages | Cumulative errors propagate through the pipeline; information loss at module interfaces; complex integration; suboptimal global performance | Black box problem; difficult to debug failures; requires massive training data; safety verification is challenging |
2025-2026 Frontier: Beyond the Binary Choice
The latest research transcends the simple modular vs. E2E dichotomy, introducing architectures that combine the benefits of both:
Vision-Language-Action (VLA) Models
- Map sensor data through language-based causal reasoning to generate driving trajectories. The language intermediate representation provides interpretability while maintaining end-to-end optimization.
- DiffVLA++: Aligns VLA models with End-to-End driving objectives using a metric-guided scorer, bridging the gap between language understanding and precise vehicle control.
LLM-Based Decision Making
- LeAD (Language-enhanced Autonomous Driving): Leverages large language models for high-level reasoning about driving scenarios, translating complex traffic situations into actionable decisions.
- EMMA: A framework that uses language models as the backbone for driving, processing multi-modal inputs and generating structured driving outputs.
Diffusion Model Planning
- TrajDiff: Applies diffusion models to trajectory planning with self-supervised BEV (Bird's Eye View) heatmap conditioning. Generates diverse, high-quality trajectory samples that capture the multi-modal nature of driving decisions.
Sparse Representation Approaches
- SparseDrive: Uses deformable attention mechanisms for unified instance-level perception and planning. By operating on sparse representations rather than dense feature maps, it achieves both computational efficiency and strong performance on perception and planning benchmarks.
5. Control Technologies
Control is the final layer of the autonomous driving stack, translating planned trajectories into actual vehicle commands (steering angle, throttle, brake pressure). The control system must execute the planned path accurately while maintaining vehicle stability and passenger comfort.
5.1 PID Control
PID (Proportional-Integral-Derivative) control is the most fundamental and widely used feedback control method. It computes a control signal based on three terms derived from the tracking error $e(t)$:
- P (Proportional): Produces a control output proportional to the current error. Larger error leads to stronger correction. Alone, it cannot eliminate steady-state error.
- I (Integral): Accumulates past errors over time, eliminating steady-state error that the P term cannot remove. However, excessive integral gain can cause overshoot and oscillation (integral windup).
- D (Derivative): Responds to the rate of change of the error, providing damping that suppresses oscillations and improves transient response. Acts as a "predictive" term that anticipates future error trends.
The PID control law is expressed as:
$$u(t) = K_p e(t) + K_i \int_0^t e(\tau) \, d\tau + K_d \frac{de(t)}{dt}$$where:
- $u(t)$ is the control output (e.g., steering angle correction)
- $e(t) = r(t) - y(t)$ is the tracking error (reference minus actual)
- $K_p$, $K_i$, $K_d$ are the proportional, integral, and derivative gains
r(t)"] --> SUM(("+−")) SUM --> E["e(t)"] E --> P["K_p · e(t)
Proportional"] E --> I["K_i · ∫e dτ
Integral"] E --> D["K_d · de/dt
Derivative"] P --> ADD(("+")) I --> ADD D --> ADD ADD --> U["u(t)
Control Output"] U --> PLANT["Vehicle
Plant"] PLANT --> Y["y(t)
Output"] Y --> |Feedback| SUM
Advantages
- No model needed: Does not require a mathematical model of the vehicle dynamics, making it applicable to a wide range of systems.
- Very low computational cost: Requires only basic arithmetic operations per control cycle, easily running at 1 kHz+ on embedded processors.
- Easy implementation: Straightforward to implement, tune (via Ziegler-Nichols or manual methods), and debug.
Disadvantages
- Cannot explicitly handle constraints: Has no mechanism to enforce actuator limits (max steering angle, max braking force) or state constraints (speed limits, lane boundaries) within the control law itself.
- Difficult for nonlinear systems: Fixed gains cannot adapt to the highly nonlinear dynamics of vehicles at varying speeds, road surfaces, and loading conditions without gain scheduling.
5.2 MPC (Model Predictive Control)
Model Predictive Control (MPC) is an advanced control strategy that computes optimal control inputs by solving an optimization problem over a finite prediction horizon at each time step. It uses a mathematical model of the vehicle to predict future states and optimize a cost function subject to constraints.
Core Principle: Receding Horizon
At each time step, MPC:
- Predicts the vehicle's future states over a horizon of $N$ steps using the vehicle dynamics model.
- Solves an optimization problem to find the control sequence that minimizes a cost function (tracking error, control effort, comfort).
- Applies only the first control input from the optimal sequence.
- Advances one time step, receives new state measurements, and repeats the process.
This "receding horizon" approach continuously re-optimizes as new information becomes available, providing robustness to model inaccuracies and disturbances.
MPC Optimization Formulation
The general MPC optimization problem can be expressed as:
$$\min_{u_0, \ldots, u_{N-1}} \sum_{k=0}^{N-1} \left[ \| x_k - x_k^{\text{ref}} \|_Q^2 + \| u_k \|_R^2 \right] + \| x_N - x_N^{\text{ref}} \|_P^2$$subject to:
$$x_{k+1} = f(x_k, u_k) \quad \text{(vehicle dynamics model)}$$ $$x_k \in \mathcal{X} \quad \text{(state constraints: speed limits, lane boundaries)}$$ $$u_k \in \mathcal{U} \quad \text{(input constraints: steering limits, acceleration limits)}$$where:
- $x_k$ is the predicted state at step $k$ (position, heading, velocity)
- $u_k$ is the control input at step $k$ (steering angle, acceleration)
- $x_k^{\text{ref}}$ is the reference trajectory from the planning module
- $Q$, $R$, $P$ are weight matrices for state tracking, control effort, and terminal cost
- $N$ is the prediction horizon length
- $f(\cdot)$ is the vehicle dynamics model (kinematic or dynamic bicycle model)
Advantages
- Systematic constraint handling: Explicitly incorporates actuator limits, speed constraints, and safety boundaries into the optimization, ensuring the vehicle always operates within safe bounds.
- Predictive control: Looks ahead along the planned trajectory, enabling proactive control (e.g., slowing down before a sharp turn) rather than reactive correction.
- Nonlinear support: Nonlinear MPC (NMPC) can use full nonlinear vehicle dynamics models, providing accurate control across the entire operating envelope.
Disadvantages
- High computational cost: Solving an optimization problem at each control cycle (typically 10-50 Hz) requires significant compute, especially for nonlinear models and long horizons.
- Requires accurate model: Performance degrades if the vehicle dynamics model is inaccurate (e.g., incorrect tire parameters, unmodeled dynamics). Model identification and adaptation are ongoing challenges.
5.3 2025-2026 Latest Control Technologies
Recent advances in autonomous vehicle control focus on combining classical and learning-based methods to achieve both safety and adaptability:
MPS (MPC + Stanley Integration)
- Combines MPC for longitudinal control (speed and acceleration management) with the Stanley lateral controller (cross-track error-based steering). This separation leverages MPC's predictive optimization for speed profiles while using Stanley's proven geometric approach for path tracking.
DDMPC (Data-Driven MPC)
- Replaces the physics-based vehicle model in MPC with a data-driven model learned from real driving data. This approach captures complex, hard-to-model dynamics (tire-road interactions, suspension effects) that physics models may approximate poorly, while retaining MPC's constraint handling and optimization framework.
Adaptive MPC + PSO Optimization
- Uses an improved Particle Swarm Optimization (PSO) algorithm to adaptively tune MPC parameters (prediction horizon, weight matrices) in real-time based on driving conditions. This addresses the limitation of fixed MPC parameters that cannot perform optimally across all scenarios (highway cruising vs. tight urban turns).
Variable Prediction Horizon MPC
- Dynamically adjusts the MPC prediction horizon $N$ in response to vehicle speed changes. At higher speeds, a longer horizon provides more look-ahead for safer planning; at lower speeds, a shorter horizon reduces computation while maintaining responsiveness. This variable approach balances safety and computational efficiency across the full speed range.
DRL + MPC-PID Hybrid Control
- A Deep Reinforcement Learning (DRL) agent learns from the online operational information of both MPC and PID controllers. The DRL component learns to blend or switch between MPC and PID outputs based on the current driving situation, combining MPC's optimality for complex scenarios with PID's simplicity and speed for straightforward situations. This hybrid architecture reduces overall computational load while maintaining control quality.
6. Major Companies and Players
The autonomous driving industry features a diverse ecosystem of technology companies, automakers, and startups, each pursuing different strategies and levels of autonomy. This section profiles 14 major players as of early 2026.
6.1 Waymo (Alphabet)
Waymo, Alphabet's autonomous driving subsidiary, operates the world's most advanced Level 4 robotaxi service. Its technology stack relies on LiDAR + camera + radar sensor fusion, providing robust redundant perception.
Current Deployment (2025)
- Operational cities: San Francisco, Los Angeles, Phoenix, Austin, and Atlanta (5 cities)
- Ride volume: 450,000 rides per week (up 157% from 175,000 at the start of the year)
- Cumulative rides: Over 14 million total completed rides
2026 Expansion Plan
- New US cities: Dallas, Denver, Detroit, Houston, Las Vegas, Miami, Nashville, and others, targeting 15+ cities
- Ride target: 1 million rides per week
- International expansion: London launch planned; Tokyo test driving in partnership with GO (taxi-hailing platform) and Nihon Kotsu (Japan's largest taxi operator)
Gen 6 Hardware
- Cameras: 13 (reduced from 29 in previous generation)
- LiDAR: 4 units (reduced from 5)
- Radar: 6 units
- Coverage: 360-degree field of view with 500-meter range
- Significant per-vehicle cost reduction through sensor consolidation while maintaining or improving perception capability
6.2 Tesla
Tesla pursues a vision-only approach consistently, relying exclusively on cameras without LiDAR or radar, leveraging its massive fleet data advantage.
FSD (Full Self-Driving) Supervised
- Currently operates at Level 2 (driver supervision required at all times)
- 6.9 billion miles of accumulated driving data from the Tesla fleet, providing an unmatched training dataset
Robotaxi Program
- June 2025 launch: Austin, Texas with safety operators present in vehicles
- Uses modified Model Y vehicles, approximately 135 vehicles in the initial fleet
2026 Plans
- Cybercab production start: Purpose-built robotaxi with no steering wheel or pedals, designed from the ground up for autonomous operation
- Planned launch of unsupervised FSD (no safety operator)
- Subscription-only model: Cybercab will not be sold to individual buyers but operated as a fleet service
6.3 Cruise (GM)
Cruise, once General Motors' flagship autonomous driving venture, underwent a dramatic strategic pivot following a serious safety incident.
Key Timeline
- October 2023: A pedestrian dragging incident in San Francisco halted all driverless operations. A Cruise vehicle struck a pedestrian who had been hit by another car, then dragged the person approximately 20 feet while attempting to pull over.
- December 2024: GM formally withdrew from the robotaxi business, citing the cost of reaching scale. The decision eliminated over $1 billion per year in operating costs.
- 2025: Cruise hired the former head of Tesla Autopilot and pivoted to developing personal autonomous driving technology, focusing on evolving GM's Super Cruise highway hands-free system into a more capable personal AD platform rather than operating a robotaxi fleet.
6.4 Baidu Apollo Go (China)
Baidu's Apollo Go is China's largest and most advanced robotaxi platform, leading the country's autonomous driving deployment.
Deployment Scale
- Operational in 10 Chinese cities, with Wuhan as the largest operational base featuring 600+ vehicles
- February 2025: All services fully removed safety drivers from vehicles, achieving true driverless operation across the fleet
- Ride volume: 250,000 rides per week; 17 million+ cumulative rides
- Growth: Q2 2025 ride volume up 148% year-over-year
Economics
- Gen 6 vehicle cost: $28,600 per unit, a dramatic reduction that makes fleet economics viable
- Approaching breakeven in Wuhan, the first city-level profitability milestone for any robotaxi operator globally
International Expansion
- Middle East: Operations in Dubai and Abu Dhabi
- Hong Kong: Service expansion underway
- Global partnership with Uber for ride-hailing integration
6.5 Mobileye (Intel)
Mobileye, an Intel subsidiary, is the dominant supplier of advanced driver-assistance system (ADAS) chips and software, with its technology embedded in vehicles from most major automakers.
Technology and Market Position
- EyeQ6 Lite / EyeQ6 High: Latest generation ADAS/AD processing chips, with Lite targeting L2+ and High targeting L4 applications
- 230 million+ vehicles worldwide equipped with Mobileye technology, representing the largest installed base in the industry
Robotaxi Program
- VW/MOIA robotaxi: Volkswagen's ID. Buzz electric van equipped with Mobileye Drive Level 4 system, planned for US launch in 2026
Challenges
- December 2025: Approximately 200 layoffs due to declining demand from some OEM customers, reflecting the broader industry's slower-than-expected adoption timeline for higher autonomy levels
6.6 NVIDIA
NVIDIA provides the foundational computing platform for autonomous driving, spanning training infrastructure, simulation, and in-vehicle processing.
DRIVE Platform
- DGX (Training): GPU clusters for training perception, prediction, and planning neural networks at scale
- Omniverse + Cosmos (Simulation): Physics-accurate digital twin simulation environment for testing autonomous driving systems in synthetic scenarios at massive scale
- DRIVE AGX (In-Vehicle): Production-grade in-vehicle computing platform providing the processing power for real-time autonomous driving inference
Alpamayo (CES 2026)
- NVIDIA's flagship autonomous driving AI system announced at CES 2026
- 10 billion parameter Vision-Language-Action (VLA) model, combined with AlpaSim simulation environment and 100 TB of driving data
- CEO Jensen Huang described it as "Physical AI's ChatGPT moment", signaling NVIDIA's belief that autonomous driving AI has reached an inflection point comparable to the emergence of conversational AI
Partnerships and Revenue
- Major partners: GM, Lucid, Mercedes-Benz, Uber
- Auto business forecast: $5 billion revenue by 2026, reflecting NVIDIA's growing role as the essential computing backbone of the autonomous driving industry
6.7 Chinese Startups
Pony.ai
- 2024 Nasdaq IPO: Successfully listed on Nasdaq, establishing itself as a public company in the autonomous driving space
- L4 commercial operations in Guangzhou, Shenzhen, and Beijing
- Fleet: 961 vehicles total, of which 667 are the latest Gen 7 platform
- Economics: Achieved city-level breakeven, demonstrating commercial viability of its robotaxi operations
WeRide
- 2024 Nasdaq IPO: Also listed on Nasdaq, providing public market validation
- Licensed in 5 countries with operations across 10 countries, making it the most internationally diversified Chinese AD company
- Revenue growth: Q2 revenue up 60.8% year-over-year
AutoX
- Operates robotaxi services in multiple cities across China
- Focuses on fully driverless operations in urban environments
6.8 Argo AI (Closed)
Argo AI serves as a cautionary tale about the challenges of commercializing Level 4 autonomous driving.
- Founded 2017 with major backing from Ford and Volkswagen, accumulating $3.6 billion+ in total investment
- Closed October 2022: Both Ford and VW concluded that L4 commercialization was "far further out than initially expected"
- Ford recorded a $2.7 billion write-down on its Argo AI investment
- The closure highlighted the gap between technical demos and scalable commercial deployment, influencing the entire industry's approach to L4 investment timelines
6.9 Zoox (Amazon)
Zoox, acquired by Amazon in 2020, takes a unique approach with a purpose-built autonomous vehicle designed from scratch rather than retrofitting existing cars.
Vehicle Design
- Purpose-built design: Bidirectional 4-passenger vehicle with no steering wheel or pedals
- 16-hour operational range, designed for continuous urban shuttle service
- Symmetrical design allows the vehicle to travel in either direction without turning around
Deployment Status
- 2025: Launched free public service in Las Vegas and San Francisco
- Milestones: Over 1 million autonomous miles driven; approximately 50 vehicles in operation
2026 Plans
- Transition to paid commercial service in Las Vegas
- Continued fleet expansion and service area growth
6.10 Motional (Hyundai / Aptiv)
Motional is a joint venture between Hyundai Motor Group and Aptiv, focused on developing Level 4 robotaxi technology.
- Vehicle platform: Hyundai IONIQ 5-based Level 4 robotaxi
- Ownership changes: Aptiv reduced its stake from 50% to 15%, reflecting reduced commitment and shifting strategic priorities
- Timeline delays: Robotaxi commercialization delayed to 2026, running approximately 2 years behind the original plan
- The reduced investment and timeline delays illustrate the broader industry trend of L4 commercialization taking longer than initially projected
6.11 Toyota (Woven by Toyota)
Toyota pursues autonomous driving through its Woven by Toyota subsidiary, combining a software platform strategy with a unique physical testing environment.
Arene Software Platform
- May 2025: First deployed on the RAV4, marking its production debut
- Comprises three components: SDK (development tools), Tools (testing and validation), and Data platform (fleet data collection and management)
- Designed as an open platform that can be shared with other automakers and mobility providers
Woven City
- A purpose-built test city at the base of Mt. Fuji, designed as a living laboratory for autonomous vehicles, robotics, smart home technology, and urban AI infrastructure
- Phase 1 construction completed in summer 2024
- Provides a controlled real-world environment for testing autonomous driving and mobility technologies at scale
Strategic Partnerships
- NTT joint investment: 500 billion yen (approximately $3.3 billion) partnership to develop an AI-powered mobility platform integrating autonomous driving, communication infrastructure, and smart city technology
Robotaxi Plans
- Odaiba (Tokyo): Level 4 robotaxi free service launched, with plans to transition to paid downtown service as the technology matures and regulatory approvals are obtained
6.12 Honda
Honda has been a pioneer in production-vehicle autonomy, achieving a historic world first with Level 3 deployment.
SENSING Elite (Level 3)
- 2021: World's first Level 3 production vehicle, the Honda Legend sedan (limited to 100 units, lease-only in Japan)
- Enabled highway traffic jam hands-off and eyes-off driving: the driver could divert attention from the road while the system was active in congested highway conditions below 30 km/h
- Represented a historic milestone in autonomous driving regulation and technology deployment
SENSING 360+ (2025)
- 2025 Honda Accord: First deployment of the SENSING 360+ system
- Provides highway hands-off driving at Level 2+, allowing the driver to remove hands from the steering wheel while the system maintains lane centering and adaptive cruise control
- Uses a combination of cameras and radar for 360-degree sensing coverage
6.13 Nissan ProPILOT
Nissan's ProPILOT system is the company's advanced driver assistance platform, evolving toward greater autonomy through AI integration.
ProPILOT Assist 2.1
- Latest version launching with the 2026 Nissan Rogue and Armada
- Enhanced highway driving assistance with improved lane centering, adaptive cruise control, and hands-free driving capability on compatible highways
Next-Generation ProPILOT
- Integrates Wayve AI (a UK-based AI driving startup) technology with LiDAR sensors
- Urban-capable: Designed to handle complex city driving scenarios, not just highway driving
- Planned FY2027 Japan launch at Level 2, with Wayve's learned driving models providing adaptable behavior in diverse urban environments
6.14 Sony Honda Mobility AFEELA
AFEELA is the product of a joint venture between Sony and Honda, combining Sony's sensor and entertainment expertise with Honda's automotive manufacturing capabilities.
AFEELA 1 Sedan
- Starting price: $89,900+
- 40 sensors: 18 cameras + 1 LiDAR + 9 radars + 12 ultrasonic sensors, providing the most sensor-dense production vehicle configuration available
- Processing power: 800 TOPS (Tera Operations Per Second), providing substantial headroom for current and future autonomous driving capabilities
Autonomy Roadmap
- Launch: Level 2+ autonomous driving capability at initial delivery
- OTA evolution: Planned over-the-air software updates to progressively unlock Level 3, and eventually Level 4 capability as the technology and regulatory landscape matures
Launch Timeline
- Late 2026: California delivery begins (US market first)
- 2027: Japan delivery
Chapter Summary
This chapter covered the planning, control, and industry landscape of autonomous driving:
- Path planning spans traditional algorithms (A*, RRT*), ML-based methods, and hybrid approaches that combine the strengths of both. Hybrid methods represent the latest trend at 27% of research.
- Behavior prediction has evolved from simple physics models to deep learning architectures (GNN, Transformer) that capture complex multi-agent interactions.
- Decision-making in 2025 is dominated by hybrid knowledge-driven and data-driven approaches, balancing safety guarantees with learned adaptability.
- The End-to-End vs. modular debate is being transcended by VLA models, LLM-based reasoning, and diffusion model planning that combine interpretability with global optimization.
- PID control provides simplicity and speed, while MPC offers constraint handling and predictive optimization. Latest advances combine both with learning-based methods.
- The industry landscape shows Waymo leading in deployment scale, Tesla leveraging fleet data, Baidu Apollo Go approaching profitability in China, NVIDIA providing the essential computing platform, and Japanese automakers pursuing distinct strategies from L3 pioneering (Honda) to software platforms (Toyota) and sensor-dense EVs (AFEELA).