...

/

Image Files

Image Files

Discover how image data is stored in files and how pixels affect image interpretation.

Chapter Goals:

  • Learn about image data and pixels
  • Read byte data from an image file

A. Image data

Before we do any image processing, we need to understand how image files work. Specifically, we'll discuss how these files use byte data and pixels to represent images.

If you've ever looked at an image file's properties before, it'll show the dimensions of the image, i.e. the height and width of the image. The height and width are based on number of pixels. For example, if the dimensions of an image are 400x300 (width ...