Spoiler: a photo is just a giant grid of numbers. Today you'll zoom inside a picture, mix light like a screen, split colors apart, and do real image math — the exact stuff every AI uses to see.
Move your mouse (or finger) over the photo. The magnifier shows the real pixels underneath — and the three numbers hiding inside each one.
Peek at 15 different spots to earn the badge. Peeked: 0
Resolution just means how many pixels the grid has. More squares = sharper photo = a bigger pile of numbers. A phone photo can be 12 million pixels — that's 36 million numbers! Grown-ups call this grid of numbers a tensor.
Computers make color by mixing light, not paint. Drag the sliders and watch three beams of light blend. This is called RGB.
💡 Surprise: Red + Green light = Yellow. All three at max = White. All zero = Black.
Every image is three layers of numbers — a Red layer, a Green layer, and a Blue layer — stacked on top of each other. Tap a layer to switch it off and watch the color change.
Toggle all 3 layers at least once to earn the badge.
Watch what happens to one example pixel when you press a button. There's no magic — filters are just tiny sums, done to every single pixel at once.
We don't just average R, G, B equally. Our eyes see green as brightest and blue as dimmest, so the recipe is 0.3×R + 0.59×G + 0.11×B. That's why a good grayscale looks natural and not muddy.
You've learned that pictures are just numbers. Now you be the artist: click cells to paint an 8×8 pixel emoji. Every square you fill is you setting numbers by hand — exactly how the computer stores it.
Every colored square = 3 numbers you chose. You just hand-wrote an image the way a computer stores one. 🤯
Reading raw RGB is the foundation. Real vision systems add a few ideas on top:
✅ Simplest and exact. ⚠️ Big files; not always the best form for a task.
Engineers switch to grayscale, HSV, or YUV depending on the job. ✅ Can make patterns much easier to spot.
Models normalize the pixels, then a CNN learns its own features from them — you rarely pick pixels by hand.
You now know the secret every AI is built on: a picture is a grid of numbers, and seeing is just math.