Lecture

Image Compression

In terms of image compression, we use Huffman Coding.

YCbCr = Y is for luminance; Cb is for chrominance blue; Cr is for chrominance red

JPEG Encoder Steps:

  1. Preprocessing
  2. Dividing int NxN blocks
  3. Transform each block (Y, Cb, Cr) from spatial to frequency domain.
  4. Quantization
  5. Encoding (Huffman)

Forward Transformation

Transforms image/iamge blocks from

There are 3 transformation approaches:

  1. DFT
  2. DCT
  3. KLT

Reading

Summary