Sign in to save

Bookmark this page so you can find it later.

Sign in to save

Bookmark this page so you can find it later.

An autonomous race car must understand the track faster than a human driver while moving at high speed. No single sensor is reliable enough by itself, because rain, glare, dust, vibration, and other cars can confuse measurements. Sensor fusion combines LiDAR, radar, cameras, and GPS so the car can estimate where it is, what is around it, and how the world is changing.

This matters because safe racing decisions depend on accurate perception within fractions of a second.

LiDAR gives precise 3D shape, radar measures distance and relative speed well, cameras identify colors and objects, and GPS helps locate the car on the track. Fusion software aligns all sensor data in space and time, then estimates the most likely state of the car and nearby objects. Filters such as a Kalman filter reduce noise by combining predictions from a motion model with new measurements.

The result is a real-time world model that guides steering, throttle, and braking decisions.

Key Facts

  • Sensor fusion combines multiple measurements to estimate a state more reliably than any single sensor.
  • LiDAR measures distance using time of flight: d = ct/2, where c is the speed of light and t is the round-trip time.
  • Radar can measure relative speed using Doppler shift: v = fd lambda/2 for a reflected signal.
  • A camera maps 3D points to image pixels, so object recognition depends on calibration, lighting, and perspective.
  • A Kalman filter update can be written as x_new = x_pred + K(z - Hx_pred).
  • Latency matters in racing because position error grows with speed: error = vΔt.

Vocabulary

Sensor fusion
Sensor fusion is the process of combining data from multiple sensors to produce a more accurate estimate of the environment or vehicle state.
LiDAR
LiDAR is a sensing method that uses laser pulses to measure distances and build a 3D point cloud of nearby objects.
Radar
Radar is a sensing method that uses radio waves to detect objects and measure their distance and relative speed.
Kalman filter
A Kalman filter is an algorithm that combines a predicted state with noisy measurements to estimate the most likely current state.
Localization
Localization is the process of estimating the vehicle's position and orientation on a map or track.

Common Mistakes to Avoid

  • Treating GPS as perfectly accurate is wrong because GPS can drift, lose signal, or update too slowly for racing speeds.
  • Ignoring time synchronization is wrong because sensor readings taken at different times may describe different positions of a fast-moving car.
  • Assuming more sensors always means better performance is wrong because poorly calibrated or noisy sensors can reduce accuracy if fused incorrectly.
  • Confusing detection with tracking is wrong because detecting an object once is not the same as estimating its position, speed, and future motion over time.

Practice Questions

  1. 1 A LiDAR pulse returns after 80 ns. Using c = 3.0 x 10^8 m/s, how far away is the object?
  2. 2 A race car travels at 60 m/s and the perception system has 0.05 s of latency. How far does the car move before the data is acted on?
  3. 3 A camera clearly sees lane markings, but glare hides a white car ahead while radar detects a moving object at the same location. Explain why sensor fusion should trust the combined evidence more than the camera alone.