Study Guide · Computer Vision · 5 min read

Computer Vision, Explained Simply

To a computer, a photograph is just a grid of numbers. Computer vision is the field that teaches machines to see faces, tumors, defects, and stop signs hiding inside those numbers.

Images are grids of numbers

Every digital image is millions of pixels, each holding brightness and color values. Nothing in those numbers says 'cat' — meaning must be learned from examples.

This is why vision was brutally hard for decades while feeling effortless for humans. A child learns 'dog' from a few encounters; a machine needs thousands of labeled images to be reliable.

From edges to objects

Convolutional networks (CNNs) scan images with small filters that respond to patterns: first edges and colors, then textures, then parts like eyes or wheels, finally whole objects.

Each layer composes the layer below, like building lego towers from bricks. Vision transformers now do the same job with attention mechanisms — different math, same hierarchy.

The main visual skills

Classification names the whole image ('a cat'). Detection draws boxes around multiple objects. Segmentation traces exact outlines pixel by pixel. Generation creates new images entirely.

Choosing the right skill matters: quality inspection needs detection ('where is the scratch?'), while organizing a photo library needs only classification.

Key Points

  • Machines see matrices of pixels; all meaning is learned from labeled examples.
  • Layered networks build understanding hierarchically: edges → shapes → objects.
  • Classification, detection, segmentation, and generation solve different problems.
  • Match the visual task to the business question before picking any model.


All study guides for this term: Computer Vision, Explained Simply · How Computer Vision Works Under the Hood · Computer Vision in the Real World