AIQ AIQ
World 2: How AI Sees & Hears · Lesson 2.1.1

How Computers See

Everything a teacher needs to deliver this lesson — pick your grade's script below once you've read the background.

Learning Objectives

This lesson runs across all four AIQ age modes, so the depth changes a lot from Explorer to Architect — but every version is built around the same core idea: a computer does not see the way a person does. By the end of the lesson, a student should be able to:

Teacher Background

You do not need any programming or AI background to teach this lesson well. The one idea that unlocks everything else is this: a computer screen is a grid, and every square in that grid is just a number. Zoom far enough into any digital photo and the smooth image dissolves into little colored squares — those squares are called pixels (short for "picture elements"). A phone screen might have millions of them. Each pixel's color is stored as three numbers, one each for how much red, green, and blue light to mix — the same red-green-blue system that makes screens, TVs, and projectors work. That's it. There is no picture "in" the computer the way there's a picture in your head when you remember a face. There is only a very large table of numbers.

Once a photo is "just numbers" to the computer, you can explain computer vision without any jargon: it's software that looks for patterns in that table of numbers. Early, simple versions of this could only do narrow things — say, detect where the edges of shapes are (an edge is just a place where the numbers suddenly jump, like light pixels next to dark ones). Modern AI vision systems are trained on millions of labeled example photos (photos that a human has tagged "this is a cat," "this is a stop sign," etc.), and the system gradually adjusts itself until it gets good at guessing the right label for images it has never seen before. It is doing statistics at enormous scale, not looking or understanding in any human sense.

Key point: Whenever you're tempted to say AI "looks at" or "understands" an image, it's more accurate — and it's the exact distinction this lesson is trying to build — to say it "finds patterns in the pixel numbers." That phrase is used throughout the lesson content in the app; reusing it out loud in class reinforces the same mental model instead of undoing it with more casual language.

Face recognition is the example most students already have a device for, so it's worth understanding a little more precisely. The system does not store a photo of your face and compare new photos against it pixel-by-pixel — lighting, angle, and expression would break that instantly. Instead it measures things like the distance between your eyes, the width of your nose, and the shape of your jawline, and turns those measurements into a set of numbers — sometimes called a template or a "face fingerprint." When you look at your phone, it takes a new photo, calculates the same measurements, and checks whether the numbers are close enough to the stored template. This is also why face unlock can be tricked by identical twins (very similar measurements) and why it can fail with a face mask (some key measurements are hidden) — both facts students find delightful and both are consistent with the actual mechanism, unlike "it's magic" or "it takes a picture and matches it."

The last thing worth knowing, mainly for the older age bands: computer vision is used across radically different stakes. The same underlying idea — finding patterns in pixel numbers — powers a fun Instagram filter, a plant-identification app, a self-driving car's pedestrian detector, and an AI system reading X-rays for signs of disease. The lesson's summary line ("it doesn't 'understand' what it sees the way you do") is doing real work here: it's the seed of a later, more serious conversation about why AI vision systems can be wrong confidently, and why a human should stay in the loop for anything high-stakes.

If a student asks "so is AI just guessing?" — the honest answer is yes, but an extremely well-informed guess, based on patterns learned from huge amounts of example data. That framing avoids both extremes: "AI is basically magic" and "AI is basically random."

It's worth knowing roughly how a system gets good at this in the first place, since students in the older age bands will ask. Nobody sits down and writes rules like "a cat has pointy ears and whiskers" into the software — that approach was tried decades ago and it fell apart quickly, because there are too many exceptions and edge cases to write rules for (a cat lying down, a cat photographed from behind, a hairless cat). Instead, modern systems are shown huge numbers of example photos that a human has already labeled — "this is a cat," "this is not a cat" — and an algorithm gradually adjusts millions of internal numbers (often called weights) until it gets better and better at guessing the right label on its own. Once trained, the same process runs on a brand-new photo it has never seen, and it produces a guess plus a confidence score. None of this requires the system to know what a cat actually is in any meaningful sense; it only requires that enough of the numeric patterns in "cat photos" reliably differ from the patterns in "not-cat photos."

This also explains something teachers will find genuinely useful for classroom credibility: why AI vision sometimes fails in ways that seem bizarre to a human. A system trained mostly on well-lit, front-facing photos of an object can struggle badly with the same object photographed from an unusual angle, in poor lighting, or partially hidden — not because it's "confused" the way a person gets confused, but because those conditions simply didn't look like much of what it was trained on. It's also possible to intentionally craft an image with tiny, human-imperceptible changes that cause a vision system to misclassify it with high confidence — a known research finding called an "adversarial example." None of that needs to come up with younger students, but it's useful context if an older student asks "can AI vision be tricked?" — the honest answer is yes, and understanding why connects directly back to the "pixels and patterns, not real understanding" idea this whole lesson is built around.

Materials & Prep

This is a lightweight lesson to prep. You need:

Common Misconceptions

"AI cameras actually see and understand pictures like people do."
AI vision systems never "see" an image as a picture — they process it as a grid of numbers and search for statistical patterns learned from training data. It can correctly label a photo of a cat while having no concept of what a cat is, why it has fur, or that it's alive. This gap is exactly why AI vision can fail in strange ways a person never would (e.g., misreading an image that's been subtly altered in ways invisible to a human eye).
"Face unlock stores a photo of your face and compares new photos to it."
It stores a set of measurements (distances between features) taken from your face, not an actual photo. That's why it still works with different lighting, hairstyles, or glasses (the measurements barely change) but can fail when a mask covers key features, or occasionally be fooled by a very close relative with similar face geometry.
"If AI can recognize objects in photos, it must be smart in a general, human-like way."
Computer vision systems are narrow — trained for a specific task (recognize faces, recognize plants, detect pedestrians) using huge amounts of labeled example data for that task specifically. A system built to identify dog breeds has no idea what a stop sign is, and vice versa, unless it was also trained on that. This is the same "narrow AI" idea students meet elsewhere in AIQ, just applied to vision.
"More pixels (higher resolution) automatically means the AI 'understands' the image better."
Resolution affects how much detail is available, but what actually drives accuracy is the quality and diversity of the training data the AI learned from. A low-resolution photo of a common object a system was well-trained on can be identified more reliably than a crisp high-resolution photo of something rare or unlike anything in its training data.

Pick your grade's script

← All lesson plans ← Step-by-Step Instructions How Computers Hear →