SlideShare a Scribd company logo
Image Compression Techniques

             Presented by
               PARTHA PRATIM
  DEB
               MTECH(CSE),1st YEAR
Outline
     Image Compression Fundamentals
    ◦    Why Compress
    ◦    How is compression possible?
    ◦      Redundancy
    ◦      The Flow of Image Compression
    ◦      General Image Storage System
        Lossy compression:
     Reduce correlation between pixels
    ◦     Karhunen-Loeve Transform
    ◦     Discrete Cosine Transform
    ◦     Discrete Wavelet Transform
    ◦     Differential Pulse Code Modulation
    ◦     Differential Coding
       Lossless compression:
     Quantization and Source Coding
    ◦    Huffman Coding
    ◦    Arithmetic Coding
    ◦    Run Length Coding
    ◦    Lempel Ziv 77 Algorithm
    ◦    Lempel Ziv 78 Algorithm
     Overview of Image Compression Algorithms
    ◦    JPEG
    ◦    JPEG 2000
    ◦    Shape-Adaptive Image Compression
Outline
Image  Compression Fundamentals
Reduce correlation between pixels
Quantization and Source Coding
Overview of Image Compression
 Algorithms
The Flow of Image Compression
   What is the so-called image compression coding?
    ◦ To store the image into bit-stream as compact as possible and to display the
      decoded image in the monitor as exact as possible
   Flow of compression
    ◦ The image file is converted into a series of binary data, which is called the bit-
       stream
    ◦ The decoder receives the encoded bit-stream and decodes it to reconstruct the
       image
    ◦ The total data quantity of the bit-stream is less than the total data quantity of the
       original image
Basic concept of compression
spatial redundancy
        Elements that are duplicated within a structure, such as
       pixels in a still image and bit patterns in a file. Exploiting
       spatial redundancy is how compression is performed.




Intraframe coding
Compressing redundant areas within a single video frame.
Interframe coding
Interframe coding often provides substantial compression because in many motion sequences,
only a small percentage of the pixels are actually different from one frame to another.
General Image Storage System
Coding
 Java       Syntax:
   private int[] capture() throws InterruptedException {
   dim = Toolkit.getDefaultToolkit().getScreenSize();
   Image tmp = robot.createScreenCapture(new
    Rectangle(dim.width,dim.height)).getScaledInstance(800,600,BufferedImage.SCALE_SMOOTH);
   int pix[] = new int[IMG_WIDTH*IMG_HEIGHT];
   PixelGrabber pg = new PixelGrabber(tmp,0,0,IMG_WIDTH,IMG_HEIGHT,pix,0,IMG_WIDTH);
   pg.grabPixels();
   return pix;
   }
Outline
 ImageCompression Fundamentals
 Reduce correlation between pixels(lossy)
 Quantization and Source Coding
 Overview of Image Compression Algorithms
Reduce the Correlation between
   Pixels
Lossy compression:
 Orthogonal      Transform Coding
  ◦ KLT (Karhunen-Loeve Transform)
     Maximal Decorrelation Process
  ◦ DCT (Discrete Cosine Transform)
     JPEG is a DCT-based image compression standard, which is a lossy
      coding method and may result in some loss of details and
      unrecoverable distortion.
 Subband     Coding
  ◦ DWT (Discrete Wavelet Transform)
     To divide the spectrum of an image into the lowpass and the highpass
      components, DWT is a famous example.
     JPEG 2000 is a 2-dimension DWT based image compression standard.
 Predictive    Coding
  ◦ DPCM
     To remove mutual redundancy between successive pixels and encode
      only the new information
Image compression
Image compression
Image compression
Outline
 ImageCompression Fundamentals
 Reduce correlation between pixels(lossy)
 Quantization and Source Coding(lossless)
 Overview of Image Compression Algorithms
Quantization and Source Coding
 Lossless compression techniques:
  Quantization
   ◦ The objective of quantization is to reduce the precision and to achieve higher
      compression ratio
   ◦ Lossy operation, which will result in loss of precision and unrecoverable
      distortion
  Source Coding
   ◦ To achieve less average length of bits per pixel of the image.
   ◦ Assigns short descriptions to the more frequent outcomes and long
      descriptions to the less frequent outcomes
   ◦ Entropy Coding Methods
         Huffman Coding
         Arithmetic Coding
         Run Length Coding
         Dictionary Codes
           Lempel-Ziv77
           Lempel-Ziv 78
Huffman Coding

Codeword
         Codeword X            Probability
 length
                       01     00       1        0
   2       01     1   0.25    0.3   0.45     0.55   1
                       10     01      00        1
   2       10     2   0.25   0.25    0.3     0.45
                       11     10      01
   3       11     3    0.2   0.25   0.25
                      000     11
   3      000     4   0.15    0.2
                      001
   3      001     5   0.15
Arithmetic Coding (1/3)
   Arithmetic Coding: a direct extension of Shannon-Fano-Elias coding
    calculate the probability mass function p(x n) and the cumulative distribution
    function F(xn) for the source sequence xn
    ◦ Lossless compression technique
    ◦ Treate multiple symbols as a single data unit
                                    Arithmetic Coding Algorithm
      Input symbol is l
      Previouslow is the lower bound for the old interval
      Previoushigh is the upper bound for the old interval
      Range is Previoushigh - Previouslow
      Let Previouslow= 0, Previoushigh = 1, Range = Previoushigh – Previouslow =1
      WHILE (input symbol != EOF)
        get input symbol l
        Range = Previoushigh - Previouslow
          New Previouslow = Previouslow + Range* intervallow of l
          New Previoushigh = Previouslow + Range* intervalhigh of l
      END
Arithmetic Coding (2/3)
   Symbol       Probability      Sub-interval     Input String : l l u u r e ?
        k          0.05          [0.00,0.05)
                                                                l l u u re ?
        l           0.2          [0.05,0.25)
        u           0.1          [0.20,0.35)                   0.0713348389
        w          0.05          [0.35,0.40)
                                                               =2-4+2-7+2-10+2-15+2-16
        e           0.3          [0.40,0.70)
        r           0.2          [0.70,0.90)    Codeword : 0001001001000011
        ?           0.2          [0.90,1.00)

            1             0.25           0.10   0.074    0.0714     0.07136   0.071336   0.0713360
 1.00

 0.90
            ?              ?               ?      ?        ?           ?          ?          ?
            r              r               r      r        r           r          r          r
 0.70

            e              e               e      e        e           e          e          e
 0.40

 0.35
            w              w               w      w        w           w          w          w
 0.25
            u              u               u      u        u           u          u          u

 0.05       l              l               l      l        l           l          l          l
    0
            k              k               k      k        k           k          k          k
            0             0.05           0.06   0.070    0.0710     0.07128    0.07132   0.0713336
Arithmetic Coding (3/3)
   Symbol     Probability   Huffman codeword
                                               Input String : l l u u r e ?
     k           0.05            10101
                                                           Huffman Coding 18 bits
     l            0.2              01
                                                              Codeword :
     u            0.1             100
                                                      01,01,100,100,00,11,1101
     w           0.05            10100
     e            0.3              11
                                                        Arithmetic Coding 16 bits
     r            0.2              00
                                                   Codeword : 0001001001000011
     ?            0.2             1011



 Arithmetic coding yields better compression because it encodes a message as
 a whole new symbol instead of separable symbols
 Most of the computations in arithmetic coding use floating-point arithmetic.
 However, most hardware can only support finite precision
    While a new symbol is coded, the precision required to present the range grows
    There is a potential for overflow and underflow
    If the fractional values are not scaled appropriately, the error of encoding occurs
Zero-Run-Length Coding-JPEG
          (1/2)
    The notation (L,F)
    ◦ L zeros in front of the nonzero value F
   EOB (End of Block)
    ◦ A special coded value means that the rest elements are all zeros
    ◦ If the last element of the vector is not zero, then the EOB marker will not be added
   An Example:
    1.57, 45, 0, 0, 0, 0, 23, 0, -30, -16, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ..., 0
    2. (0,57) ; (0,45) ; (4,23) ; (1,-30) ; (0,-16) ; (2,1) ; EOB
    3. (0,57) ; (0,45) ; (4,23) ; (1,-30) ; (0,-16) ; (2,1) ; (0,0)
    4. (0,6,111001);(0,6,101101);(4,5,10111);(1,5,00001);(0,4,0111);(2,1,1);(0,0)
    5.1111000 1111001 , 111000 101101 , 1111111110011000 10111 ,
            11111110110 00001 , 1011 0111 , 11100 1 , 1010
Dictionary Codes
 Dictionary  based data compression algorithms are based on
  the idea of substituting a repeated pattern with a
  shorter token
 Dictionary codes are compression codes that dynamically
  construct their own coding and decoding tables “on the fly”
  by looking at the data stream itself
 It is not necessary for us to know the symbol probabilities
  beforehand. These codes take advantage of the fact that,
  quite often, certain strings of symbols are “frequently
  repeated” and these strings can be assigned code words that
  represent the “entire string of symbols”
 Two series
  ◦ Lempel-Ziv 77: LZ77, LZSS, LZBW
  ◦ Lempel-Ziv 78: LZ78, LZW, LZMW
Outline
Image  Compression Fundamentals
Reduce correlation between pixels
Quantization and Source Coding
Overview of Image Compression
 Algorithms
Outline
 ImageCompression Fundamentals
 Reduce correlation between pixels(lossy)
 Quantization and Source Coding(lossless)
 Overview of Image Compression Algorithms
Joint Photographic Experts Group (JPEG)
               The JPEG Encoder




               The JPEG Decoder
Reference

Digital
       image processing, by Rafael
 C.Gonzalez and Richard E.Woods
   page no:421-423,440-456,459-486.
THANK
       U
FOR UR PATIENCE

More Related Content

PPTX
Mpeg video compression
PPT
Introduction to Video Compression Techniques - Anurag Jain
PDF
An Introduction to Video Principles-Part 2
PPTX
Image Compression
PPTX
Video compression
PPTX
Fundamentals and image compression models
PDF
Lecture 16 KL Transform in Image Processing
PPT
Lzw coding technique for image compression
Mpeg video compression
Introduction to Video Compression Techniques - Anurag Jain
An Introduction to Video Principles-Part 2
Image Compression
Video compression
Fundamentals and image compression models
Lecture 16 KL Transform in Image Processing
Lzw coding technique for image compression

What's hot (20)

PPTX
Multimedia basic video compression techniques
PDF
Digital Image Processing - Image Compression
PDF
Image compression
PPT
Discrete cosine transform
PPTX
Image compression in digital image processing
PPTX
PPTX
Digital Image restoration
PPTX
DIGITAL COMMUNICATION: ENCODING AND DECODING OF CYCLIC CODE
PPT
H261
PPTX
DCT image compression
PPTX
Audio compression
PDF
Discrete cosine transform
PPTX
JPEG Image Compression
PPTX
digital image processing
PPTX
Application of DSP
PPTX
Data compression
PPTX
COM2304: Color and Color Models
PPTX
Image Acquisition and Representation
PPTX
Histogram Equalization
Multimedia basic video compression techniques
Digital Image Processing - Image Compression
Image compression
Discrete cosine transform
Image compression in digital image processing
Digital Image restoration
DIGITAL COMMUNICATION: ENCODING AND DECODING OF CYCLIC CODE
H261
DCT image compression
Audio compression
Discrete cosine transform
JPEG Image Compression
digital image processing
Application of DSP
Data compression
COM2304: Color and Color Models
Image Acquisition and Representation
Histogram Equalization
Ad

Similar to Image compression (20)

DOC
image compression in data compression
PPT
jpg image processing nagham salim_as.ppt
PPT
Number system and codes
PDF
A new approach to ward off error propagation effect of aes –
PPTX
Differential games
DOC
Dpsd lecture-notes
PPTX
Process.org
PDF
Shereef_MP3_decoder
PPT
Image compression- JPEG Compression & its Modes
PPT
M4L1.ppt
PDF
Wp Sampling1 4
PPTX
Chapter 1 digital design.pptx
PPT
project ppt on anti counterfeiting technique for credit card transaction system
PPTX
The System of Automatic Searching for Vulnerabilities or how to use Taint Ana...
PPTX
21EC201– Digital Principles and system design.pptx
PPTX
Unit I-L1 - Basics of Digital Computer Organization and Architecture
PPTX
Deep learning simplified
PDF
Count that face
ZIP
Adobe AIR: Stage3D and AGAL
PPT
LDPC coing for error correction in 3g phone
image compression in data compression
jpg image processing nagham salim_as.ppt
Number system and codes
A new approach to ward off error propagation effect of aes –
Differential games
Dpsd lecture-notes
Process.org
Shereef_MP3_decoder
Image compression- JPEG Compression & its Modes
M4L1.ppt
Wp Sampling1 4
Chapter 1 digital design.pptx
project ppt on anti counterfeiting technique for credit card transaction system
The System of Automatic Searching for Vulnerabilities or how to use Taint Ana...
21EC201– Digital Principles and system design.pptx
Unit I-L1 - Basics of Digital Computer Organization and Architecture
Deep learning simplified
Count that face
Adobe AIR: Stage3D and AGAL
LDPC coing for error correction in 3g phone
Ad

Recently uploaded (20)

PPTX
Chapter 5: Probability Theory and Statistics
PDF
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
PPTX
Modernising the Digital Integration Hub
PPTX
Final SEM Unit 1 for mit wpu at pune .pptx
PPT
What is a Computer? Input Devices /output devices
PDF
Hindi spoken digit analysis for native and non-native speakers
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Hybrid model detection and classification of lung cancer
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
STKI Israel Market Study 2025 version august
PDF
A novel scalable deep ensemble learning framework for big data classification...
PPTX
Tartificialntelligence_presentation.pptx
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
1. Introduction to Computer Programming.pptx
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Zenith AI: Advanced Artificial Intelligence
Chapter 5: Probability Theory and Statistics
ENT215_Completing-a-large-scale-migration-and-modernization-with-AWS.pdf
Modernising the Digital Integration Hub
Final SEM Unit 1 for mit wpu at pune .pptx
What is a Computer? Input Devices /output devices
Hindi spoken digit analysis for native and non-native speakers
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Hybrid model detection and classification of lung cancer
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
A contest of sentiment analysis: k-nearest neighbor versus neural network
STKI Israel Market Study 2025 version august
A novel scalable deep ensemble learning framework for big data classification...
Tartificialntelligence_presentation.pptx
Enhancing emotion recognition model for a student engagement use case through...
cloud_computing_Infrastucture_as_cloud_p
NewMind AI Weekly Chronicles - August'25-Week II
Univ-Connecticut-ChatGPT-Presentaion.pdf
1. Introduction to Computer Programming.pptx
Programs and apps: productivity, graphics, security and other tools
Zenith AI: Advanced Artificial Intelligence

Image compression

  • 1. Image Compression Techniques Presented by PARTHA PRATIM DEB MTECH(CSE),1st YEAR
  • 2. Outline  Image Compression Fundamentals ◦ Why Compress ◦ How is compression possible? ◦ Redundancy ◦ The Flow of Image Compression ◦ General Image Storage System Lossy compression:  Reduce correlation between pixels ◦ Karhunen-Loeve Transform ◦ Discrete Cosine Transform ◦ Discrete Wavelet Transform ◦ Differential Pulse Code Modulation ◦ Differential Coding  Lossless compression:  Quantization and Source Coding ◦ Huffman Coding ◦ Arithmetic Coding ◦ Run Length Coding ◦ Lempel Ziv 77 Algorithm ◦ Lempel Ziv 78 Algorithm  Overview of Image Compression Algorithms ◦ JPEG ◦ JPEG 2000 ◦ Shape-Adaptive Image Compression
  • 3. Outline Image Compression Fundamentals Reduce correlation between pixels Quantization and Source Coding Overview of Image Compression Algorithms
  • 4. The Flow of Image Compression  What is the so-called image compression coding? ◦ To store the image into bit-stream as compact as possible and to display the decoded image in the monitor as exact as possible  Flow of compression ◦ The image file is converted into a series of binary data, which is called the bit- stream ◦ The decoder receives the encoded bit-stream and decodes it to reconstruct the image ◦ The total data quantity of the bit-stream is less than the total data quantity of the original image
  • 5. Basic concept of compression
  • 6. spatial redundancy Elements that are duplicated within a structure, such as pixels in a still image and bit patterns in a file. Exploiting spatial redundancy is how compression is performed. Intraframe coding Compressing redundant areas within a single video frame. Interframe coding Interframe coding often provides substantial compression because in many motion sequences, only a small percentage of the pixels are actually different from one frame to another.
  • 8. Coding  Java Syntax:  private int[] capture() throws InterruptedException {  dim = Toolkit.getDefaultToolkit().getScreenSize();  Image tmp = robot.createScreenCapture(new Rectangle(dim.width,dim.height)).getScaledInstance(800,600,BufferedImage.SCALE_SMOOTH);  int pix[] = new int[IMG_WIDTH*IMG_HEIGHT];  PixelGrabber pg = new PixelGrabber(tmp,0,0,IMG_WIDTH,IMG_HEIGHT,pix,0,IMG_WIDTH);  pg.grabPixels();  return pix;  }
  • 9. Outline  ImageCompression Fundamentals  Reduce correlation between pixels(lossy)  Quantization and Source Coding  Overview of Image Compression Algorithms
  • 10. Reduce the Correlation between Pixels Lossy compression:  Orthogonal Transform Coding ◦ KLT (Karhunen-Loeve Transform)  Maximal Decorrelation Process ◦ DCT (Discrete Cosine Transform)  JPEG is a DCT-based image compression standard, which is a lossy coding method and may result in some loss of details and unrecoverable distortion.  Subband Coding ◦ DWT (Discrete Wavelet Transform)  To divide the spectrum of an image into the lowpass and the highpass components, DWT is a famous example.  JPEG 2000 is a 2-dimension DWT based image compression standard.  Predictive Coding ◦ DPCM  To remove mutual redundancy between successive pixels and encode only the new information
  • 14. Outline  ImageCompression Fundamentals  Reduce correlation between pixels(lossy)  Quantization and Source Coding(lossless)  Overview of Image Compression Algorithms
  • 15. Quantization and Source Coding Lossless compression techniques:  Quantization ◦ The objective of quantization is to reduce the precision and to achieve higher compression ratio ◦ Lossy operation, which will result in loss of precision and unrecoverable distortion  Source Coding ◦ To achieve less average length of bits per pixel of the image. ◦ Assigns short descriptions to the more frequent outcomes and long descriptions to the less frequent outcomes ◦ Entropy Coding Methods  Huffman Coding  Arithmetic Coding  Run Length Coding  Dictionary Codes  Lempel-Ziv77  Lempel-Ziv 78
  • 16. Huffman Coding Codeword Codeword X Probability length 01 00 1 0 2 01 1 0.25 0.3 0.45 0.55 1 10 01 00 1 2 10 2 0.25 0.25 0.3 0.45 11 10 01 3 11 3 0.2 0.25 0.25 000 11 3 000 4 0.15 0.2 001 3 001 5 0.15
  • 17. Arithmetic Coding (1/3)  Arithmetic Coding: a direct extension of Shannon-Fano-Elias coding calculate the probability mass function p(x n) and the cumulative distribution function F(xn) for the source sequence xn ◦ Lossless compression technique ◦ Treate multiple symbols as a single data unit Arithmetic Coding Algorithm Input symbol is l Previouslow is the lower bound for the old interval Previoushigh is the upper bound for the old interval Range is Previoushigh - Previouslow Let Previouslow= 0, Previoushigh = 1, Range = Previoushigh – Previouslow =1 WHILE (input symbol != EOF) get input symbol l Range = Previoushigh - Previouslow New Previouslow = Previouslow + Range* intervallow of l New Previoushigh = Previouslow + Range* intervalhigh of l END
  • 18. Arithmetic Coding (2/3) Symbol Probability Sub-interval Input String : l l u u r e ? k 0.05 [0.00,0.05) l l u u re ? l 0.2 [0.05,0.25) u 0.1 [0.20,0.35) 0.0713348389 w 0.05 [0.35,0.40) =2-4+2-7+2-10+2-15+2-16 e 0.3 [0.40,0.70) r 0.2 [0.70,0.90) Codeword : 0001001001000011 ? 0.2 [0.90,1.00) 1 0.25 0.10 0.074 0.0714 0.07136 0.071336 0.0713360 1.00 0.90 ? ? ? ? ? ? ? ? r r r r r r r r 0.70 e e e e e e e e 0.40 0.35 w w w w w w w w 0.25 u u u u u u u u 0.05 l l l l l l l l 0 k k k k k k k k 0 0.05 0.06 0.070 0.0710 0.07128 0.07132 0.0713336
  • 19. Arithmetic Coding (3/3) Symbol Probability Huffman codeword Input String : l l u u r e ? k 0.05 10101 Huffman Coding 18 bits l 0.2 01 Codeword : u 0.1 100 01,01,100,100,00,11,1101 w 0.05 10100 e 0.3 11 Arithmetic Coding 16 bits r 0.2 00 Codeword : 0001001001000011 ? 0.2 1011 Arithmetic coding yields better compression because it encodes a message as a whole new symbol instead of separable symbols Most of the computations in arithmetic coding use floating-point arithmetic. However, most hardware can only support finite precision While a new symbol is coded, the precision required to present the range grows There is a potential for overflow and underflow If the fractional values are not scaled appropriately, the error of encoding occurs
  • 20. Zero-Run-Length Coding-JPEG  (1/2) The notation (L,F) ◦ L zeros in front of the nonzero value F  EOB (End of Block) ◦ A special coded value means that the rest elements are all zeros ◦ If the last element of the vector is not zero, then the EOB marker will not be added  An Example: 1.57, 45, 0, 0, 0, 0, 23, 0, -30, -16, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, ..., 0 2. (0,57) ; (0,45) ; (4,23) ; (1,-30) ; (0,-16) ; (2,1) ; EOB 3. (0,57) ; (0,45) ; (4,23) ; (1,-30) ; (0,-16) ; (2,1) ; (0,0) 4. (0,6,111001);(0,6,101101);(4,5,10111);(1,5,00001);(0,4,0111);(2,1,1);(0,0) 5.1111000 1111001 , 111000 101101 , 1111111110011000 10111 , 11111110110 00001 , 1011 0111 , 11100 1 , 1010
  • 21. Dictionary Codes  Dictionary based data compression algorithms are based on the idea of substituting a repeated pattern with a shorter token  Dictionary codes are compression codes that dynamically construct their own coding and decoding tables “on the fly” by looking at the data stream itself  It is not necessary for us to know the symbol probabilities beforehand. These codes take advantage of the fact that, quite often, certain strings of symbols are “frequently repeated” and these strings can be assigned code words that represent the “entire string of symbols”  Two series ◦ Lempel-Ziv 77: LZ77, LZSS, LZBW ◦ Lempel-Ziv 78: LZ78, LZW, LZMW
  • 22. Outline Image Compression Fundamentals Reduce correlation between pixels Quantization and Source Coding Overview of Image Compression Algorithms
  • 23. Outline  ImageCompression Fundamentals  Reduce correlation between pixels(lossy)  Quantization and Source Coding(lossless)  Overview of Image Compression Algorithms
  • 24. Joint Photographic Experts Group (JPEG) The JPEG Encoder The JPEG Decoder
  • 25. Reference Digital image processing, by Rafael C.Gonzalez and Richard E.Woods page no:421-423,440-456,459-486.
  • 26. THANK U FOR UR PATIENCE