Robo2u
All posts

Self-Driving Cars & Autonomous Vehicles: The Ultimate Guide

The full self-driving stack: SAE levels, sensing to control, the LiDAR-vs-camera debate, safety cases, robotaxi economics, and who is actually shipping.

By Robo2u Editorial · 24 min read

A self-driving car is a robot that has to be right the first time, in public, at 70 mph, next to your family. That single constraint explains almost everything about how the field turned out. The demo that goes 99% of the way is easy and old news: Carnegie Mellon drove a van across the United States mostly hands-off in 1995, and the DARPA Urban Challenge put full autonomy through a mock city in 2007. The remaining 1%, the pedestrian who steps out from behind a bus, the construction zone with a cop waving you through a red light, the plastic bag that looks like a rock, is where a decade and a half and something north of a hundred billion dollars of investment has gone. The gap between a car that drives well on a good day and a car you can legally remove the driver from is the entire business.

The vehicle itself is a fairly ordinary electric or hybrid car with the suspension, brakes, and steering wired for computer control (a drive-by-wire platform). Bolt onto that a sensor suite worth more than the car, a trunk or a compute rack full of GPUs, a software stack that senses the world, predicts what every other agent will do, plans a safe path, and executes it a few dozen times a second, and a remote operations center with humans watching. The hard part was never making a car turn a wheel by wire. The hard part is perception you can trust, prediction of irrational humans, and a safety argument strong enough to convince a regulator, an insurer, and a jury that the driverless car is safer than the median human it replaced.

This guide treats the autonomous vehicle as the mobile robot it is. We will walk the SAE levels and what they actually mean on the road, the sensing-to-control stack, the sensor religion war (camera-only versus LiDAR fusion), HD maps versus mapless driving, how you build and defend a safety case, the regulatory and liability tangle, the three business models (robotaxi, personal ADAS, autonomous trucking), the real companies and where each of them stands in 2026, and the unit economics that make this one of the longest commercialization curves in the history of technology.

The take: Autonomy is a long-tail problem, so the difficulty lies in the rare events, and rare events only show up in volume once you have driven tens of millions of miles. That creates a chicken-and-egg loop: you need scale to find the edge cases, and you need to have solved the edge cases to earn the scale. The companies winning in 2026 (Waymo in US robotaxis, Baidu Apollo Go in China, Aurora in trucking) are the ones that picked a narrow operational design domain, instrumented it heavily, over-sensed it with LiDAR and radar and cameras and HD maps, and ground out the tail mile by mile. Camera-only bets are cheaper per car and scale faster in the fleet, but they carry the perception risk on their own shoulders. Everyone else is still trying to cross the valley between an impressive demo and a removed safety driver.

Companion reading: LiDAR & depth cameras, machine vision, SLAM & localization, motion planning & kinematics, reinforcement learning for robotics, and robot sensors.

Table of contents

  1. Key takeaways
  2. The SAE levels and what they really mean
  3. The autonomy stack: sensing to control
  4. The sensor debate: camera-only vs LiDAR fusion
  5. HD maps vs mapless driving
  6. The safety case: disengagements, MPI, and proof
  7. Regulation and liability
  8. Three business models: robotaxi, ADAS, trucking
  9. The players in 2026
  10. Unit economics and the long curve
  11. Outlook
  12. Frequently asked questions

The SAE levels and what they really mean

Everyone quotes the SAE J3016 levels; almost everyone gets what they mean wrong. The levels define who is doing the driving task and who is responsible for catching a failure. They say nothing about how smooth or clever the driving looks.

Level Name Who drives Who is responsible Reality in 2026
0 No automation Human Human Warnings only (blind-spot, AEB as a warning)
1 Driver assistance Human + one aid Human Adaptive cruise or lane centering, not both
2 Partial automation Human supervises Human Steering + speed together; human must watch always
3 Conditional automation System, human backup System while engaged Mercedes Drive Pilot, limited traffic-jam use
4 High automation System, no human needed System (in its domain) Waymo, Baidu Apollo Go, Zoox robotaxis
5 Full automation System everywhere System Does not exist, not close

The line that actually matters runs between Level 2 and Level 3. At Level 2, no matter how good the system looks, the human is the driver in the eyes of the law. Tesla's Full Self-Driving (Supervised), GM Super Cruise, Ford BlueCruise, and the lane-centering system in almost every new car are all Level 2. Hands can be off the wheel on some of them, but eyes must stay on the road and the human remains legally and functionally responsible for every outcome. Marketing blurs this constantly, and the confusion has killed people who trusted a Level 2 system as if it were Level 4.

Level 3 is a strange and narrow beast: the system drives and is responsible while engaged, but it can hand back to a human on a few seconds' notice. Mercedes-Benz Drive Pilot is the flagship, certified for hands-off, eyes-off driving under 40 mph (raised toward highway speeds in later approvals) in traffic jams on mapped highways in Germany and in Nevada and California. The handover problem, getting a disengaged human back into the loop safely in seconds, is genuinely hard, which is why many operators skipped Level 3 entirely and jumped to Level 4.

Level 4 is where the driver can actually leave. The system owns the full driving task inside a defined operational design domain (ODD): a geofenced set of streets, weather, speeds, and times of day. A Waymo in Phoenix is a true Level 4 vehicle inside its ODD and refuses to operate outside it. Level 5, autonomy anywhere a human could drive with no constraints, is a marketing word. Nobody is building it and nobody credibly claims a date.

Rule of thumb: If a salesperson or a slide says "self-driving," ask one question: who is legally the driver? If the answer is "you," it is Level 2 no matter what it is called.

The autonomy stack: sensing to control

The classic autonomy pipeline is a chain of stages, each consuming the output of the last. Understanding it as a pipeline is how you reason about where failures come from.

Sensing. Cameras, radar, LiDAR, plus GPS/GNSS, an IMU, and wheel odometry. The raw feed is images, radar returns (range and Doppler velocity), LiDAR point clouds (direct 3D geometry), and ego-motion. For the physics of each sensor, see robot sensors and LiDAR & depth cameras.

Perception. Turn raw sensor data into a model of the world: detect and classify objects (cars, pedestrians, cyclists, cones, debris), track them across frames, segment drivable space and lane lines, read traffic lights and signs, and localize the vehicle to the map. Modern perception is deep learning end to end here, convolutional and transformer networks running on automotive GPUs, and the field increasingly fuses all sensors into a single bird's-eye-view (BEV) representation rather than reasoning per sensor. For the vision side, see machine vision; for placing the car on the map, SLAM & localization.

Prediction. The hardest stage, and the one that separates highway autonomy from city autonomy. Given every tracked agent, predict where each will be over the next several seconds, as a distribution, not a point. The pedestrian at the curb might step out or might not. The car in the next lane might merge. Prediction is deeply coupled to your own plan, because other agents react to what you do, which turns it into a game rather than a forecast.

Planning. Choose a trajectory that is safe, legal, comfortable, and makes progress. Planning usually splits into behavior (should I yield, change lanes, creep at this intersection) and motion (the exact path and speed profile), the latter drawing on the same kinematics and trajectory optimization covered in motion planning & kinematics. The planner has to be assertive enough to not get stuck (an over-cautious robot that freezes at every four-way stop is its own failure mode) and cautious enough to never cause a collision.

Control. Turn the planned trajectory into steering angle, throttle, and brake commands, closing the loop against the vehicle's actual response with controllers (PID, model-predictive control) running at high rate on the drive-by-wire platform. This is the most mature stage and the least likely to be where an autonomous vehicle fails.

The industry is now compressing this pipeline. End-to-end learning, a single neural network from pixels to steering, is the direction Tesla, Wayve, and others are pushing, trained on huge fleets of human driving and increasingly on reinforcement learning and imitation learning (see reinforcement learning for robotics). The appeal is that hand-built module boundaries throw away information and cannot cover every case. The risk is that an end-to-end network is a black box you cannot easily verify or debug, which is exactly what a safety case needs. In 2026 the safety-critical driverless deployments keep interpretable perception and prediction with hard-coded safety guardrails wrapped around the learned parts, while the frontier research bets on end-to-end.

Rule of thumb: Control is solved, perception is hard, and prediction is where the field actually lives. If you want to know how good a stack is, watch how it handles an ambiguous pedestrian or an unprotected left turn rather than how smoothly it holds a lane.

The sensor debate: camera-only vs LiDAR fusion

No argument in the field is more heated. It comes down to how you get depth and how much redundancy you are willing to pay for.

Cameras are cheap, high-resolution, and rich in semantics: they read text, color, and context that no other sensor sees. Their weakness is that depth from a 2D image is inferred, not measured, and they struggle in glare, darkness, fog, and heavy rain. Radar measures range and velocity directly (via Doppler), sees through weather, and is cheap, but has coarse angular resolution and historically struggled to distinguish a stopped car from a bridge, which is why several early automatic-braking systems ignored stationary objects. LiDAR fires laser pulses and measures time of flight to build a dense, direct 3D point cloud accurate to centimeters, day or night, with no dependence on ambient light. Its weaknesses were cost and moving parts, both of which have fallen hard as solid-state and semiconductor LiDAR matured.

The two camps:

LiDAR fusion camp Camera-only camp
Who Waymo, Zoox, Baidu, Cruise (former), Mobileye Chauffeur, most trucking Tesla, Wayve, Mobileye SuperVision (camera-forward)
Depth Measured directly by LiDAR Inferred from images by neural nets
Redundancy Three modalities cross-check each other One modality, heavy reliance on the net
Cost per car Higher (LiDAR historically thousands of dollars) Lower, cameras are cheap
Bet Buy down perception risk with hardware Solve perception in software, scale on cheap hardware
Weakness Cost, map/maintenance burden, expansion speed No independent depth, weather and glare edge cases

The fusion argument is redundancy. If your camera is blinded by low sun and your radar is confused, LiDAR still hands you geometry, and a system that cross-checks three modalities has no single point of perception failure. This is why every operator running fully driverless robotaxis with no human aboard, Waymo above all, runs LiDAR. They are carrying the liability directly, so they over-sense.

The camera-only argument is economics and scale. Tesla removed radar (2021) and ultrasonics from its cars and runs vision-only, betting that a large enough network trained on a large enough fleet can extract everything needed from cameras alone, at a hardware cost low enough to put on millions of consumer cars. If that bet pays off, Tesla scales autonomy across a fleet that dwarfs any robotaxi operator. If it does not, the perception risk sits on the software with no hardware fallback. Humans drive with two cameras (eyes), so cameras are sufficient in principle; the open question is whether current vision networks are good enough, and whether "in principle possible" is the standard a regulator or a jury will accept.

The cost gap that made this a real tradeoff is closing. Automotive LiDAR that cost tens of thousands of dollars a decade ago is now in the hundreds to low thousands from suppliers like Hesai, Luminar, Innoviz, and Valeo, and several OEMs now ship LiDAR on production cars. As LiDAR gets cheap, the pure-cost case for camera-only weakens, and the debate narrows to whether the redundancy is worth the remaining premium and the map dependency it tends to come with.

HD maps vs mapless driving

An HD map is a centimeter-accurate 3D prior of the road: lane geometry, stop lines, traffic-light positions, curbs, crosswalks, speed limits, and often a LiDAR reflectivity map of the ground for precise localization. It is a completely different animal from the navigation map on your phone.

With an HD map, the online problem simplifies enormously. Perception no longer has to discover the road from scratch every frame; it localizes the car into the known map (often to a few centimeters using LiDAR or camera matching, see SLAM & localization), then spends its effort on the dynamic world: other agents and anything that has changed since the map was built. This is a large part of why mapped robotaxis feel so smooth and confident. They already know the intersection is coming, where the stop line is, and which lane turns left.

The cost is the map itself. Someone has to survey every street you want to serve, usually with a dedicated mapping vehicle, then keep it current as construction, repainting, and new signals change the world underneath it. A stale map is a hazard: if the map says a lane exists and it has been coned off, the car has to detect and trust the change over its own prior. Map building and maintenance is a real operational expense and the main reason mapped operators expand city by city and neighborhood by neighborhood rather than everywhere at once.

Mapless (or map-light) driving is the counter-approach: rely on real-time perception to understand any road the way a human does, using at most standard-definition navigation maps for routing. Tesla and Mobileye push this hard, Mobileye with a clever middle path called REM (Road Experience Management), which crowdsources a lightweight map from the cameras of millions of production cars already on the road, so the map builds and refreshes itself from the fleet rather than from dedicated survey vehicles. Mapless is the only way to scale to every road on Earth, because you cannot hand-survey them all. The tradeoff is that you are asking perception to do far more work, in real time, with no prior to fall back on when it is uncertain.

Rule of thumb: HD maps buy reliability and pay for it in expansion speed. Mapless buys scale and pays for it in perception burden. The industry is converging on a middle ground: enough prior to make the common case reliable, enough real-time perception to survive when the prior is wrong.

The safety case: disengagements, MPI, and proof

How do you prove a driverless car is safe enough to remove the driver? This question, more than any sensor or algorithm, is the actual product of a serious autonomy company.

The headline metric is the disengagement: a moment when the safety driver takes over, or the system hands control back. California's DMV requires operators testing with safety drivers to report disengagements annually, and the derived number, miles per intervention (MPI), or its inverse, disengagements per thousand miles, gets quoted endlessly. Leading operators report tens of thousands to hundreds of thousands of miles per disengagement.

The metric is badly flawed and everyone in the field knows it. A disengagement can be a genuine save from a crash or a cautious safety driver grabbing the wheel out of an abundance of caution when nothing was wrong. Companies choose easy routes to inflate the number, or test in benign conditions. MPI tells you almost nothing about the rate of the events that actually matter, the rare, severe, injury-causing ones, because those are far too rare to show up in a disengagement count. Optimizing for MPI can even make you less safe if you train safety drivers to intervene less.

The metric that matters is the crash and injury rate versus a human benchmark, measured over enough real driverless miles to be statistically meaningful. The human baseline in the US is roughly one fatality per 100 million vehicle-miles and one injury crash per several hundred thousand miles, so to show you are safer than a human at the fatal level with statistical confidence, you need to drive on the order of hundreds of millions of miles. Waymo, the only operator with that kind of driverless mileage, has published peer-reviewed and public analyses across tens of millions of rider-only miles showing large reductions in injury-causing and airbag-deployment crashes compared with human drivers over the same road segments. That is the strongest real-world safety evidence any operator has produced, and it is still an argument about a comparatively small fatal-crash sample.

Because you cannot drive hundreds of millions of miles for every software change, the field leans hard on simulation: replay real logs, generate synthetic scenarios, and fuzz the dangerous edge cases (a child darting out, an occluded left turn) millions of times per software build (see robot simulation & digital twin if you want the tooling view). Waabi has built its whole trucking approach around simulation-first validation. Simulation lets you test the tail without waiting for it to happen, at the cost of the sim-to-real gap: your simulator is only as good as its models of sensors and human behavior.

Around all of this sits a structured safety case: a documented, auditable argument, backed by evidence, that the system is acceptably safe for its ODD. The relevant standards are ISO 26262 (functional safety of the electronics, does a fault cause a hazard), ISO 21448 SOTIF (safety of the intended function, is the system unsafe even when nothing is broken because perception is imperfect), and UL 4600 (a standard specifically for the safety case of autonomous products). Mobileye's contribution is RSS (Responsibility-Sensitive Safety), a formal, mathematical model of what "safe" means (minimum following distances, right-of-way rules) that a planner can be proven never to violate, so you get a hard guarantee wrapped around the learned components.

Safety rule: Never trust a single headline number. A real safety argument is a structured case with millions of real miles, billions of simulated miles, a formal safety model, and a crash rate compared honestly against the human it replaces. If an operator leads with disengagements and nothing else, they do not have the case yet.

Regulation and liability

There is no single federal law in the US that says a driverless car is legal. Vehicles must meet the Federal Motor Vehicle Safety Standards (FMVSS), which were written assuming a human driver with a steering wheel and pedals. NHTSA can grant exemptions from specific standards, but the exemption path for purpose-built vehicles with no manual controls (Zoox's bidirectional pod, the Cruise Origin, Tesla's Cybercab) is capped at a few thousand vehicles per manufacturer and has been slow, which is a real bottleneck for scaling steering-wheel-free vehicles. Operation on public roads is governed state by state: Arizona, Texas, California, and Nevada have permissive or workable frameworks, others have little or none, and rules for testing versus commercial deployment differ within each.

Outside the US, the picture is just as fragmented. China has moved aggressively with national and municipal frameworks that let Baidu, Pony.ai, and WeRide run large robotaxi fleets in designated zones in Wuhan, Beijing, and elsewhere. Germany passed some of the earliest Level 4 enabling law and certified Mercedes Drive Pilot for Level 3. The UNECE regulations shape Europe and much of the rest of the world, historically more conservative on hands-off systems. There is no global harmonization, so every operator faces a different rulebook in every market.

The deepest change is liability. When a Level 2 system is engaged and crashes, the human is the driver and carries the fault. When a Level 4 system with no human aboard crashes, the manufacturer or operator is the driver, and product-liability and negligence law applies to the company, not to a person in the seat. Mercedes has publicly accepted liability while Drive Pilot is engaged within its conditions, a landmark position. Waymo carries insurance and liability for its driverless fleet. This shift is why the safety case has to survive a regulator, an insurer pricing the risk, and eventually a courtroom. Cruise's 2023 incident, where a pedestrian already struck by a human-driven car was then dragged by a Cruise vehicle, and the company's mishandling of the reporting, cost it its California permits and, within a year, its existence as a robotaxi operator. The regulatory and public-trust risk is existential.

Three business models: robotaxi, ADAS, trucking

The field has split into three distinct businesses with different domains, economics, and timelines.

Robotaxi removes the driver from a ride-hail vehicle. The prize is enormous, roughly the driver's share of every fare across the ride-hail and taxi market, but the domain is the hardest: dense, chaotic city streets with pedestrians, cyclists, double-parked cars, and cops directing traffic. It is capital-heavy: expensive sensor-laden vehicles, HD maps, depots, cleaning and charging, and a remote-operations center. Waymo and Baidu Apollo Go are the two at real commercial scale, Zoox is launching. The economics only work at high utilization in dense markets, which is why every operator starts in a handful of cities.

Personal ADAS sells driver assistance built into cars you own. This is the largest business by volume today and the only one making real money at scale. Every automaker ships Level 2, and suppliers like Mobileye and Nvidia sell the chips and software behind much of it. The domain is easier because a human is always the backup, so the system can hand off whenever it is unsure. Tesla's FSD, sold as a subscription across millions of cars, is the most aggressive consumer play, betting that the same fleet becomes a robotaxi network via software. The revenue is real now; the path to unsupervised autonomy is the open question.

Autonomous trucking automates long-haul highway freight. The domain is the simplest of the three: highways are structured, well-mapped, and free of pedestrians and cyclists, and the driving is mostly steady-state lane keeping and following. The economics are the clearest: a truck that drives 20+ hours a day without a legally mandated rest break roughly doubles asset utilization and attacks a persistent driver shortage, and fuel and labor dominate freight cost. The catch is that highway speeds leave no time to fail, and a loaded 40-ton truck has a long stopping distance and enormous kinetic energy, so the perception range requirement (you must detect and stop for a stopped object far enough ahead) is severe. Aurora, Kodiak, Waabi, and Bot Auto are the leaders, with the first true driverless commercial hauls on Texas highways beginning in 2024 and 2025.

Rule of thumb: Trucking has the simplest domain and the clearest economics, robotaxi has the biggest prize and the hardest domain, and personal ADAS has the revenue today and the largest fleet. Different problems, different winners, and no reason one company wins all three.

The players in 2026

The named systems and where they actually stand. For live leaderboards of robots and platforms, see data.robo2u.com.

Waymo (Alphabet) is the clear US robotaxi leader. Fully driverless paid rides in Phoenix, San Francisco, Los Angeles, and Austin, expanding to more cities, running on the order of 100,000-plus paid rides per week and climbing. Its fifth- and sixth-generation Waymo Driver fuses LiDAR, radar, and cameras with HD maps, on Jaguar I-PACE vehicles and a next platform built with Zeekr. Waymo has the deepest driverless mileage and the strongest published safety record. It is the proof that Level 4 robotaxis work; the open question is how fast and how profitably it scales.

Baidu Apollo Go is the Waymo of China, running one of the world's largest robotaxi fleets across Wuhan and other cities, with its purpose-built RT6 vehicle engineered to a low cost (reported around 200,000 yuan, roughly the high-$20,000s USD) specifically to make the unit economics work. Chinese regulatory support has let it scale fast.

Tesla runs the largest fleet by far, with FSD (Supervised) as Level 2 on millions of consumer cars, camera-only (Tesla Vision), no LiDAR, no radar, no HD maps. It launched a limited robotaxi service in Austin in 2025 with safety monitors aboard and unveiled the Cybercab, a purpose-built two-seat robotaxi with no wheel or pedals. Tesla is the biggest bet on camera-only, end-to-end, mapless autonomy scaling across a mass fleet. Whether supervised FSD becomes true unsupervised autonomy is the central open question of the field.

Zoox (Amazon) builds a ground-up bidirectional robotaxi (no front or back, carriage seating, no steering wheel) rather than retrofitting a car. It has been testing in Las Vegas, San Francisco, and other cities and opened rides to the public in Las Vegas, running LiDAR-camera-radar fusion. Backed by Amazon's balance sheet, it is a slower, vertically integrated play.

Mobileye (majority Intel-owned, publicly listed) is the giant of the ADAS supply chain, shipping EyeQ chips and vision software into a huge share of the world's new cars. Its ladder runs from SuperVision (camera-forward hands-off assist) to Chauffeur (adds LiDAR and radar for eyes-off) to Drive (full robotaxi), all built on REM crowdsourced maps and the RSS formal safety model. Mobileye supplies autonomy rather than operating a fleet, which is a fundamentally different and lower-capital business.

Aurora is the trucking leader, having launched driverless commercial freight on the Dallas-to-Houston highway corridor in 2025 with no human in the cab. The Aurora Driver fuses long-range LiDAR (including its own FMCW LiDAR that measures velocity directly), radar, and cameras, integrated with truck makers Volvo and PACCAR and supplier Continental for the production hardware. Kodiak Robotics (which also serves defense and off-road) and Waabi (Raquel Urtasun's simulation-first startup) are the other serious trucking players; Pony.ai and WeRide run both robotaxis and trucks in China and have listed publicly.

Cruise (GM) is the cautionary tale. Once neck-and-neck with Waymo in San Francisco, it lost its California permits after the October 2023 pedestrian-dragging incident and the reporting failures around it, and GM shut down the robotaxi business in December 2024, folding the technology and talent into GM's personal driver-assistance efforts. A well-funded, technically strong operator can still be ended by a single incident and the loss of trust that follows.

Others worth knowing: Nuro pivoted from building delivery pods to licensing its autonomy stack. Wayve (UK) pushes end-to-end learned driving with no HD maps. May Mobility runs low-speed autonomous shuttles. Nvidia supplies the DRIVE compute platform to much of the industry. Motional (Hyundai and Aptiv) scaled back its robotaxi ambitions amid the same funding pressure that ended Cruise.

Unit economics and the long curve

Why has this taken so long and cost so much? The economics explain it.

A robotaxi's cost stack is the vehicle (a premium EV), the sensor suite (LiDAR, radar, cameras, compute, historically tens of thousands of dollars, now falling), HD mapping and maintenance, depot operations (cleaning, charging, parking), remote assistance staff, insurance, and the enormous fixed cost of the software organization amortized across the fleet. Against that, revenue is fares per mile at some utilization rate. The path to profit per vehicle runs through three levers: drive down sensor and compute cost (happening as LiDAR and automotive silicon commoditize), raise utilization (more paid hours per day, denser markets, less idle repositioning), and spread the massive fixed R&D across more vehicles and cities. None of those levers pays off until you have scale, and you cannot get scale until the technology is safe enough to remove the driver, which is the loop that has consumed a decade and a half.

The tail is the reason the curve is so long. Driving is a long-tailed problem: the common 99% (open highway, clear weather, normal traffic) was largely solved years ago, and each additional "nine" of reliability against the rare 1% (the occluded pedestrian, the flooded underpass, the horse in the road) costs more than the last and requires exponentially more miles to even find, let alone fix. Deploying anyway to gather those miles means exposing the public to a system that is not yet finished, which is exactly what regulators, insurers, and juries scrutinize. That tension, needing real-world scale to improve while every real-world mile carries liability, is the defining economic and strategic problem of the field.

The result has been brutal consolidation. Billions were raised and spent; Cruise, Argo AI (shut by Ford and VW in 2022), and others were wound down; survivors are those with deep-pocketed parents (Alphabet behind Waymo, Amazon behind Zoox, Baidu, GM's remaining ADAS effort) or a capital-light supply model (Mobileye, Nvidia) or the simplest domain with the clearest economics (the trucking startups). The demo was cheap and came in the 2000s. Crossing the valley from demo to a removed driver, at a cost per mile below a human, is the part that eats companies.

Outlook

The next several years are about scaling the beachheads rather than a sudden leap to autonomy everywhere. Waymo will keep adding cities and rides and is the template others chase; Baidu will keep scaling in China; Zoox will try to prove its purpose-built vehicle. Watch whether any US robotaxi operator reaches genuine per-vehicle profitability, which nobody has clearly demonstrated yet. Autonomous trucking is likely to scale fastest on economics, expanding from the first Texas corridors to a wider Sun Belt highway network, because the domain is tractable and the payback is obvious.

The camera-only versus fusion question gets its real-world verdict as Tesla's robotaxi and FSD data accumulate: if camera-only reaches unsupervised safety at fleet scale, the economics of autonomy change completely; if it plateaus at supervised assistance, fusion stays the standard for driverless operation. End-to-end learned driving keeps advancing and will absorb more of the stack, with the open problem being how to build a verifiable safety case around a large learned model, since a regulator cannot audit weights the way it can audit rules.

Sensor and compute costs keep falling, which quietly helps everyone and erodes the pure-cost case for camera-only. The biggest wildcard is trust rather than technology: one high-profile failure can cost an operator its license and its future, as Cruise learned, so the winners will be the ones who scale carefully, report honestly, and keep a safety record clean enough to survive the scrutiny that comes with being a robot that has to be right the first time, in public, next to your family.

Frequently asked questions

Are self-driving cars actually available in 2026? Yes, in a limited way. True driverless (Level 4) robotaxis operate commercially in several US cities via Waymo and across Chinese cities via Baidu Apollo Go, inside defined geofenced areas. What you can buy for your own car is Level 2 driver assistance where you remain the responsible driver, plus Mercedes Level 3 in narrow traffic-jam conditions. A car you buy that drives itself anywhere with no human responsible does not exist.

What is the difference between Level 2 and Level 4? Responsibility. At Level 2 the human is legally the driver and must supervise constantly, no matter how hands-off the system feels. At Level 4 the system owns the entire driving task inside its operational design domain and there may be no human in the car at all. The jump between them is the whole ballgame, and most consumer "self-driving" features are Level 2.

Why do most robotaxis use LiDAR when Tesla does not? Redundancy versus cost. LiDAR measures 3D geometry directly and cross-checks cameras and radar, so a fully driverless operator carrying the liability (Waymo, Zoox, Baidu) over-senses to remove single points of perception failure. Tesla bets that camera-only vision, trained on a massive fleet, is good enough and cheap enough to scale to millions of consumer cars. Both bets are live; the winner is not settled.

What are HD maps and why do they matter? An HD map is a centimeter-accurate 3D prior of a road (lanes, stop lines, signals, curbs). It lets the car localize precisely and focus its perception on dynamic objects and changes, which is why mapped robotaxis are so smooth. The cost is that you must survey and continuously maintain the map for every street you serve, which limits how fast you can expand.

Are self-driving cars safer than human drivers? Waymo has published data over tens of millions of driverless miles showing large reductions in injury-causing and airbag-deployment crashes versus human drivers on the same roads, which is the strongest real-world evidence to date. The honest answer is that it appears safer in the specific, mapped, geofenced domains where it operates, and that proving it safer at the rare fatal-crash level requires hundreds of millions of miles, which only Waymo is approaching.

What is a disengagement and why is the metric criticized? A disengagement is when a safety driver takes over or the system hands back control, and miles per intervention (MPI) is the derived number. It is criticized because a disengagement can be a real save or an over-cautious grab, companies pick easy routes to inflate it, and it does not measure the rare severe events that actually matter. A serious safety argument uses crash-rate comparisons, simulation, and a structured safety case, not disengagements alone.

What happened to Cruise? GM's Cruise was a leading robotaxi operator until an October 2023 incident in San Francisco where a pedestrian, already struck by a human-driven car, was dragged by a Cruise vehicle, followed by failures in how the company reported it. California pulled its permits, and GM shut down the robotaxi business in December 2024, moving the technology into its personal driver-assistance work. It is the clearest example of how a single incident and lost trust can end even a well-funded operator.

Who is liable if a driverless car crashes? It shifts from the human to the manufacturer or operator as the human leaves the loop. With a Level 2 system engaged, the human driver is at fault. With a Level 4 vehicle and no human aboard, product-liability and negligence law applies to the company. Mercedes has publicly accepted liability while its Level 3 system is engaged, and driverless operators carry the insurance and legal risk for their fleets.

Is autonomous trucking further along than robotaxis? In domain difficulty and economics, yes. Highways are structured and free of pedestrians, and a truck that drives without mandated rest breaks roughly doubles utilization, so the payback is clear. Aurora launched driverless commercial freight on a Texas highway corridor in 2025, with Kodiak and Waabi close behind. The hard part is the long perception range and stopping distance a loaded truck needs at highway speed.

Will we ever get Level 5, self-driving anywhere? Not soon, and nobody credible has a date. Level 5 means no operational design domain at all: any road, any weather, any situation a human could handle. Every deployed system today is geofenced and constrained. The field is scaling Level 4 within expanding domains, and Level 5 remains a marketing aspiration rather than an engineering roadmap.

Related guides