the dct domain and jpeg
play

The DCT domain and JPEG CSM25 Secure Information Hiding Dr Hans - PowerPoint PPT Presentation

The DCT domain and JPEG CSM25 Secure Information Hiding Dr Hans Georg Schaathun University of Surrey Spring 2009 Week 3 Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 Week 3 1 / 47 Learning Objectives Be able to work


  1. The DCT domain and JPEG CSM25 Secure Information Hiding Dr Hans Georg Schaathun University of Surrey Spring 2009 – Week 3 Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 1 / 47

  2. Learning Objectives Be able to work with and JPEG images and other representations in the transform domain. Understand what happens during JPEG compression, and its potential consequence to watermarking and steganography. Be able to apply simple LSB embedding in the JPEG domain. Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 2 / 47

  3. Overview Outline Overview 1 Image Representation 2 Compression 3 Steganography in JPEG 4 Matlab 5 Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 3 / 47

  4. Overview The elements of JPEG Operates on luminence and chrominance (YCbCr) (not on RGB) Grayscale images have luminence component only. Downsampling Works in the DCT domain (not the spatial domain) Quantisation Entropy coding (lossless compression) Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 4 / 47

  5. Overview JPEG is not a file format JPEG is a compression system The system employs three different compression techniques JPEG is not a file format. Files with extension .jpeg are often JFIF or EXIF . JFIF is traditionally the most common file format for JPEG. EXIF is made for digital cameras and contain extra meta information. Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 5 / 47

  6. Overview Reading Core Reading Digital Image Processing Using MATLAB. Chapter 6: colour images Representation Processing Conversion Chapter 8.5: JPEG compression Chapter 4: Frequency domain processing Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 6 / 47

  7. Image Representation Outline Overview 1 Image Representation 2 Alternatives to RGB The blockwise DCT domain Compression 3 Steganography in JPEG 4 5 Matlab Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 7 / 47

  8. Image Representation Alternatives to RGB The RGB colour representations RGB : A colour is a vector ( R , G , B ) R is amount of red light. G is amount of green light. B is amount of blue light. Each pixel can be either A colour vector ( R , G , B ) ; or a reference to an array of colour vectors (the palette) Each coefficient can be ∈ [ 0 , 1 ] ; floating point ( double in matlab) ∈ { 0 , 1 , . . . , 255 } ; 8-bit integer ( uint8 in matlab) ∈ { 0 , 1 , . . . , 2 16 − 1 } ; 16-bit integer ( uint16 in matlab) Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 8 / 47

  9. Image Representation Alternatives to RGB Alternatives to RGB NTSC : ( Y , I , Q )       Y 0 . 299 0 . 587 0 . 114 R  = I 0 . 596 − 0 . 274 − 0 . 322 G      Q 0 . 211 − 0 . 523 0 . 312 B where R , G , B ∈ [ 0 , 1 ] . YCbCr : ( Y , Cb , Cr )         Y 16 65 . 481 128 . 553 24 . 966 R  =  + − 37 . 797 − 74 . 203 112 . 000 Cb 128 G       Cr 128 112 . 000 − 93 . 786 − 18 . 214 B where R , G , B ∈ [ 0 , 1 ] and Y , Cb , Cr ∈ [ 0 , 255 ] . Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 9 / 47

  10. Image Representation The blockwise DCT domain Block-wise Each colour-channel (Y,Cb,Cr) considered separately M × N matrix divided into 8 × 8 blocks Each block is handled separately Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 10 / 47

  11. Image Representation The blockwise DCT domain The DCT transform Several different DCT transform. We use the following. M − 1 N − 1 � α ( u ) α ( v ) cos ( 2 x + 1 ) u π cos ( 2 y + 1 ) v π � � T f ( u , v ) = f ( x , y ) MN 2 M 2 N x = 0 y = 0 where � 1 , if a = 0 , α ( a ) = 2 , otherwise. M = N = 8 , Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 11 / 47

  12. Image Representation The blockwise DCT domain The DCT transform The inverse is similar M − 1 N − 1 � α ( u ) α ( v ) cos ( 2 x + 1 ) u π cos ( 2 y + 1 ) v π � � f ( x , y ) = T f ( u , v ) MN 2 M 2 N u = 0 v = 0 where � 1 , if a = 0 , α ( a ) = 2 , otherwise. M = N = 8 , Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 12 / 47

  13. Image Representation The blockwise DCT domain Matlab Matlab functions dct2 (2D DCT transform) idct2 (Inverse) blkproc ( X, [M N], FUN ) For instance blkproc ( X, [8 8], @dct2 ) Use help system for details Do not use imread for JPEG images converts images to the spatial domain. you don’t even know the compression parameters... Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 13 / 47

  14. Image Representation The blockwise DCT domain Transform image Linear combination of patterns (see right) DC (upper left) gives average colour intensity Low frequency: coarse structure High frequency: fine details Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 14 / 47

  15. Compression Outline Overview 1 Image Representation 2 Compression 3 Downsampling Quantisation Source Coding Steganography in JPEG 4 Matlab 5 Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 15 / 47

  16. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  17. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  18. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  19. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  20. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  21. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

  22. Compression Downsampling What is sampling? Fact The human eye is more sensitive to changes in luminance than in chrominance. To sample is to collect measurements. Each pixel is a sample (measuring the colour of the image). Lower resolution means fewer samples. Reducing resolution = downsampling Basic M × N image: N · M samples per component ( Y , Cb , Cr ). Y is more useful than Cb and Cr . Therefore we can downsample Cb and Cr M / 2 × N / 2 is common for Cb and Cr Still use M × M for Y Dr Hans Georg Schaathun The DCT domain and JPEG Spring 2009 – Week 3 16 / 47

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend