openskills.info
Course Preview

Computer Vision

Computer vision builds systems that extract structured information from images and video: detecting objects, recognizing faces, segmenting scenes, reading text, and interpreting spatial relationships. It combines image processing, machine learning, and geometry to give machines visual perception.

itArtificial intelligence and machine learning

Computer Vision

Computer vision turns pixels into useful information. A computer vision system can assign a label to an image, locate objects, mark each pixel by category, track motion, or estimate structure. The output supports another decision or action.

Use this mental model:

scene → sensor → pixels → preprocessing → model → prediction → product decision

The model is only one part of the system. Lighting, camera position, labels, preprocessing, decision thresholds, and the people affected by the result can matter as much as the model architecture.

What an image becomes

A digital image is an array of numeric pixel values. A color image often has separate channels for red, green, and blue. A video adds a time dimension. Frameworks represent these arrays as tensors so models can process batches of images efficiently.

Pixels do not carry meaning by themselves. The same object can occupy different positions, scales, and orientations. Its appearance changes with lighting, background, motion blur, occlusion, lens behavior, and sensor noise. A useful system must handle the variation expected in its operating environment.

Preprocessing puts inputs into the form a model expects. Common operations include resizing, cropping, color conversion, and normalization. Training-time augmentation creates altered examples, such as crops or flips, to expose the model to relevant variation. An augmentation is valid only when it preserves the intended label. A horizontal flip may be sensible for a flower, but wrong for text or a directional traffic sign.

Continue the course

This section is part of the paid course.

See pricing to subscribe, or log in if you already have access.

Where this skill leads

Relevant careers

See how this topic contributes to broader role-level skill maps.

Sources