"A camera is a machine for throwing away depth. To recover it, you first have to understand exactly how it was lost."
A Camera Is a Flattening Machine
A photograph is a 3-D world crushed onto a 2-D plane, and the crushing follows a rule simple enough to write on a napkin: the pinhole camera model. Imagine light from the scene passing through one tiny hole onto a flat sensor behind it. Each 3-D point travels in a straight line through that hole and lands at exactly one pixel. That's the entire model — and because it's exact, it can be run backward.
Divide by Depth
The one operation that matters is dividing by depth. Take a point the camera sees at position (X, Y, Z), where Z is how far away it is. Its pixel is x = focal · X / Z and y = focal · Y / Z, shifted to the image center. That little / Z is the whole soul of perspective: double a point's distance and it maps twice as close to the center and appears half as big. Parallel rails converge because their sideways offset stays fixed while Z grows. A nose near the lens looms because its Z is small. Every perspective effect you've ever drawn is that single divide.
Intrinsics and Extrinsics
The full projection has two halves. Extrinsics — a rotation R and translation t — describe where the head sits relative to the camera; this is the pose Loomis wants. Intrinsics — the focal length and the principal point — describe the camera itself. A pixel is the 3-D point pushed first through the extrinsics (into the camera's frame) and then through the intrinsics (the divide-by-depth). Keep the two halves separate in your head; the camera solve is really just 'hold intrinsics roughly fixed, solve for the extrinsics.'
This Is the Forward Model
Everything in this lesson runs 3-D-to-pixel — the forward direction, the easy one. Loomis lives in the inverse: it has the pixels and wants R back. But the inverse is only tractable because the forward model is this clean and this exact. Understand projection going forward and solvePnP, next lesson, stops being a black box and becomes 'the thing that undoes this divide.'