← All posts
Tech 15 May 2026 8 min read

Vision-only versus lidar in autonomous vehicles

The debate between camera-only autonomous stacks and multi-modal lidar-radar sensor suites is often framed as a religious war between Silicon Valley cost-optimisation and cautious automotive redundancy.

When you examine the raw physics and signal processing pipelines, both approaches represent fundamentally distinct trade-offs between spatial ground truth and semantic density.

The physics of direct measurement vs. latent reconstruction

Lidar (Light Detection and Ranging) emits structured laser pulses (typically 905nm or 1550nm) and measures time-of-flight. This provides direct, metric 3D point coordinates (\(x, y, z\)) and reflectivity with millimetre-level precision, unaffected by ambient lighting conditions, shadows, or optical illusions.

Cameras capture angular photons on a 2D sensor array. Deriving depth requires solving an ill-posed inverse optics problem: either via geometric parallax across stereo baselines, or through deep neural networks that infer 3D occupancy volumes from temporal video sequences (Occupancy Networks).

# Coordinate transformation: Camera frame to Ego-Vehicle frame
import numpy as np

def transform_camera_to_ego(
    point_cam: np.ndarray,     # [3, N] points in camera coords
    extrinsic_rot: np.ndarray, # [3, 3] rotation matrix
    extrinsic_trans: np.ndarray # [3, 1] translation vector
) -> np.ndarray:
    # Metric alignment into unified vehicle coordinate system
    point_ego = np.dot(extrinsic_rot, point_cam) + extrinsic_trans
    return point_ego
Lidar tells you with absolute certainty that there is an obstacle 42.3 metres ahead. It cannot tell you whether that obstacle is an empty cardboard box or a granite boulder.

The sensor fusion dilemma

Advocates of multi-modal suites argue that redundancy is essential for automotive safety standards (ISO 26262 ASIL-D). However, late-stage sensor fusion introduces the dangerous "sensor contradiction problem":

Where the frontier lands

For commercial robotaxi fleets operating in dense urban cores (like Waymo), the capital expenditure of multi-modal lidar/radar suites is amortised across continuous fare-paying operations, making maximum spatial certainty the rational choice.

For consumer vehicles priced at $35,000, vision-only stacks driven by high-compute temporal neural networks represent the only viable path to mass deployment—provided the vision network can match lidar's depth accuracy on the long tail of low-contrast night scenes.


Questions about point cloud perception or neural occupancy models? Get in touch.