Over the past three years, almost every new Chinese EV maker's driver-assistance stack — from R&D to deployment — has run on a perception architecture called BEV (Bird's Eye View). Tesla is the lone exception. Beneath this lies a two-path debate over how autonomous vehicles should "see" the world — a debate that matters to every consumer shopping for an intelligent driving-equipped car.
What This Is
BEV stands for Bird's Eye View. The simplest way to think about it: the car gets a top-down map of its surroundings.
Traditional cameras only capture what's in front. Even stitching multiple camera feeds together produces distortion. BEV's core idea: extract features from the six wide-angle cameras around the vehicle, then "project" them onto a 2D grid viewed from above. On this map, vehicles, pedestrians, lane lines, and obstacles all become coordinate points in top-down space — making distance, speed, and position precisely measurable.
BEVDet is one of the most representative open-source models in this space, released in 2022 by MIT's Song Han team. It breaks the pipeline into four stages: image feature extraction, view transformation, BEV feature encoding, and detection output. The code is built on the mmdet3d framework, runs out-of-the-box on GPUs, and has served as the starting point for AV teams both in China and abroad.
The Industry View
There are basically two camps in the mainstream.
The Chinese camp: XPeng, Li Auto, Huawei ADS, BYD, NIO, and most other players use BEV as the perception backbone. The reasoning: an explicit top-down view makes rule-based validation and safety redundancy easier, and it dovetails with the rollout of urban NOA (Navigation on Autopilot in city driving). BEV has since evolved into BEV + Occupancy networks, which can detect "never-before-seen obstacles" and handle long-tail edge cases.
The opposition comes from Tesla: Elon Musk has stuck to "vision-only end-to-end," arguing that an explicit BEV module is just a transitional "crutch" that end-to-end neural networks will eventually replace. After the 2024 FSD update went live, Tesla's stack no longer contains a standalone BEV module.
One caveat: the BEV path isn't free. It's compute-hungry — it needs high-end chips (NVIDIA Orin and above) to run smoothly, which limits adoption in vehicles priced under RMB 100,000. More critically, the industry is rapidly migrating toward end-to-end. Hiring is still booming for "BEV algorithm engineers," but this window may not stay open for long.
Impact on Regular People
For automotive IT: AV teams are seeing explosive demand for talent in BEV perception, Occupancy networks, and end-to-end planning. Starting salaries for these roles in 2024 were noticeably higher than for traditional CV positions — but watch out for "skill depreciation" as the tech stack shifts.
For individual careers: the window is open for engineers outside AV to pivot in, but the ceiling for those who only know BEV in isolation is becoming visible. Pairing it with end-to-end architecture and Transformer fundamentals is the safer bet.
For consumers: BEV has made it possible to roll out urban NOA at scale on vehicles in the RMB 200,000 price band. Next time we're car shopping, "does it use a BEV architecture?" may no longer be marketing fluff — it'll be a hard metric driving real-world differentiation.