"Three detectors, three anatomies, one leash. Each one only points; none of them decides."
Three Detectors, One Job
Beyond the face, Loomis uses two more landmark models. PoseLandmarker finds 33 body joints — shoulders, hips, elbows, knees, the whole articulated skeleton. HandLandmarker finds 21 points per hand through a pad-sweep detection. The anatomy is completely different, but the role is identical to the face model: each detector's only job is to say where the landmarks landed in the photo. Different subjects, one uniform contract — propose a fit, nothing more.
But the Body Isn't Rigid
Here the subjects diverge downstream. A face is nearly rigid, so one canonical head model plus solvePnP nails its pose. A body and a hand are articulated — there is no single rigid shape to solve, because every joint bends independently. So the geometry that consumes the landmarks specializes: for a figure it builds boxes around the ribcage and pelvis and tapered frustums (cone-like volumes) along each limb; for a hand it builds a palm box and a frustum for each finger segment. The detector proposes joints; the geometry wraps volumes around them. Same leash, different construction on the end of it.
Depth Is the Honest Weak Spot
A single photo underconstrains body depth. Is that foreshortened forearm coming toward you or going away? From one image the two often look nearly identical, and no amount of cleverness fully resolves it — the information simply isn't there. Loomis handles this the way a trustworthy tool should: it says so. The architecture names a dedicated 3-D pose fitter as the honest upgrade path rather than piling on heuristics that pretend the ambiguity is solved. Reporting a limitation plainly is worth far more than a confident guess that's sometimes backward.
One Role, Many Subjects
Step back and the shape is pure polymorphism. The fitting stage is a single interface — propose landmarks — and each subject provides its own specialized construction downstream. It's the same architecture Bonfire uses when it says 'instrument is a view, music is the model': one shared truth, many specialized projections. Here it's 'landmarks are the proposal, construction is the specialization,' and it's exactly what the next track, Four Constructions, is built on.