+ All Categories
Home > Documents > MediaCompression Image

MediaCompression Image

Date post: 03-Jun-2018
Category:
Upload: adddata
View: 218 times
Download: 0 times
Share this document with a friend

of 27

Transcript
  • 8/12/2019 MediaCompression Image

    1/27

    Media Compression- Image

    Multimedia Systems

    1

  • 8/12/2019 MediaCompression Image

    2/27

    Facts about JPEG

    JPEG - Joint Photographic Experts Group International standard: 1992

    Most popular format

    Other formats (.bmp) use similar techniques

    Lossy image compression

    transform coding using the DCT

    JPEG 2000

    New generation of JPEG

    DWT (Discrete Wavelet Transform)

    2

  • 8/12/2019 MediaCompression Image

    3/27

    Observations

    The effectiveness of the DCT transform codingmethod in JPEG relies on 3 major observations:

    Observation 1:

    Useful image contents change relatively slowly across the

    image, i.e., it is unusual for intensity values to vary widelyseveral times in a small area, for example, within an 88

    image block.

    - much of the information in an image is repeated,

    hence spatial redundancy".

    3

  • 8/12/2019 MediaCompression Image

    4/27

    Observations

    Observation 2: Psychophysical experiments suggest that humans are

    much less likely to notice the loss of very high spatial

    frequency components than the loss of lower frequency

    components.

    - the spatial redundancy can be reduced by largely

    reducing the high spatial frequency contents.

    Observation 3:

    Visual acuity (accuracy in distinguishing closely spaced

    lines) is much greater for gray (\black and white") than for

    color.

    4

  • 8/12/2019 MediaCompression Image

    5/27

    8x8 DCT Example

    Original values of an 8x8 block

    (in spatial domain)

    Corresponding DCT coefficients

    (in frequency domain)

    DC Component

    or u

    5

  • 8/12/2019 MediaCompression Image

    6/27

    JPEG Steps

    1 Block Preparation: From RGB to YUV (YIQ) planes

    2 Transform: Two-dimensional Discrete Cosine

    Transform (DCT) on 8x8 blocks.

    3 Quantization: Compute Quantized DCT Coefficients(lossy).

    4 Encoding of Quantized Coefficients :

    Zigzag Scan

    Differential Pulse Code Modulation (DPCM) on DCcomponent

    Run Length Encoding (RLE) on AC Components

    Entropy Coding: Huffman or Arithmetic

    6

  • 8/12/2019 MediaCompression Image

    7/27

    JPEG Diagram

    7

  • 8/12/2019 MediaCompression Image

    8/27

    RGB Input Data After Block Preparation

    JPEG: Block Preparation

    Input image: 640 x 480 RGB (24 bits/pixel) transformed to three planes:

    Y: (640 x 480, 8-bit/pixel) Luminance (brightness) plane.

    U, V: (320 X 240 8-bits/pixel) Chrominance (color) planes.

    8

  • 8/12/2019 MediaCompression Image

    9/27

    Block Effect

    Using blocks, however, has the effect of isolatingeach block from its neighboring context.

    choppy (blocky") with high compression ratio

    Compression Ratio: 60.1Compression Ratio: 7.7 Compression Ratio: 33.9

    9

  • 8/12/2019 MediaCompression Image

    10/27

    JPEG: Quantized

    DCT Coefficients

    Uniform quantization:Divide by constant N and round result.

    In JPEG, each DCT F[u,v] is divided by

    a constant q(u,v).

    The table of q(u,v) is called quantization table.

    q(u,v)

    F[u,v]

    Rounded

    F[u,v]/ Q(u,v)

    10

  • 8/12/2019 MediaCompression Image

    11/27

    More about Quantization

    quantization is the main source for loss Q(u, v) tend to have larger values towards the lower right

    corner. This aims to introduce more loss at the higher

    spatial frequencies

    - a practice supported by Observations 1 and 2.

    Q(u,v) are obtained from psychophysical studies with the

    goal of maximizing the compression ratio while minimizing

    perceptual losses in JPEG images.

    11

  • 8/12/2019 MediaCompression Image

    12/27

    JPEG: Encoding of Quantized DCT Coefficients

    DC Components:

    DC component of a block is large and varied, but often

    close to the DC value of the previous block.

    Encode the difference of DC component from previous 8x8

    blocks using Differential Pulse Code Modulation (DPCM).

    AC components:

    The 1x64 vector has lots of zeros in it.

    Using RLE, encode as (skip, value) pairs, where skip is thenumber of zeros and value is the next non-zero component.

    Send (0,0) as end-of-block value.

    12

  • 8/12/2019 MediaCompression Image

    13/27

    JPEG: Zigzag Scan

    Maps an 8x8 block into a 1 x 64 vector

    Zigzag pattern group low frequency coefficients in top of vector.

    13

  • 8/12/2019 MediaCompression Image

    14/27

    Why ZigZag Scan

    RLC aims to turn the block values into sets.

    ZigZag scan is more effective

    14

  • 8/12/2019 MediaCompression Image

    15/27

    JPEG Modes

    Sequential Mode default JPEG mode, implicitly assumed in the discussions

    so far. Each graylevel image or color image component is

    encoded in a single left-to-right, top-to-bottom scan.

    Progressive Mode. Hierarchical Mode.

    Lossless Mode

    15

  • 8/12/2019 MediaCompression Image

    16/27

    Progressive Mode

    Progressive

    Delivers low quality versions of the image quickly, followed by higher

    quality passes.

    Method 1. Spectral selection

    - Takes advantage of the spectral" (spatial frequency spectrum)characteristics of the DCT coeffcients

    - higher AC components provide detail information.

    Scan 1: Encode DC and rst few AC components, e.g., AC1, AC2.

    Scan 2: Encode a few more AC components, e.g., AC3, AC4, AC5.

    ...

    Scan k: Encode the last few ACs, e.g., AC61, AC62, AC63.

    16

  • 8/12/2019 MediaCompression Image

    17/27

    Progressive Mode contd

    Method 2: Successive approximation:- Instead of gradually encoding spectral bands, all DCTcoeffcients are encoded simultaneously but with their

    most significant bits (MSBs) first.

    Scan 1: Encode the rst few MSBs, e.g., Bits 7, 6, 5, 4.

    Scan 2: Encode a few more less signicant bits, e.g., Bit 3.

    ...

    Scan m: Encode the least signicant bit (LSB), Bit 0.

    17

  • 8/12/2019 MediaCompression Image

    18/27

    Hierarchical Mode

    Encoding First, lowest resolution picture (using low-pass filter)

    Then, successively higher resolutions

    additional details (encoding differences)

    Transmission: transmitted in multiple passes

    progressively improving quality

    Similar to Progressive JPEG

    18

  • 8/12/2019 MediaCompression Image

    19/27

    Hierarchical Encoding

    19

  • 8/12/2019 MediaCompression Image

    20/27

    Algorithm: 3-Level Hierarchical JPEG Encoder.

    20

  • 8/12/2019 MediaCompression Image

    21/27

    Decoding

    21

  • 8/12/2019 MediaCompression Image

    22/27

    Lossless Mode

    Using prediction and entropy coding Forming a differential prediction:

    A predictor combines the values of up to three

    neighboring pixels as the predicted value for the current

    pixel

    Seven schemes for combination

    Encoding:

    The encoder compares the prediction with the actual pixel

    value at the position `X' and encodes the difference usingentropy coding

    22

  • 8/12/2019 MediaCompression Image

    23/27

    7 Predictors

    23

  • 8/12/2019 MediaCompression Image

    24/27

  • 8/12/2019 MediaCompression Image

    25/27

  • 8/12/2019 MediaCompression Image

    26/27

    JPEG 2000 vs JPEG

    Original image

    26

  • 8/12/2019 MediaCompression Image

    27/27

    JPEG2000 vs JPEG

    27


Recommended