Presentation is loading. Please wait.

Presentation is loading. Please wait.

JPEG Marco Fuentes García Francisco Gea Martínez.

Similar presentations


Presentation on theme: "JPEG Marco Fuentes García Francisco Gea Martínez."— Presentation transcript:

1 JPEG Marco Fuentes García Francisco Gea Martínez

2 T OPICS Why do we need image compression? Lossless and lossy compression Image file formats What is JPEG? Steps of compressions Effects of JPEG compression

3 W HY DO WE NEED IMAGE COMPRESSION ? there are numerous applications involving processing, storage and transmission of digital images, generating a large number of files of large size An RGB image 800x600 24 bits/px without compression takes 800x600x24 = 1.4 MB

4 The aim of compressing images: Reduce the size Image compression: Reduce the amount of data keeping the information

5 L OSSLESS AND LOSSY COMPRESSION In many applications the compression is only acceptable from the point of view of error-free data reduction Medical imaging, satellite, legal documents… in others, small loss of information can lead to a compression efficiency Internet, multimedia, FAX…

6 Compression Lossly The image obtained after decompression has error Lossless Compression preserve the data. It is possible to decompress the image without error

7 I MAGE FILE FORMATS FormatReal color Palet te Gr ay Biton al Compress ion SourceMulti- Image Bitmap (BMP) Yes Run-lengthWindowsNo TIFF Yes JPG, LZW, Runs, CCITT4, CCITT3, packBits StandardYes JFIF(JPE G) YesNoYesNoJPEGStandardNo PCX NoYesNo OwnWindowsNo PGM No YesNo UnixNo GIF NoYes LZWStandardYes

8 W HAT IS JPEG? JPEG (Joint Photographic Experts Group) defines various standards for monochromatic and color images Each standard uses differents compression methods: StandardAlgorithm JPEG – originalTDC + Huffman JPEG – 2000TDW (Wavelets) JPEG – LS (Lossless) Lossless prediction + Run-lenghts

9 JPEG, JFIF AND SPIFF JPEG defines some compression methods Eric Hamilton created JFIF (JPEG File Interchange Format) JPEG file usually means JPEG file in JFIF format Later, SPIFF replaced JFIF

10 S TEPS OF COMPRESSIONS The encoding process consists of several steps: The representation of the colors in the image is converted from RGB to Y′C B C R, consisting of one luma component (Y'), representing brightness, and two chroma components, (C B and C R ). The image is split into blocks of 8×8 pixels, and for each block, each of the Y, C B, and C R data undergoes the Discrete Cosine Transform (DCT) The amplitudes of the frequency components are quantized. The resulting data for all 8×8 blocks is further compressed with a lossless algorithm, a variant of Huffman encoding

11 S TEPS OF COMPRESSIONS

12 RGB -> YUV JFIF usage of JPEG allows Y’CbCr where Y’, Cb and Cr have the full 8-bit range of 0-255. And back:

13 JPEG F ORMAT A JPEG image consists of a sequence of segments, each beginning with a marker, each of which begins with a 0xFF byte followed by a byte indicating what kind of marker it is.

14 After each data marker usually appear two bytes that indicate the length of data containing. Example: FF DB 00 43, Following 43 bytes define quantization table

15 E XAMPLE

16 DCT DCT becomes a set input of a set of coefficients with increasing frequency cosine. Each component of the image is divided into small blocks of 8 × 8 pixels, which are processed almost independently, which significantly reduces the computation time.

17 E XAMPLE : [0,255] -> [-128,127]

18 The next step is to take the two-dimensional DCT, which is given by: Top-left corner entry with the rather large magnitude. This is the DC coefficient. The remaining 63 coefficients are called the AC coefficients.

19 Q UANTIZATION The human eye is good at seeing small differences in brightness over a relatively large area, but not so good at distinguishing the exact strength of a high frequency brightness variation. This allows one to greatly reduce the amount of information in the high frequency components. This is done by simply dividing each component in the frequency domain by a constant for that component, and then rounding to the nearest integer.

20 This rounding operation is the only lossy operation in the whole process (other than chroma subsampling) if the DCT computation is performed with sufficiently high precision. As a result of this, it is typically the case that many of the higher frequency components are rounded to zero, and many of the rest become small positive or negative numbers, which take many fewer bits to represent.

21 The elements in the quantization matrix control the compression ratio, with larger values producing greater compression. A typical quantization matrix, as specified in the original JPEG Standard, is as follows:

22 The quantized DCT coefficients are computed with: Where G is the unquantized DCT coefficients; Q is the quantization matrix above; and B is the quantized DCT coefficients.

23 Using this quantization matrix with the DCT coefficient matrix from above results in:

24 E NTROPY CODING Entropy coding is a special form of lossless data compression. It involves arranging the image components in a "zigzag" order employing run-length encoding (RLE) algorithm that groups similar frequencies together, inserting length coding zeros, and then using Huffman coding on what is left. 24

25 −26, −3, 0, −3, −2, −6, 2, −4, 1 −4, 1, 1, 5, 1, 2, −1, 1, −1, 2, 0, 0, 0, 0, 0, −1, −1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 Huffman code: −26, −3, 0, −3, −2, −6, 2, −4, 1 −4, 1, 1, 5, 1, 2, −1, 1, −1, 2, 0, 0, 0, 0, 0, −1, −1, EOB 25

26 D ECODING Decoding to display the image consists of doing all the above in reverse. Taking the DCT coefficient matrix (after adding the difference of the DC coefficient back in)

27 and taking the entry-for-entry product with the quantization matrix from above results in which closely resembles the original DCT coefficient matrix for the top-left portion.

28 The next step is to take the two-dimensional inverse DCT (a 2D type-III DCT), which is given by: Where: x is the pixel row y is the pixel column F_u,v is the reconstructed approximate coeffiecient at coordinates (u,v) f_u,v is the reconstructed pixel value at coordinates (x,y)

29 Rounding the output to integer values (since the original had integer values) results in an image with values (still shifted down by 128)

30 and adding 128 to each entry This is the decompressed subimage

31 E FFECTS OF JPEG COMPRESSION QualitySize (bytes) Compression ratio Comment Highest quality (Q = 100) 83,2612.6:1Extremely minor artifacts

32 QualitySize (bytes) Compression ratio Comment High quality (Q = 50)15,13815:1Initial signs of subimage artifacts

33 QualitySize (bytes) Compression ratio Comment Medium quality (Q = 25) 9,55323:1Stronger artifacts; loss of high frequency information

34 QualitySize (bytes) Compression ratio Comment Low quality (Q = 10)4,78746:1Severe high frequency loss; artifacts on subimage boundaries are obvious

35 QualitySize (bytes) Compression ratio Comment Lowest quality (Q = 1) 1,523144:1Extreme loss of color and detail; the leaves are nearly unrecognizable

36 36 http://www.youtube.com/watch?v=Fk6kV 5N1rzs&feature=player_embedded

37 http://es.wikipedia.org/wiki/Joint_Photographic_ Experts_Group http://en.wikipedia.org/wiki/JPEG http://www.slideshare.net/MonicaCunalata/jpeg- compresion http://www.escet.urjc.es/~visiona/tema8.pdf 37


Download ppt "JPEG Marco Fuentes García Francisco Gea Martínez."

Similar presentations


Ads by Google