SlideShare a Scribd company logo
1 of 6
Download to read offline
International Journal of Research in Computer Science
eISSN 2249-8265 Volume 2 Issue 5 (2012) pp. 37-42
www.ijorcs.org, A Unit of White Globe Publications
doi: 10.7815/ijorcs.25.2012.046
www.ijorcs.org
1F1F A COMPARATIVE STUDY OF IMAGE COMPRESSION
ALGORITHMS
Kiran Bindu1
, Anita Ganpati2
, Aman Kumar Sharma3
1
Research Scholar, Himachal Pradesh University, Shimla
Email: sharma.kiran95@gmail.com
2
Assistant Professor, Himachal Pradesh University, Shimla
Email: anitaganpati@gmail.com
3
Associate Professor, Himachal Pradesh University, Shimla
Email: sharmaas1@gmail.com
Abstract: Digital images in their uncompressed form
require an enormous amount of storage capacity. Such
uncompressed data needs large transmission
bandwidth for the transmission over the network.
Discrete Cosine Transform (DCT) is one of the widely
used image compression method and the Discrete
Wavelet Transform (DWT) provides substantial
improvements in the quality of picture because of multi
resolution nature. Image compression reduces the
storage space of image and also maintains the quality
information of the image. In this study the performance
of three most widely used techniques namely DCT,
DWT and Hybrid DCT-DWT are discussed for image
compression and their performance is evaluated in
terms of Peak Signal to Noise Ratio (PSNR), Mean
Square Error (MSE) and Compression Ratio (CR). The
experimental results obtained from the study shows
that the Hybrid DCT- DWT technique for image
compression has in general a better performance than
individual DCT or DWT.
Keywords: Compression, DCT, DWT, Hybrid, Image
Compression.
I. INTRODUCTION
Compression is a process by which the description
of computerized information is modified so that the
capacity required to store or the bit-rate required to
transmit it is reduced. Compression is carried out for
the following reasons as to reduce, the storage
requirement, processing time and transmission
duration. Image compression is minimizing the size in
bytes of a graphics file without degrading the quality
of image. Many applications need large number of
images for solving problems. Digital images can be
stored on disk, and storing space of image is important.
Because less memory space means less time required
for processing of image. Image Compression means
reducing the amount of data required to represent a
digital image [1].
The joint photographic expert group (JPEG) was
developed in 1992, based on DCT. It has been one of
the most widely used compression method [2]. The
hardware implementation for the JPEG using the DCT
is simple; the noticeable “blocking artifacts” across the
block boundaries cannot be neglected at higher
compression ratio. In images having gradually shaded
areas, the quality of reconstructed images is degraded
by “false Contouring” [3]. In DWT based coding, has
ability to display the images at different resolution and
also achieves higher compression ratio. The Forward
Walsh Hadamard Transform (FWHT) is another
option for image and video compression applications
which requires less computation as compared to DWT
and DCT algorithms. In order to benefit from the
respective strengths of individual popular coding
scheme, a new scheme, known as hybrid algorithm,
has been developed where two transform techniques
are implemented together. Yu and Mitra in [4] have
introduced Hybrid transform coding technique.
Similarly Usama presents a scalable Hybrid scheme
for image coding which combines both the wavelets
and Fourier transform [5]. In [6], Singh et al. have
applied hybrid algorithm to medical images that uses 5
- level DWT decomposition. Because of higher level
(5 levels DWT) the scheme requires large
computational resources and is not suitable for use in
modern coding standards. In this section, DCT, DWT
and Hybrid DCT-DWT techniques are discussed.
A. Discrete Cosine Transform
A DCT represents the input data points in the form
of sum of cosine functions that are oscillating at
different frequencies and magnitudes. There are
mainly two types of DCT: one dimensional DCT and
two dimensional DCT. The 2D DCT for an N×N input
sequence can be defined as follows [7]:
����(�, �) =
1
√2n
�(�)�(�) �
�−1
�=0
� �(�, �)
�−1
�=0
. cos �
2�+1
2�
��� cos �
2�+1
2�
��� (1)
38 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma
www.ijorcs.org
Where B (u) = �
1
√2
�� � = 0,
1 if u > 0
M (x,y) is the input data of size x×y. The input
image is first divided into 8×8 blocks; then the 8-point
2-D DCT is performed. The DCT coefficients are then
quantized using an 8×8 quantization table. The
quantization is achieved by dividing each elements of
the transformed original data matrix by corresponding
element in the quantization matrix Q and rounding to
the nearest integer value as shown in equation (2):-
������(�, �) = ����� �
����(�,�)
�(�,�)
� (2)
After this, compression is achieved by applying
appropriate scaling factor. Then in order to reconstruct
the data, rescaling and de-quantization is performed.
The de-quantized matrix is then transformed back
using the inverse – DCT. The whole procedure is
shown in Fig. 1.
Figure 1: Block diagram of the JPEG-based DCT scheme
B. Discrete Wavelet Transform
In DWT, an image is represented by sum of wavelet
functions, which are known as wavelets, having
different location and scale. Discrete Wavelet
Transform represents the data into a set of high pass
(detail) and low pass (approximate) coefficients. Image
is first divided into blocks of 32×32. Then each block
is passed through two filters: in this the first level,
decomposition is performed to decompose the input
data into an approximation and detail coefficients.
After obtaining the transformed matrix, the detail and
approximate coefficients are separated as LL, HL, LH
and HH coefficients. Then all the coefficients are
discarded, except the LL coefficients that are
transformed into the second level. These coefficients
are then passed through a constant scaling factor to
achieve the desired compression ratio. Following fig. 2
is an illustration of DWT. Here, x[n] is the input
signal, d[n] is the high frequency component, and a[n]
is the low frequency component. For data
reconstruction, the coefficients are rescaled and
padded with zeros, and passed through the wavelet
filters. We have used the Daubechies filters
coefficients in this study [9]:
Figure 2: Block diagram of the 2- level DWT scheme
C. Hybrid DWT-DCT Algorithm
The objective of the hybrid DWT-DCT algorithm is
to exploit the properties of both DWT and DCT. By
giving consideration to the type of application, original
image of size 256×256 or any resolution, provided
divisible by 32, is first divided into blocks of N×N.
Then each block is decomposed using 2-D DWT. Now
low frequency coefficients (LL) are passed to the next
stage where the high frequency coefficients (HL, LH,
and HH) are discarded. Then the passed LL
components are further decomposed using another
2_D DWT. The 8-point DCT is applied to the DWT
Coefficients. To achieve a higher compression,
majority of high coefficients can be discarded. To
achieve more compression a JPEG like quantization is
performed. In this stage, many of the higher frequency
components are rounded to zero. The quantized
coefficients are further scaled using scaling factor
(SF). Then the image is reconstructed by following the
inverse procedure. During inverse DWT, zero values
are padded in place of detailed coefficients [10].
II. PERFORMANCE EVALUATION PARAMETERS
Two popular measures of performance evaluation
are, Peak Signal to noise Ratio (PSNR) and
Compression Ratio (CR). Which are described below:
A. PSNR
It is the most popular tool for the measurement of
the compressed image and video. It is simple to
compute. The PSNR in decibel is evaluated as follows
[15]:
PSNR= 10 log10
�2
MSE
(3)
Where, I is allowable image pixel intensity level.
MSE is mean squared error. It is another
performance evaluation parameter of Image
Compression Algorithms. It is an important evaluation
parameter for measuring the quality of compressed
image. It compares the original data with reconstructed
data and then results the level of distortion. The MSE
between the original data and reconstructed data is:
A Comparative Study of Image Compression Algorithms 39
www.ijorcs.org
MSE =
1
��
∑�
�=1 ∑ (A�,� − B�,�)2
�
�=1 (4)
Where, A = Original image of size M×N
B = Reconstructed image of size M×N
B. CR
It is a measure of the reduction of detail coefficient
of data.
CR =
Discarded Data
Original Data
In the process of image compression, it is important
to know how much important coefficient one can
discard from input data in order to preserve critical
information of the original data.
III. LITERATURE SURVEY
Anil Kumar et al. in their paper two image
compression techniques namely, DCT and DWT are
simulated. They concluded that DWT technique is
much efficient than DCT in quality and efficiency wise
but in performance time wise DCT is better than DWT
[1].
Swastik Das et al. presented DWT and DCT
transformations with their working. They concluded
that image compression is of prime importance in Real
time applications like video conferencing where data
are transmitted through a channel. Using JPEG
standard, DCT is used for mapping which reduces the
inter pixel redundancies followed by quantization
which reduces the psycho visual redundancies then
coding redundancy is reduced by the use of optimal
code word having minimum average length. In JPEG
2000 standard of image compression DWT is used for
mapping, all other methods remaining same. They
analysed that DWT is more general and efficient than
DCT [11].
Rupinder Kaur et al. outline the comparison of
compression methods such as RLE (Run Length
Encoding), JPEG 2000, Wavelet Transform, SPIHT
(Set Partition in Hierarchical Trees) on the basis of
compression ratio and compression quality. The
comparison of these compression methods are
classified according to different medical images on the
basis of compression ratio and compression quality.
Their results illustrate that they can achieve higher
compression ratio for MRI, Ultrasound, CT scan and
iris images by SPIHT method. Furthermore they also
observe that for MRI image wavelet compression
method has higher compression ratio and has good
PSNR value for iris image than JPEG method.
Compression ratio is almost same of iris and MRI
image. For CT scan image JPEG compression method
outperforms the PSNR and degree of compression than
wavelet compression method [12].
Rehna et al. discussed different hybrid approaches
to image compression. Hybrid coding of Images, in
this context, deals with combining two or more
traditional approaches to enhance the individual
methods and achieve better quality reconstructed
images with higher compression ratio. They also
reviewed literature on hybrid techniques of image
coding over the past years. They did a detailed survey
on the existing and most significant hybrid methods of
Image coding. And every approach is found to have its
own merits and demerits. They also concluded that
good quality reconstructed images are obtained, even
at low bit rates when wavelet based hybrid methods
are applied to image coding. They concluded that the
existing conventional image compression technology
can be developed by combining high performance
coding algorithms in appropriate ways, such that the
advantages of both techniques are fully exploited [13].
IV. OBJECTIVE OF THE STUDY
The objective of this research study is to compare
the performance of three most widely used techniques
namely DCT, DWT and Hybrid DCT-DWT in terms
of Peak Signal to Noise Ratio (PSNR), Mean Square
Error (MSE) and Compression Ratio (CR).
V. EXPERIMENTAL RESULTS
To test the performance of Hybrid DCT-DWT with
standalone DCT and DWT, researchers implemented
the algorithms in Matlab. To conduct the research
study, various types of images are used namely,
natural images and medical images. Images are used to
verify the efficiency of Hybrid DCT-DWT algorithm
and are compared with standalone DCT and DWT
algorithm. Images in raw form are difficult to obtain
hence already compressed medical images downloaded
from “www.gastrolab.net” in JPEG format is
considered for analysis. The following figures show
the result of image compression by DCT, DWT and
Hybrid DCT-DWT respectively.
Figure 3: Loading of an original image
40 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma
www.ijorcs.org
Figure 4: DCT image after processing
Figure 5: DWT image after processing
A Comparative Study of Image Compression Algorithms 41
www.ijorcs.org
Figure 6: Hybrid DWT-DCT image after processing
Following figure 7 shows the PSNR values
(measured in decibel) of five compressed images for
average compression ratio of 96% by DWT, DCT and
Hybrid DCT-DWT techniques respectively.
Figure 7: PSNR of images for average compression ratio of
96%
Similarly, figure 8 shows the compression ratio of
images for average PSNR of 32 db, when compressed
by DWT, DCT and Hybrid DCT-DWT techniques.
Figure 8: CR of images for average PSNR of 32 db
VI. CONCLUSION AND FUTURE SCOPE
It is observed from the results that the Hybrid DCT-
DWT algorithm for image compression has better
performance as compared to the other standalone
techniques, namely DWT and DCT. The performance
comparison is done by considering the performance
criteria i.e. PSNR, MSE and Compression Ratio. By
comparing the performances of these techniques using
0
5
10
15
20
25
30
35
40
1 2 3 4 5
PSNR
(db)
Images
DWT DCT Hybrid
96.5
97
97.5
98
98.5
99
99.5
100
1 2 3 4 5
CR
(%)
Images
DWT DCT Hybrid
42 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma
www.ijorcs.org
the above mentioned parameters and JPEG image
format, we found the various deficiencies and
advantages of the techniques. We find out that DWT
technique is more efficient by quality wise than DCT
and by performance wise DCT is much better than
DWT. But, overall performance of Hybrid DCT-DWT
is much better than the others. On the basis of the
results of the performance comparison, in future, the
researchers will either be able to design a new
transform technique or will be able to remove some of
the deficiencies of these transforms.
VII. REFERENCES
[1] Anil Kumar Katharotiya, Swati Patel, Mahesh Goyani,
“Comparative Analysis between DCT & DWT
Techniques of Image Compression”. Journal of
Information Engineering and Applications, Vol. 1, No.
2, 2011.
[2] R. K. Rao, P. Yip, “Discrete Cosine Transform:
Algorithms, Advantages and Applications”. NY:
Academic, 1990.
[3] G. Joy, Z. Xiang, “Reducing false contours in quantized
color images”. Computer and Graphics, Elsevier, Vol.
20, No. 2, 1996 pp: 231–242. doi: doi:10.1016/0097-
8493(95)00098-4
[4] T.-H. Yu, S. K. Mitra, “Wavelet based hybrid image
coding scheme”. Proc. IEEE Int Circuits and Systems
Symp, Vol. 1, 1997, pp: 377–380. doi:
10.1109/ISCAS.1997.608746
[5] U. S. Mohammed, W. M. Abd-elhafiez, “Image coding
scheme based on object extraction and hybrid
transformation technique”. International Journal of
Engineering Science and Technology, Vol. 2, No. 5,
2010, pp: 1375–1383.
[6] R. Singh, V. Kumar, H. K. Verma, “DWT-DCT hybrid
scheme for medical image compression”. Journal of
Medical Engineering and Technology, Vol. 31, No. 2,
2007, pp: 109–122. doi: 10.1080/03091900500412650
[7] R. K. Rao, P. Yip, “Discrete Cosine Transform:
Algorithms, Advantages and Applications”. NY:
Academic, 1990.
[8] Suchitra Shrestha, “Hybrid DWT-DCT Algorithm for
Image and Video Compression applications”, A Thesis,
University of Saskatchewan, Electrical and Computer
Engineering Dept., Canada, 2010. doi:
10.1109/ISSPA.2010.5605474
[9] K. A. Wahid, M. A. Islam, S. S. Shimu, M. H. Lee, S.
Ko, “Hybrid architecture and VLSI implementation of
the Cosine-Fourier-Haar transforms”. Circuits, Systems
and Signal Processing, Vol. 29, No. 6, 2010, pp: 1193–
1205.
[10] Suchitra Shrestha Khan Wahid (2010). “Hybrid DWT-
DCT Algorithm for Biomedical Image and Video
Compression Applications”. Proceeding 10th
International Conference on Information Science,
Signal Processing and their Applications (ISSPA 2010).
[11] Swastik Das and Rasmi Ranjan Sethy, “Digital Image
Compression using Discrete Cosine Transform and
Discrete Wavelet Transform”, B.Tech. Dissertation,
NIT, Rourkela, 2009.
[12] Rupinder Kaur, Nisha Kaushal, “Comparative Analysis
of various Compression Methods for Medical Images”.
National Institute of Technical Teachers’ Training and
Research, Panjab University Chandigarh.
[13] Rehna V.J, Jeya Kumar M.K, “Hybrid Approach to
Image Coding: A Review”. International Journal of
Advanced Computer Science and Applications, Vol. 2,
No. 7, 2011.
How to cite
Kiran Bindu, Anita Ganpati, Aman Kumar Sharma, "A Comparative Study of Image Compression Algorithms".
International Journal of Research in Computer Science, 2 (5): pp. 37-42, September 2012.
doi:10.7815/ijorcs.25.2012.046

More Related Content

Similar to Comparative Study of Image Compression Algorithms Using DCT, DWT and Hybrid Techniques

Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME Publication
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compressionIAEME Publication
 
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...Associate Professor in VSB Coimbatore
 
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...ijcsa
 
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...Alexander Decker
 
Wavelet based Image Coding Schemes: A Recent Survey
Wavelet based Image Coding Schemes: A Recent Survey  Wavelet based Image Coding Schemes: A Recent Survey
Wavelet based Image Coding Schemes: A Recent Survey ijsc
 
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION cscpconf
 
International Journal on Soft Computing ( IJSC )
International Journal on Soft Computing ( IJSC )International Journal on Soft Computing ( IJSC )
International Journal on Soft Computing ( IJSC )ijsc
 
Intelligent Parallel Processing and Compound Image Compression
Intelligent Parallel Processing and Compound Image CompressionIntelligent Parallel Processing and Compound Image Compression
Intelligent Parallel Processing and Compound Image CompressionDR.P.S.JAGADEESH KUMAR
 
Iaetsd performance analysis of discrete cosine
Iaetsd performance analysis of discrete cosineIaetsd performance analysis of discrete cosine
Iaetsd performance analysis of discrete cosineIaetsd Iaetsd
 
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
 
Jpeg image compression using discrete cosine transform a survey
Jpeg image compression using discrete cosine transform   a surveyJpeg image compression using discrete cosine transform   a survey
Jpeg image compression using discrete cosine transform a surveyIJCSES Journal
 
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
 
A Comprehensive lossless modified compression in medical application on DICOM...
A Comprehensive lossless modified compression in medical application on DICOM...A Comprehensive lossless modified compression in medical application on DICOM...
A Comprehensive lossless modified compression in medical application on DICOM...IOSR Journals
 
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...INFOGAIN PUBLICATION
 
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...INFOGAIN PUBLICATION
 

Similar to Comparative Study of Image Compression Algorithms Using DCT, DWT and Hybrid Techniques (20)

Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Comparison and improvement of image compression
Comparison and improvement of image compressionComparison and improvement of image compression
Comparison and improvement of image compression
 
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...
Medical Image Compression using DCT with Entropy Encoding and Huffman on MRI ...
 
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...
REGION OF INTEREST BASED COMPRESSION OF MEDICAL IMAGE USING DISCRETE WAVELET ...
 
Jv2517361741
Jv2517361741Jv2517361741
Jv2517361741
 
Jv2517361741
Jv2517361741Jv2517361741
Jv2517361741
 
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...
11.0003www.iiste.org call for paper_d_discrete cosine transform for image com...
 
Wavelet based Image Coding Schemes: A Recent Survey
Wavelet based Image Coding Schemes: A Recent Survey  Wavelet based Image Coding Schemes: A Recent Survey
Wavelet based Image Coding Schemes: A Recent Survey
 
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION
REVIEW ON TRANSFORM BASED MEDICAL IMAGE COMPRESSION
 
International Journal on Soft Computing ( IJSC )
International Journal on Soft Computing ( IJSC )International Journal on Soft Computing ( IJSC )
International Journal on Soft Computing ( IJSC )
 
Intelligent Parallel Processing and Compound Image Compression
Intelligent Parallel Processing and Compound Image CompressionIntelligent Parallel Processing and Compound Image Compression
Intelligent Parallel Processing and Compound Image Compression
 
Iaetsd performance analysis of discrete cosine
Iaetsd performance analysis of discrete cosineIaetsd performance analysis of discrete cosine
Iaetsd performance analysis of discrete cosine
 
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...
 
Jpeg image compression using discrete cosine transform a survey
Jpeg image compression using discrete cosine transform   a surveyJpeg image compression using discrete cosine transform   a survey
Jpeg image compression using discrete cosine transform a survey
 
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...
 
A Comprehensive lossless modified compression in medical application on DICOM...
A Comprehensive lossless modified compression in medical application on DICOM...A Comprehensive lossless modified compression in medical application on DICOM...
A Comprehensive lossless modified compression in medical application on DICOM...
 
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
 
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
4 ijaems jun-2015-5-hybrid algorithmic approach for medical image compression...
 
Bg044357364
Bg044357364Bg044357364
Bg044357364
 

More from Kate Campbell

Writing Creative Nonfiction By Philip Gerard, Paperbac
Writing Creative Nonfiction By Philip Gerard, PaperbacWriting Creative Nonfiction By Philip Gerard, Paperbac
Writing Creative Nonfiction By Philip Gerard, PaperbacKate Campbell
 
Free Lined Writing Paper Printable - Prin
Free Lined Writing Paper Printable - PrinFree Lined Writing Paper Printable - Prin
Free Lined Writing Paper Printable - PrinKate Campbell
 
How To Cite APA In Text Citation How To Use Apa Format For Citation
How To Cite APA In Text Citation How To Use Apa Format For CitationHow To Cite APA In Text Citation How To Use Apa Format For Citation
How To Cite APA In Text Citation How To Use Apa Format For CitationKate Campbell
 
Sea Turtle Writing Paper
Sea Turtle Writing PaperSea Turtle Writing Paper
Sea Turtle Writing PaperKate Campbell
 
Heart-Shaped Printable Writing Page Valentines
Heart-Shaped Printable Writing Page ValentinesHeart-Shaped Printable Writing Page Valentines
Heart-Shaped Printable Writing Page ValentinesKate Campbell
 
High School Vs College
High School Vs CollegeHigh School Vs College
High School Vs CollegeKate Campbell
 
College Essay On Leadership
College Essay On LeadershipCollege Essay On Leadership
College Essay On LeadershipKate Campbell
 
Writing A Research Paper - A Step-By-Step Approach TeacherS Guide
Writing A Research Paper - A Step-By-Step Approach TeacherS GuideWriting A Research Paper - A Step-By-Step Approach TeacherS Guide
Writing A Research Paper - A Step-By-Step Approach TeacherS GuideKate Campbell
 
How To Write A Poem ChildrenS Book By Cecilia
How To Write A Poem ChildrenS Book By CeciliaHow To Write A Poem ChildrenS Book By Cecilia
How To Write A Poem ChildrenS Book By CeciliaKate Campbell
 
Easy Essay On Global Warming. G
Easy Essay On Global Warming. GEasy Essay On Global Warming. G
Easy Essay On Global Warming. GKate Campbell
 
Sample Conclusion Of A Research Paper What I
Sample Conclusion Of A Research Paper What ISample Conclusion Of A Research Paper What I
Sample Conclusion Of A Research Paper What IKate Campbell
 
Why I Wish To Attend Virginia Commonwealth University
Why I Wish To Attend Virginia Commonwealth UniversityWhy I Wish To Attend Virginia Commonwealth University
Why I Wish To Attend Virginia Commonwealth UniversityKate Campbell
 
Essay On My Teacher Is The
Essay On My Teacher Is TheEssay On My Teacher Is The
Essay On My Teacher Is TheKate Campbell
 
Chinese Character Practice Writing Paper
Chinese Character Practice Writing PaperChinese Character Practice Writing Paper
Chinese Character Practice Writing PaperKate Campbell
 
Hello Kitty Backgrounds, Hello Kitty Wallpaper, Sanr
Hello Kitty Backgrounds, Hello Kitty Wallpaper, SanrHello Kitty Backgrounds, Hello Kitty Wallpaper, Sanr
Hello Kitty Backgrounds, Hello Kitty Wallpaper, SanrKate Campbell
 
The Best IELTS Task 2 Writing Template - Magoos
The Best IELTS Task 2 Writing Template - MagoosThe Best IELTS Task 2 Writing Template - Magoos
The Best IELTS Task 2 Writing Template - MagoosKate Campbell
 
Rhetorical Analysis Essay Conclusion. Rhetorical Anal
Rhetorical Analysis Essay Conclusion. Rhetorical AnalRhetorical Analysis Essay Conclusion. Rhetorical Anal
Rhetorical Analysis Essay Conclusion. Rhetorical AnalKate Campbell
 
Handwriting Without Tears Paper Handwriting Withou
Handwriting Without Tears Paper Handwriting WithouHandwriting Without Tears Paper Handwriting Withou
Handwriting Without Tears Paper Handwriting WithouKate Campbell
 
Sample For Report Writing
Sample For Report WritingSample For Report Writing
Sample For Report WritingKate Campbell
 
Expert MBA Essay Writing Service Essay Writing, Writing Services
Expert MBA Essay Writing Service Essay Writing, Writing ServicesExpert MBA Essay Writing Service Essay Writing, Writing Services
Expert MBA Essay Writing Service Essay Writing, Writing ServicesKate Campbell
 

More from Kate Campbell (20)

Writing Creative Nonfiction By Philip Gerard, Paperbac
Writing Creative Nonfiction By Philip Gerard, PaperbacWriting Creative Nonfiction By Philip Gerard, Paperbac
Writing Creative Nonfiction By Philip Gerard, Paperbac
 
Free Lined Writing Paper Printable - Prin
Free Lined Writing Paper Printable - PrinFree Lined Writing Paper Printable - Prin
Free Lined Writing Paper Printable - Prin
 
How To Cite APA In Text Citation How To Use Apa Format For Citation
How To Cite APA In Text Citation How To Use Apa Format For CitationHow To Cite APA In Text Citation How To Use Apa Format For Citation
How To Cite APA In Text Citation How To Use Apa Format For Citation
 
Sea Turtle Writing Paper
Sea Turtle Writing PaperSea Turtle Writing Paper
Sea Turtle Writing Paper
 
Heart-Shaped Printable Writing Page Valentines
Heart-Shaped Printable Writing Page ValentinesHeart-Shaped Printable Writing Page Valentines
Heart-Shaped Printable Writing Page Valentines
 
High School Vs College
High School Vs CollegeHigh School Vs College
High School Vs College
 
College Essay On Leadership
College Essay On LeadershipCollege Essay On Leadership
College Essay On Leadership
 
Writing A Research Paper - A Step-By-Step Approach TeacherS Guide
Writing A Research Paper - A Step-By-Step Approach TeacherS GuideWriting A Research Paper - A Step-By-Step Approach TeacherS Guide
Writing A Research Paper - A Step-By-Step Approach TeacherS Guide
 
How To Write A Poem ChildrenS Book By Cecilia
How To Write A Poem ChildrenS Book By CeciliaHow To Write A Poem ChildrenS Book By Cecilia
How To Write A Poem ChildrenS Book By Cecilia
 
Easy Essay On Global Warming. G
Easy Essay On Global Warming. GEasy Essay On Global Warming. G
Easy Essay On Global Warming. G
 
Sample Conclusion Of A Research Paper What I
Sample Conclusion Of A Research Paper What ISample Conclusion Of A Research Paper What I
Sample Conclusion Of A Research Paper What I
 
Why I Wish To Attend Virginia Commonwealth University
Why I Wish To Attend Virginia Commonwealth UniversityWhy I Wish To Attend Virginia Commonwealth University
Why I Wish To Attend Virginia Commonwealth University
 
Essay On My Teacher Is The
Essay On My Teacher Is TheEssay On My Teacher Is The
Essay On My Teacher Is The
 
Chinese Character Practice Writing Paper
Chinese Character Practice Writing PaperChinese Character Practice Writing Paper
Chinese Character Practice Writing Paper
 
Hello Kitty Backgrounds, Hello Kitty Wallpaper, Sanr
Hello Kitty Backgrounds, Hello Kitty Wallpaper, SanrHello Kitty Backgrounds, Hello Kitty Wallpaper, Sanr
Hello Kitty Backgrounds, Hello Kitty Wallpaper, Sanr
 
The Best IELTS Task 2 Writing Template - Magoos
The Best IELTS Task 2 Writing Template - MagoosThe Best IELTS Task 2 Writing Template - Magoos
The Best IELTS Task 2 Writing Template - Magoos
 
Rhetorical Analysis Essay Conclusion. Rhetorical Anal
Rhetorical Analysis Essay Conclusion. Rhetorical AnalRhetorical Analysis Essay Conclusion. Rhetorical Anal
Rhetorical Analysis Essay Conclusion. Rhetorical Anal
 
Handwriting Without Tears Paper Handwriting Withou
Handwriting Without Tears Paper Handwriting WithouHandwriting Without Tears Paper Handwriting Withou
Handwriting Without Tears Paper Handwriting Withou
 
Sample For Report Writing
Sample For Report WritingSample For Report Writing
Sample For Report Writing
 
Expert MBA Essay Writing Service Essay Writing, Writing Services
Expert MBA Essay Writing Service Essay Writing, Writing ServicesExpert MBA Essay Writing Service Essay Writing, Writing Services
Expert MBA Essay Writing Service Essay Writing, Writing Services
 

Recently uploaded

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........LeaCamillePacle
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.arsicmarija21
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfSpandanaRallapalli
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxLigayaBacuel1
 

Recently uploaded (20)

Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.AmericanHighSchoolsprezentacijaoskolama.
AmericanHighSchoolsprezentacijaoskolama.
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
ACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdfACC 2024 Chronicles. Cardiology. Exam.pdf
ACC 2024 Chronicles. Cardiology. Exam.pdf
 
Planning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptxPlanning a health career 4th Quarter.pptx
Planning a health career 4th Quarter.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 

Comparative Study of Image Compression Algorithms Using DCT, DWT and Hybrid Techniques

  • 1. International Journal of Research in Computer Science eISSN 2249-8265 Volume 2 Issue 5 (2012) pp. 37-42 www.ijorcs.org, A Unit of White Globe Publications doi: 10.7815/ijorcs.25.2012.046 www.ijorcs.org 1F1F A COMPARATIVE STUDY OF IMAGE COMPRESSION ALGORITHMS Kiran Bindu1 , Anita Ganpati2 , Aman Kumar Sharma3 1 Research Scholar, Himachal Pradesh University, Shimla Email: sharma.kiran95@gmail.com 2 Assistant Professor, Himachal Pradesh University, Shimla Email: anitaganpati@gmail.com 3 Associate Professor, Himachal Pradesh University, Shimla Email: sharmaas1@gmail.com Abstract: Digital images in their uncompressed form require an enormous amount of storage capacity. Such uncompressed data needs large transmission bandwidth for the transmission over the network. Discrete Cosine Transform (DCT) is one of the widely used image compression method and the Discrete Wavelet Transform (DWT) provides substantial improvements in the quality of picture because of multi resolution nature. Image compression reduces the storage space of image and also maintains the quality information of the image. In this study the performance of three most widely used techniques namely DCT, DWT and Hybrid DCT-DWT are discussed for image compression and their performance is evaluated in terms of Peak Signal to Noise Ratio (PSNR), Mean Square Error (MSE) and Compression Ratio (CR). The experimental results obtained from the study shows that the Hybrid DCT- DWT technique for image compression has in general a better performance than individual DCT or DWT. Keywords: Compression, DCT, DWT, Hybrid, Image Compression. I. INTRODUCTION Compression is a process by which the description of computerized information is modified so that the capacity required to store or the bit-rate required to transmit it is reduced. Compression is carried out for the following reasons as to reduce, the storage requirement, processing time and transmission duration. Image compression is minimizing the size in bytes of a graphics file without degrading the quality of image. Many applications need large number of images for solving problems. Digital images can be stored on disk, and storing space of image is important. Because less memory space means less time required for processing of image. Image Compression means reducing the amount of data required to represent a digital image [1]. The joint photographic expert group (JPEG) was developed in 1992, based on DCT. It has been one of the most widely used compression method [2]. The hardware implementation for the JPEG using the DCT is simple; the noticeable “blocking artifacts” across the block boundaries cannot be neglected at higher compression ratio. In images having gradually shaded areas, the quality of reconstructed images is degraded by “false Contouring” [3]. In DWT based coding, has ability to display the images at different resolution and also achieves higher compression ratio. The Forward Walsh Hadamard Transform (FWHT) is another option for image and video compression applications which requires less computation as compared to DWT and DCT algorithms. In order to benefit from the respective strengths of individual popular coding scheme, a new scheme, known as hybrid algorithm, has been developed where two transform techniques are implemented together. Yu and Mitra in [4] have introduced Hybrid transform coding technique. Similarly Usama presents a scalable Hybrid scheme for image coding which combines both the wavelets and Fourier transform [5]. In [6], Singh et al. have applied hybrid algorithm to medical images that uses 5 - level DWT decomposition. Because of higher level (5 levels DWT) the scheme requires large computational resources and is not suitable for use in modern coding standards. In this section, DCT, DWT and Hybrid DCT-DWT techniques are discussed. A. Discrete Cosine Transform A DCT represents the input data points in the form of sum of cosine functions that are oscillating at different frequencies and magnitudes. There are mainly two types of DCT: one dimensional DCT and two dimensional DCT. The 2D DCT for an N×N input sequence can be defined as follows [7]: ����(�, �) = 1 √2n �(�)�(�) � �−1 �=0 � �(�, �) �−1 �=0 . cos � 2�+1 2� ��� cos � 2�+1 2� ��� (1)
  • 2. 38 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma www.ijorcs.org Where B (u) = � 1 √2 �� � = 0, 1 if u > 0 M (x,y) is the input data of size x×y. The input image is first divided into 8×8 blocks; then the 8-point 2-D DCT is performed. The DCT coefficients are then quantized using an 8×8 quantization table. The quantization is achieved by dividing each elements of the transformed original data matrix by corresponding element in the quantization matrix Q and rounding to the nearest integer value as shown in equation (2):- ������(�, �) = ����� � ����(�,�) �(�,�) � (2) After this, compression is achieved by applying appropriate scaling factor. Then in order to reconstruct the data, rescaling and de-quantization is performed. The de-quantized matrix is then transformed back using the inverse – DCT. The whole procedure is shown in Fig. 1. Figure 1: Block diagram of the JPEG-based DCT scheme B. Discrete Wavelet Transform In DWT, an image is represented by sum of wavelet functions, which are known as wavelets, having different location and scale. Discrete Wavelet Transform represents the data into a set of high pass (detail) and low pass (approximate) coefficients. Image is first divided into blocks of 32×32. Then each block is passed through two filters: in this the first level, decomposition is performed to decompose the input data into an approximation and detail coefficients. After obtaining the transformed matrix, the detail and approximate coefficients are separated as LL, HL, LH and HH coefficients. Then all the coefficients are discarded, except the LL coefficients that are transformed into the second level. These coefficients are then passed through a constant scaling factor to achieve the desired compression ratio. Following fig. 2 is an illustration of DWT. Here, x[n] is the input signal, d[n] is the high frequency component, and a[n] is the low frequency component. For data reconstruction, the coefficients are rescaled and padded with zeros, and passed through the wavelet filters. We have used the Daubechies filters coefficients in this study [9]: Figure 2: Block diagram of the 2- level DWT scheme C. Hybrid DWT-DCT Algorithm The objective of the hybrid DWT-DCT algorithm is to exploit the properties of both DWT and DCT. By giving consideration to the type of application, original image of size 256×256 or any resolution, provided divisible by 32, is first divided into blocks of N×N. Then each block is decomposed using 2-D DWT. Now low frequency coefficients (LL) are passed to the next stage where the high frequency coefficients (HL, LH, and HH) are discarded. Then the passed LL components are further decomposed using another 2_D DWT. The 8-point DCT is applied to the DWT Coefficients. To achieve a higher compression, majority of high coefficients can be discarded. To achieve more compression a JPEG like quantization is performed. In this stage, many of the higher frequency components are rounded to zero. The quantized coefficients are further scaled using scaling factor (SF). Then the image is reconstructed by following the inverse procedure. During inverse DWT, zero values are padded in place of detailed coefficients [10]. II. PERFORMANCE EVALUATION PARAMETERS Two popular measures of performance evaluation are, Peak Signal to noise Ratio (PSNR) and Compression Ratio (CR). Which are described below: A. PSNR It is the most popular tool for the measurement of the compressed image and video. It is simple to compute. The PSNR in decibel is evaluated as follows [15]: PSNR= 10 log10 �2 MSE (3) Where, I is allowable image pixel intensity level. MSE is mean squared error. It is another performance evaluation parameter of Image Compression Algorithms. It is an important evaluation parameter for measuring the quality of compressed image. It compares the original data with reconstructed data and then results the level of distortion. The MSE between the original data and reconstructed data is:
  • 3. A Comparative Study of Image Compression Algorithms 39 www.ijorcs.org MSE = 1 �� ∑� �=1 ∑ (A�,� − B�,�)2 � �=1 (4) Where, A = Original image of size M×N B = Reconstructed image of size M×N B. CR It is a measure of the reduction of detail coefficient of data. CR = Discarded Data Original Data In the process of image compression, it is important to know how much important coefficient one can discard from input data in order to preserve critical information of the original data. III. LITERATURE SURVEY Anil Kumar et al. in their paper two image compression techniques namely, DCT and DWT are simulated. They concluded that DWT technique is much efficient than DCT in quality and efficiency wise but in performance time wise DCT is better than DWT [1]. Swastik Das et al. presented DWT and DCT transformations with their working. They concluded that image compression is of prime importance in Real time applications like video conferencing where data are transmitted through a channel. Using JPEG standard, DCT is used for mapping which reduces the inter pixel redundancies followed by quantization which reduces the psycho visual redundancies then coding redundancy is reduced by the use of optimal code word having minimum average length. In JPEG 2000 standard of image compression DWT is used for mapping, all other methods remaining same. They analysed that DWT is more general and efficient than DCT [11]. Rupinder Kaur et al. outline the comparison of compression methods such as RLE (Run Length Encoding), JPEG 2000, Wavelet Transform, SPIHT (Set Partition in Hierarchical Trees) on the basis of compression ratio and compression quality. The comparison of these compression methods are classified according to different medical images on the basis of compression ratio and compression quality. Their results illustrate that they can achieve higher compression ratio for MRI, Ultrasound, CT scan and iris images by SPIHT method. Furthermore they also observe that for MRI image wavelet compression method has higher compression ratio and has good PSNR value for iris image than JPEG method. Compression ratio is almost same of iris and MRI image. For CT scan image JPEG compression method outperforms the PSNR and degree of compression than wavelet compression method [12]. Rehna et al. discussed different hybrid approaches to image compression. Hybrid coding of Images, in this context, deals with combining two or more traditional approaches to enhance the individual methods and achieve better quality reconstructed images with higher compression ratio. They also reviewed literature on hybrid techniques of image coding over the past years. They did a detailed survey on the existing and most significant hybrid methods of Image coding. And every approach is found to have its own merits and demerits. They also concluded that good quality reconstructed images are obtained, even at low bit rates when wavelet based hybrid methods are applied to image coding. They concluded that the existing conventional image compression technology can be developed by combining high performance coding algorithms in appropriate ways, such that the advantages of both techniques are fully exploited [13]. IV. OBJECTIVE OF THE STUDY The objective of this research study is to compare the performance of three most widely used techniques namely DCT, DWT and Hybrid DCT-DWT in terms of Peak Signal to Noise Ratio (PSNR), Mean Square Error (MSE) and Compression Ratio (CR). V. EXPERIMENTAL RESULTS To test the performance of Hybrid DCT-DWT with standalone DCT and DWT, researchers implemented the algorithms in Matlab. To conduct the research study, various types of images are used namely, natural images and medical images. Images are used to verify the efficiency of Hybrid DCT-DWT algorithm and are compared with standalone DCT and DWT algorithm. Images in raw form are difficult to obtain hence already compressed medical images downloaded from “www.gastrolab.net” in JPEG format is considered for analysis. The following figures show the result of image compression by DCT, DWT and Hybrid DCT-DWT respectively. Figure 3: Loading of an original image
  • 4. 40 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma www.ijorcs.org Figure 4: DCT image after processing Figure 5: DWT image after processing
  • 5. A Comparative Study of Image Compression Algorithms 41 www.ijorcs.org Figure 6: Hybrid DWT-DCT image after processing Following figure 7 shows the PSNR values (measured in decibel) of five compressed images for average compression ratio of 96% by DWT, DCT and Hybrid DCT-DWT techniques respectively. Figure 7: PSNR of images for average compression ratio of 96% Similarly, figure 8 shows the compression ratio of images for average PSNR of 32 db, when compressed by DWT, DCT and Hybrid DCT-DWT techniques. Figure 8: CR of images for average PSNR of 32 db VI. CONCLUSION AND FUTURE SCOPE It is observed from the results that the Hybrid DCT- DWT algorithm for image compression has better performance as compared to the other standalone techniques, namely DWT and DCT. The performance comparison is done by considering the performance criteria i.e. PSNR, MSE and Compression Ratio. By comparing the performances of these techniques using 0 5 10 15 20 25 30 35 40 1 2 3 4 5 PSNR (db) Images DWT DCT Hybrid 96.5 97 97.5 98 98.5 99 99.5 100 1 2 3 4 5 CR (%) Images DWT DCT Hybrid
  • 6. 42 Kiran Bindu, Anita Ganpati, Aman Kumar Sharma www.ijorcs.org the above mentioned parameters and JPEG image format, we found the various deficiencies and advantages of the techniques. We find out that DWT technique is more efficient by quality wise than DCT and by performance wise DCT is much better than DWT. But, overall performance of Hybrid DCT-DWT is much better than the others. On the basis of the results of the performance comparison, in future, the researchers will either be able to design a new transform technique or will be able to remove some of the deficiencies of these transforms. VII. REFERENCES [1] Anil Kumar Katharotiya, Swati Patel, Mahesh Goyani, “Comparative Analysis between DCT & DWT Techniques of Image Compression”. Journal of Information Engineering and Applications, Vol. 1, No. 2, 2011. [2] R. K. Rao, P. Yip, “Discrete Cosine Transform: Algorithms, Advantages and Applications”. NY: Academic, 1990. [3] G. Joy, Z. Xiang, “Reducing false contours in quantized color images”. Computer and Graphics, Elsevier, Vol. 20, No. 2, 1996 pp: 231–242. doi: doi:10.1016/0097- 8493(95)00098-4 [4] T.-H. Yu, S. K. Mitra, “Wavelet based hybrid image coding scheme”. Proc. IEEE Int Circuits and Systems Symp, Vol. 1, 1997, pp: 377–380. doi: 10.1109/ISCAS.1997.608746 [5] U. S. Mohammed, W. M. Abd-elhafiez, “Image coding scheme based on object extraction and hybrid transformation technique”. International Journal of Engineering Science and Technology, Vol. 2, No. 5, 2010, pp: 1375–1383. [6] R. Singh, V. Kumar, H. K. Verma, “DWT-DCT hybrid scheme for medical image compression”. Journal of Medical Engineering and Technology, Vol. 31, No. 2, 2007, pp: 109–122. doi: 10.1080/03091900500412650 [7] R. K. Rao, P. Yip, “Discrete Cosine Transform: Algorithms, Advantages and Applications”. NY: Academic, 1990. [8] Suchitra Shrestha, “Hybrid DWT-DCT Algorithm for Image and Video Compression applications”, A Thesis, University of Saskatchewan, Electrical and Computer Engineering Dept., Canada, 2010. doi: 10.1109/ISSPA.2010.5605474 [9] K. A. Wahid, M. A. Islam, S. S. Shimu, M. H. Lee, S. Ko, “Hybrid architecture and VLSI implementation of the Cosine-Fourier-Haar transforms”. Circuits, Systems and Signal Processing, Vol. 29, No. 6, 2010, pp: 1193– 1205. [10] Suchitra Shrestha Khan Wahid (2010). “Hybrid DWT- DCT Algorithm for Biomedical Image and Video Compression Applications”. Proceeding 10th International Conference on Information Science, Signal Processing and their Applications (ISSPA 2010). [11] Swastik Das and Rasmi Ranjan Sethy, “Digital Image Compression using Discrete Cosine Transform and Discrete Wavelet Transform”, B.Tech. Dissertation, NIT, Rourkela, 2009. [12] Rupinder Kaur, Nisha Kaushal, “Comparative Analysis of various Compression Methods for Medical Images”. National Institute of Technical Teachers’ Training and Research, Panjab University Chandigarh. [13] Rehna V.J, Jeya Kumar M.K, “Hybrid Approach to Image Coding: A Review”. International Journal of Advanced Computer Science and Applications, Vol. 2, No. 7, 2011. How to cite Kiran Bindu, Anita Ganpati, Aman Kumar Sharma, "A Comparative Study of Image Compression Algorithms". International Journal of Research in Computer Science, 2 (5): pp. 37-42, September 2012. doi:10.7815/ijorcs.25.2012.046