SlideShare ist ein Scribd-Unternehmen logo
1 von 18
1
JPEG Compression
JPEG Compression
• JPEG compression is lossy, such that the original image cannot be
exactly reconstructed (although a "Lossless JPEG" specification exists
as well).
• JPEG exploits the characteristics of human vision, eliminating or
reducing data to which the eye is less sensitive. JPEG works well on
grayscale and color images, especially on photographs, but it is not
intended for two-tone images.
2
Basic Idea behind compression (JPEG)
• Our eyes is highly sensitive to intensity(grayscale) information and less
sensitive to color information.
• Again we are more sensitive to low frequency intensity value and less
sensitive to high frequency intensity value.
3
The key for any compression technique
• Compression at block level
• Using suitable transformation
• Smart quantization
• Entropy coding
4
The Key for JPEG Compression Technique
• Compression at block level : split image into non-overlapping blocks
where each block is 8X8 pixels in size.
• Using suitable transformation: compute DCT for each block
• Smart quantization: quantize DCT coefficients according to psych visually
tuned tables(pre defined quantization table)
• Entropy coding: finally the resulting bit stream is coded using run length
coding and Huffman coding
5
JPEG compression pipeline
6
Step 1: Color Conversion
• First the RGB image is converted to YCrCb (like in a television). Here Y is the
luminance or grayscale and CrCb is the chrominance or color (blue and red).
• The equations to do this: Y=0.299(R-G) + G + 0.114(B-G) Cb=0.564(B-Y) Cr=0.713(R-
Y)
• As human eyes are less sensitive to color information it is possible to reduce the
amount of information in CrCb channel without losing significant visual quality.
• In general, jpeg down sample by 2 in each direction. Means that the color information is
down sampled by 4 (4 times less color than the original one).
• Then this down sampled data is passed to next phase that is DCT.
7
Step 2: Preprocessing for DCT
• At step 2 which is preprocessing for DCT, first the image is separated into
non-overlapping blocks where each block is 8X8 pixels (64 pixels per
block).
• Then normalize the pixels value to -128 to 127 from 0 to 255, just by
subtracting 128 from each pixel value.
Fig. 1: Separating image into blocks Fig. 2: Normalization
8
Step 3: Discrete Cosine Transformation
• At step 3: each block is separately encoded with its own discrete cosine
transform. (actually jpeg uses DCT type II)
• So, after DCT we have exactly 64 cosine waves for each block, mean that
each pixels is replaced with a equivalent cosine wave.
• DCT is reversible means we can recover full data without loss.
• The DCT creates a new representation of image where it is easy to
separate important and less important pixels of the images.
[Details of DCT operation is given at the end of presentation]
9
Step 4: Quantization
• This is where the data is compressed in great extent. After performing DCT, we
apply quantization on it to remove the high frequency components. This is the real
data compression part of jpeg.
• For quantizing the DCT transformed data, jpeg use a predefined quantization table.
The amount of compression is dependent on the choice of quantization table.
• This quantization is non reversible meaning that we cant recover the original data
with out loss.
10
Step 5: Zig Zag Scanning
• Then, the quantized data is further processed using zig zag coding or scanning. This is
done to separate the DC and AC components. The first element in each 64x1 array
represents the DC coefficient from the DCT matrix, and the remaining 63 coefficients
represent the AC components.
• Then the DC components are coded using DPCM and Ac components using running
length coding.
Fig.1: Data after performing quantization Fig.2: Zig Zag scanning
11
Step 6: Coding of DC and AC coefficients
• DPCM Coding for DC components: DC components represent the intensity of
each 8x8 pixel block. The DC coefficient of any given input block is fairly
unpredictable by itself. However, significant correlation exists between the DC
components of adjacent blocks. That is, we can predict the DC coefficient value
of current block from the DC value of previous block. So, we can further
compress data.
• By using a differential prediction model (DPCM), we can increase the probability
that the value we encode will be small, and thus reduce the number of bits in the
compressed image. To obtain the coding value we simply subtract the DC
coefficient of the previously processed 8x8 pixel block from the DC coefficient of
the current block. This value is called the "DPCM difference
12
Step 6: Coding of DC and AC coefficients
• Run length coding of AC components: Because the values of the AC coefficients
tend towards zero after the quantization step, these coefficients are run-length
encoded. The concept of run-length encoding is a straightforward principle.
• The quantized output of the DCT blocks produces many zero-value bytes.
Instead of coding each zero individually, we simply encode the number of zeros in
a given 'run.' This run-length coded information is then variable-length coded
(VLC), usually using Huffman codes.
13
Step 7: Huffman Coding
• Finally, the final bit stream is coded using the Huffman coding which is the
desired output.
14
What does the DCT do?
• Let us work on an example, where we will use the following set
A = {1, 2, 3, 4, 5, 6, 7, 8}.
• The set has 8 elements, so n is 8. As you know, in computer science we love to
use the powers of two. Moreover, numbers in the set are correlated, an obvious
pattern, incremented by one. It is time to compute DCT coefficients.
• There are 8 numbers in the set A, so there will be 8 DCT coefficients in the
frequency domain. If you use the DCT formula above and compute the
coefficients for k =0, 1, 2, 3, 4, 5, 6, 7, you will see that the DCT coefficients are:
wA = {12.7279, -6.4423, 0, -0.6735, 0, -0.2009, 0, -0.0507}
15
• Let us talk about the values of the coefficients we computed. The DC coefficient,
w0, is 12.7279. The low-frequency coefficient, w1, is -6.4423. As you see the high-
frequency coefficients are small numbers. This is something we expected
because we have correlated numbers in the set A.
• If you compute DCT coefficients of a set elements where the numbers are not
correlated, we cannot say anything about the values of the coefficients. All may
be large numbers.
• Anyway, let’s go back to our example. We know that if the value of a coefficient is
small, it does not carry much information, so we can ignore the coefficients with
absolute values smaller than one.
• We now have wA = {12.7279, -6.4423, 0, 0, 0, 0, 0, 0}
What does the DCT do?
16
• If you compute DCT coefficients of a set elements where the numbers are
correlated, then the numbers are small.
• If you compute DCT coefficients of a set elements where the numbers are not
correlated, we cannot say anything about the values of the coefficients. All may
be large numbers.
• Again, small numbers(low intensity values) of image are represented by high-
frequency coefficients in DCT representation. And the large numbers(high
intensity values) are represented by low frequency coefficients in DCT
representation.
• So low frequency coefficients in DCT means high intensity value or correlated
data (or both). Which is not important.
What does the DCT do?
17
References:
1. http://www.eetimes.com/document.asp?doc_id=1225736
2. http://www.whydomath.org/node/wavlets/basicjpg.html
3. https://www.youtube.com/watch?v=Q2aEzeMDHMA&index=2&list=PL6rAVfCVE0e7yDuFhWXq
4_gf178iiwxZ9
4. https://www.youtube.com/watch?v=n_uNPbdenRs
18

Weitere ähnliche Inhalte

Was ist angesagt?

Presentation of Lossy compression
Presentation of Lossy compressionPresentation of Lossy compression
Presentation of Lossy compressionOmar Ghazi
 
Interpixel redundancy
Interpixel redundancyInterpixel redundancy
Interpixel redundancyNaveen Kumar
 
Image compression standards
Image compression standardsImage compression standards
Image compression standardskirupasuchi1996
 
Digital Image Processing - Image Compression
Digital Image Processing - Image CompressionDigital Image Processing - Image Compression
Digital Image Processing - Image CompressionMathankumar S
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationMostafa G. M. Mostafa
 
Fundamentals of Data compression
Fundamentals of Data compressionFundamentals of Data compression
Fundamentals of Data compressionM.k. Praveen
 
DCT image compression
DCT image compressionDCT image compression
DCT image compressionyoussef ramzy
 
Chapter 8 image compression
Chapter 8 image compressionChapter 8 image compression
Chapter 8 image compressionasodariyabhavesh
 
MPEG-1 Part 2 Video Encoding
MPEG-1 Part 2 Video EncodingMPEG-1 Part 2 Video Encoding
MPEG-1 Part 2 Video EncodingChristian Kehl
 
Introduction to Image Compression
Introduction to Image CompressionIntroduction to Image Compression
Introduction to Image CompressionKalyan Acharjya
 
The motion estimation
The motion estimationThe motion estimation
The motion estimationsakshij91
 
Image restoration and degradation model
Image restoration and degradation modelImage restoration and degradation model
Image restoration and degradation modelAnupriyaDurai
 

Was ist angesagt? (20)

Multimedia compression
Multimedia compressionMultimedia compression
Multimedia compression
 
Presentation of Lossy compression
Presentation of Lossy compressionPresentation of Lossy compression
Presentation of Lossy compression
 
image compression ppt
image compression pptimage compression ppt
image compression ppt
 
Jpeg and mpeg ppt
Jpeg and mpeg pptJpeg and mpeg ppt
Jpeg and mpeg ppt
 
Huffman Coding
Huffman CodingHuffman Coding
Huffman Coding
 
Interpixel redundancy
Interpixel redundancyInterpixel redundancy
Interpixel redundancy
 
Image compression standards
Image compression standardsImage compression standards
Image compression standards
 
Digital Image Processing - Image Compression
Digital Image Processing - Image CompressionDigital Image Processing - Image Compression
Digital Image Processing - Image Compression
 
Digital Image Processing: Image Segmentation
Digital Image Processing: Image SegmentationDigital Image Processing: Image Segmentation
Digital Image Processing: Image Segmentation
 
Fundamentals of Data compression
Fundamentals of Data compressionFundamentals of Data compression
Fundamentals of Data compression
 
DCT image compression
DCT image compressionDCT image compression
DCT image compression
 
Chapter 8 image compression
Chapter 8 image compressionChapter 8 image compression
Chapter 8 image compression
 
Image compression
Image compressionImage compression
Image compression
 
MPEG-1 Part 2 Video Encoding
MPEG-1 Part 2 Video EncodingMPEG-1 Part 2 Video Encoding
MPEG-1 Part 2 Video Encoding
 
Introduction to Image Compression
Introduction to Image CompressionIntroduction to Image Compression
Introduction to Image Compression
 
The motion estimation
The motion estimationThe motion estimation
The motion estimation
 
Video coding standards ppt
Video coding standards pptVideo coding standards ppt
Video coding standards ppt
 
Lzw coding technique for image compression
Lzw coding technique for image compressionLzw coding technique for image compression
Lzw coding technique for image compression
 
Bit plane coding
Bit plane codingBit plane coding
Bit plane coding
 
Image restoration and degradation model
Image restoration and degradation modelImage restoration and degradation model
Image restoration and degradation model
 

Ähnlich wie Jpeg compression

Compression using JPEG
Compression using JPEGCompression using JPEG
Compression using JPEGSabih Hasan
 
image compression in data compression
image compression in data compressionimage compression in data compression
image compression in data compressionZaabir Ali
 
image processing for jpeg presentati.ppt
image processing for jpeg presentati.pptimage processing for jpeg presentati.ppt
image processing for jpeg presentati.pptnaghamallella
 
Multimedia communication jpeg
Multimedia communication jpegMultimedia communication jpeg
Multimedia communication jpegDr. Kapil Gupta
 
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standards
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standardsComparison between JPEG(DCT) and JPEG 2000(DWT) compression standards
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standardsRishab2612
 
Multimedia image compression standards
Multimedia image compression standardsMultimedia image compression standards
Multimedia image compression standardsMazin Alwaaly
 
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...VLSICS Design
 
lossy compression JPEG
lossy compression JPEGlossy compression JPEG
lossy compression JPEGMahmoud Hikmet
 
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...VLSICS Design
 
project ppt on anti counterfeiting technique for credit card transaction system
project ppt on anti counterfeiting technique for credit card transaction systemproject ppt on anti counterfeiting technique for credit card transaction system
project ppt on anti counterfeiting technique for credit card transaction systemRekha dudiya
 
Video Compression Basics
Video Compression BasicsVideo Compression Basics
Video Compression BasicsSanjiv Malik
 
CyberSec_JPEGcompressionForensics.pdf
CyberSec_JPEGcompressionForensics.pdfCyberSec_JPEGcompressionForensics.pdf
CyberSec_JPEGcompressionForensics.pdfMohammadAzreeYahaya
 
IIIRJET-Implementation of Image Compression Algorithm on FPGA
IIIRJET-Implementation of Image Compression Algorithm on FPGAIIIRJET-Implementation of Image Compression Algorithm on FPGA
IIIRJET-Implementation of Image Compression Algorithm on FPGAIRJET Journal
 

Ähnlich wie Jpeg compression (20)

Jpeg standards
Jpeg   standardsJpeg   standards
Jpeg standards
 
Compression using JPEG
Compression using JPEGCompression using JPEG
Compression using JPEG
 
image compression in data compression
image compression in data compressionimage compression in data compression
image compression in data compression
 
image processing for jpeg presentati.ppt
image processing for jpeg presentati.pptimage processing for jpeg presentati.ppt
image processing for jpeg presentati.ppt
 
Data compression
Data compressionData compression
Data compression
 
Image compression Algorithms
Image compression AlgorithmsImage compression Algorithms
Image compression Algorithms
 
Multimedia communication jpeg
Multimedia communication jpegMultimedia communication jpeg
Multimedia communication jpeg
 
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standards
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standardsComparison between JPEG(DCT) and JPEG 2000(DWT) compression standards
Comparison between JPEG(DCT) and JPEG 2000(DWT) compression standards
 
Multimedia image compression standards
Multimedia image compression standardsMultimedia image compression standards
Multimedia image compression standards
 
Jpeg
JpegJpeg
Jpeg
 
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...
Pipelined Architecture of 2D-DCT, Quantization and ZigZag Process for JPEG Im...
 
lossy compression JPEG
lossy compression JPEGlossy compression JPEG
lossy compression JPEG
 
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...
PIPELINED ARCHITECTURE OF 2D-DCT, QUANTIZATION AND ZIGZAG PROCESS FOR JPEG IM...
 
RNN-LSTM.pptx
RNN-LSTM.pptxRNN-LSTM.pptx
RNN-LSTM.pptx
 
project ppt on anti counterfeiting technique for credit card transaction system
project ppt on anti counterfeiting technique for credit card transaction systemproject ppt on anti counterfeiting technique for credit card transaction system
project ppt on anti counterfeiting technique for credit card transaction system
 
Video Compression Basics
Video Compression BasicsVideo Compression Basics
Video Compression Basics
 
Steganography Part 2
Steganography Part 2Steganography Part 2
Steganography Part 2
 
Ch7 031102
Ch7 031102Ch7 031102
Ch7 031102
 
CyberSec_JPEGcompressionForensics.pdf
CyberSec_JPEGcompressionForensics.pdfCyberSec_JPEGcompressionForensics.pdf
CyberSec_JPEGcompressionForensics.pdf
 
IIIRJET-Implementation of Image Compression Algorithm on FPGA
IIIRJET-Implementation of Image Compression Algorithm on FPGAIIIRJET-Implementation of Image Compression Algorithm on FPGA
IIIRJET-Implementation of Image Compression Algorithm on FPGA
 

Mehr von Hossain Md Shakhawat

Mehr von Hossain Md Shakhawat (20)

Recipe for the effective presentaion
Recipe for the effective presentaionRecipe for the effective presentaion
Recipe for the effective presentaion
 
The Road to Higher study in Japan
The Road to Higher study in JapanThe Road to Higher study in Japan
The Road to Higher study in Japan
 
Application of dfs
Application of dfsApplication of dfs
Application of dfs
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first search
 
Islamic jurisprudence
Islamic jurisprudenceIslamic jurisprudence
Islamic jurisprudence
 
Introduction to Medical Imaging
Introduction to Medical ImagingIntroduction to Medical Imaging
Introduction to Medical Imaging
 
Surah Fatiha
Surah FatihaSurah Fatiha
Surah Fatiha
 
Hashing
HashingHashing
Hashing
 
Decision making and looping
Decision making and loopingDecision making and looping
Decision making and looping
 
Decision making and branching
Decision making and branchingDecision making and branching
Decision making and branching
 
Digital signature
Digital signatureDigital signature
Digital signature
 
Caesar cipher
Caesar cipherCaesar cipher
Caesar cipher
 
Rsa rivest shamir adleman
Rsa rivest shamir adlemanRsa rivest shamir adleman
Rsa rivest shamir adleman
 
Fundamentals of cryptography
Fundamentals of cryptographyFundamentals of cryptography
Fundamentals of cryptography
 
Introduction to programming with c,
Introduction to programming with c,Introduction to programming with c,
Introduction to programming with c,
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
 
History of computing
History of computingHistory of computing
History of computing
 
Introduction to Printers
Introduction to PrintersIntroduction to Printers
Introduction to Printers
 
Input devices_(Mouse and Keyboard)
Input devices_(Mouse and Keyboard)Input devices_(Mouse and Keyboard)
Input devices_(Mouse and Keyboard)
 
Binary search tree(bst)
Binary search tree(bst)Binary search tree(bst)
Binary search tree(bst)
 

Kürzlich hochgeladen

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...KokoStevan
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 

Kürzlich hochgeladen (20)

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 

Jpeg compression

  • 2. JPEG Compression • JPEG compression is lossy, such that the original image cannot be exactly reconstructed (although a "Lossless JPEG" specification exists as well). • JPEG exploits the characteristics of human vision, eliminating or reducing data to which the eye is less sensitive. JPEG works well on grayscale and color images, especially on photographs, but it is not intended for two-tone images. 2
  • 3. Basic Idea behind compression (JPEG) • Our eyes is highly sensitive to intensity(grayscale) information and less sensitive to color information. • Again we are more sensitive to low frequency intensity value and less sensitive to high frequency intensity value. 3
  • 4. The key for any compression technique • Compression at block level • Using suitable transformation • Smart quantization • Entropy coding 4
  • 5. The Key for JPEG Compression Technique • Compression at block level : split image into non-overlapping blocks where each block is 8X8 pixels in size. • Using suitable transformation: compute DCT for each block • Smart quantization: quantize DCT coefficients according to psych visually tuned tables(pre defined quantization table) • Entropy coding: finally the resulting bit stream is coded using run length coding and Huffman coding 5
  • 7. Step 1: Color Conversion • First the RGB image is converted to YCrCb (like in a television). Here Y is the luminance or grayscale and CrCb is the chrominance or color (blue and red). • The equations to do this: Y=0.299(R-G) + G + 0.114(B-G) Cb=0.564(B-Y) Cr=0.713(R- Y) • As human eyes are less sensitive to color information it is possible to reduce the amount of information in CrCb channel without losing significant visual quality. • In general, jpeg down sample by 2 in each direction. Means that the color information is down sampled by 4 (4 times less color than the original one). • Then this down sampled data is passed to next phase that is DCT. 7
  • 8. Step 2: Preprocessing for DCT • At step 2 which is preprocessing for DCT, first the image is separated into non-overlapping blocks where each block is 8X8 pixels (64 pixels per block). • Then normalize the pixels value to -128 to 127 from 0 to 255, just by subtracting 128 from each pixel value. Fig. 1: Separating image into blocks Fig. 2: Normalization 8
  • 9. Step 3: Discrete Cosine Transformation • At step 3: each block is separately encoded with its own discrete cosine transform. (actually jpeg uses DCT type II) • So, after DCT we have exactly 64 cosine waves for each block, mean that each pixels is replaced with a equivalent cosine wave. • DCT is reversible means we can recover full data without loss. • The DCT creates a new representation of image where it is easy to separate important and less important pixels of the images. [Details of DCT operation is given at the end of presentation] 9
  • 10. Step 4: Quantization • This is where the data is compressed in great extent. After performing DCT, we apply quantization on it to remove the high frequency components. This is the real data compression part of jpeg. • For quantizing the DCT transformed data, jpeg use a predefined quantization table. The amount of compression is dependent on the choice of quantization table. • This quantization is non reversible meaning that we cant recover the original data with out loss. 10
  • 11. Step 5: Zig Zag Scanning • Then, the quantized data is further processed using zig zag coding or scanning. This is done to separate the DC and AC components. The first element in each 64x1 array represents the DC coefficient from the DCT matrix, and the remaining 63 coefficients represent the AC components. • Then the DC components are coded using DPCM and Ac components using running length coding. Fig.1: Data after performing quantization Fig.2: Zig Zag scanning 11
  • 12. Step 6: Coding of DC and AC coefficients • DPCM Coding for DC components: DC components represent the intensity of each 8x8 pixel block. The DC coefficient of any given input block is fairly unpredictable by itself. However, significant correlation exists between the DC components of adjacent blocks. That is, we can predict the DC coefficient value of current block from the DC value of previous block. So, we can further compress data. • By using a differential prediction model (DPCM), we can increase the probability that the value we encode will be small, and thus reduce the number of bits in the compressed image. To obtain the coding value we simply subtract the DC coefficient of the previously processed 8x8 pixel block from the DC coefficient of the current block. This value is called the "DPCM difference 12
  • 13. Step 6: Coding of DC and AC coefficients • Run length coding of AC components: Because the values of the AC coefficients tend towards zero after the quantization step, these coefficients are run-length encoded. The concept of run-length encoding is a straightforward principle. • The quantized output of the DCT blocks produces many zero-value bytes. Instead of coding each zero individually, we simply encode the number of zeros in a given 'run.' This run-length coded information is then variable-length coded (VLC), usually using Huffman codes. 13
  • 14. Step 7: Huffman Coding • Finally, the final bit stream is coded using the Huffman coding which is the desired output. 14
  • 15. What does the DCT do? • Let us work on an example, where we will use the following set A = {1, 2, 3, 4, 5, 6, 7, 8}. • The set has 8 elements, so n is 8. As you know, in computer science we love to use the powers of two. Moreover, numbers in the set are correlated, an obvious pattern, incremented by one. It is time to compute DCT coefficients. • There are 8 numbers in the set A, so there will be 8 DCT coefficients in the frequency domain. If you use the DCT formula above and compute the coefficients for k =0, 1, 2, 3, 4, 5, 6, 7, you will see that the DCT coefficients are: wA = {12.7279, -6.4423, 0, -0.6735, 0, -0.2009, 0, -0.0507} 15
  • 16. • Let us talk about the values of the coefficients we computed. The DC coefficient, w0, is 12.7279. The low-frequency coefficient, w1, is -6.4423. As you see the high- frequency coefficients are small numbers. This is something we expected because we have correlated numbers in the set A. • If you compute DCT coefficients of a set elements where the numbers are not correlated, we cannot say anything about the values of the coefficients. All may be large numbers. • Anyway, let’s go back to our example. We know that if the value of a coefficient is small, it does not carry much information, so we can ignore the coefficients with absolute values smaller than one. • We now have wA = {12.7279, -6.4423, 0, 0, 0, 0, 0, 0} What does the DCT do? 16
  • 17. • If you compute DCT coefficients of a set elements where the numbers are correlated, then the numbers are small. • If you compute DCT coefficients of a set elements where the numbers are not correlated, we cannot say anything about the values of the coefficients. All may be large numbers. • Again, small numbers(low intensity values) of image are represented by high- frequency coefficients in DCT representation. And the large numbers(high intensity values) are represented by low frequency coefficients in DCT representation. • So low frequency coefficients in DCT means high intensity value or correlated data (or both). Which is not important. What does the DCT do? 17
  • 18. References: 1. http://www.eetimes.com/document.asp?doc_id=1225736 2. http://www.whydomath.org/node/wavlets/basicjpg.html 3. https://www.youtube.com/watch?v=Q2aEzeMDHMA&index=2&list=PL6rAVfCVE0e7yDuFhWXq 4_gf178iiwxZ9 4. https://www.youtube.com/watch?v=n_uNPbdenRs 18