0PricingLogin
Learn AI with Python · Lesson

What is Image Data?

Representation of digital images.

1

What is Image Data?

Image data consists of a grid of pixels, where each pixel represents color intensity. These intensities can be stored as:

  • Grayscale: Single intensity values (0–255).
  • RGB: Three intensity values for red, green, and blue channels.

Images are essentially numerical data that can be processed by computers.

What is Image Data? — illustration 1

2

How Images are Represented Digitally

Images are represented as multidimensional arrays:

  • Grayscale Images: 2D arrays (Height × Width).
  • Color Images: 3D arrays (Height × Width × Channels).

For example, a 100×100 RGB image is represented as a 100×100×3 array.

All lessons in this course

  1. What is Image Data?
  2. Image Processing with OpenCV
  3. Convolutional Neural Networks (CNN)
  4. Image Classification Project
  5. Data Augmentation Techniques
← Back to Learn AI with Python