0% found this document useful (0 votes)
8 views

Comparative Analysis of Image Interpolation Algorithms

Uploaded by

Duy Hùng Đào
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Comparative Analysis of Image Interpolation Algorithms

Uploaded by

Duy Hùng Đào
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

See discussions, stats, and author profiles for this publication at: https://www.researchgate.

net/publication/294738469

A Comparative Analysis of Image Interpolation Algorithms

Article in IJARCCE · January 2016


DOI: 10.17148/IJARCCE.2016.5107

CITATIONS READS

59 8,423

2 authors:

Pankaj Parsania Paresh Virparia


Anand Agricultural University Sardar Patel University
10 PUBLICATIONS 106 CITATIONS 31 PUBLICATIONS 187 CITATIONS

SEE PROFILE SEE PROFILE

All content following this page was uploaded by Pankaj Parsania on 29 August 2018.

The user has requested enhancement of the downloaded file.


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

A Comparative Analysis of Image Interpolation


Algorithms
Mr. Pankaj S. Parsania1, Dr. Paresh V. Virparia2
Research Scholar, Department of Computer Science, Sardar Patel University, Vallabh Vidyanagar, Gujarat, India 1
Director, Department of Computer Science, Sardar Patel University, Vallabh Vidyanagar, Gujarat, India 2

Abstract: Image interpolation is the most basic requirement for many image processing task such as computer
graphics, gaming, medical image processing, virtualization, camera surveillance and quality control. Image
interpolation is a technique used in resizing images. To resize an image, every pixel in the new image must be mapped
back to a location in the old image in order to calculate a value of new pixel. There are many algorithms available for
determining new value of the pixel, most of which involve some form of interpolation among the nearest pixels in the
old image. In this paper, we used Nearest-neighbor, Bilinear, Bicubic, Bicubic B-spline, Catmull-Rom, Mitchell-
Netravali and Lanzcos of order three algorithms for image interpolation. Each algorithms generates varies artifact such
as aliasing, blurring and moiré. This paper presents, quality and computational time consideration of images while
using these interpolation algorithms.

Keywords: Nearest-neighbor, Bilinear, Bicubic, Bicubic B-spline, Catmull-Rom, Mitchell-Netravali, Lanzcos.

I. INTRODUCTION
Image interpolation is a term used for image processing, Interpolation using Shape-Preserving Approach [4],
but is often used with different terminologies in literature classification and stitching [5], grid based image
like image scaling, image resampling and image resize. interpolation [6], auto-regression based method [7], fuzzy
There are many algorithms currently in use for the resizing area-based scaling [8] and interpolation used with
of digital images. Most of them attempt to reproduce a Artificial Neural Networks [9] are some of the novel
visually attractive replica of the original. Now a days the techniques used for interpolating images. Although these
technology for smaller display area for viewing on algorithms perform well, they require a lengthy processing
varieties of device, image size is generally down sampled time due to their complexity. This is intolerable for real-
(or sub sampled or decreased) in order to produce time image scaling. Hence, these algorithms have not been
thumbnails. Up sampling an image (or enlarging or considered for the comparative analysis in this paper.
interpolating) is most common for viewing on large In this paper, various interpolation algorithms are used for
display size monitor or television [1]. While enlarging an image interpolation with translation parameters in x and y
image it is not possible to discover any more information directions. The result obtained is presented and
in the image than already exists, and image quality summarized with quality and time complexity parameters.
inevitably suffers. However, there are several methods of
increasing the number of pixels that an image contains, II. INTERPOLATION ALGORITHMS
which can be created out of original pixels. These methods
are often termed as image interpolation algorithms. Digital image interpolation is the process of generating a
continuous intensity surface from discrete image data
There are various algorithms currently in use for image samples. There are many different types of interpolation
interpolation of digital images. Some of the common methods, each resulting in a different look to final image.
interpolation algorithms are the nearest neighbor, bilinear, Thus, it is best if the quality, or visible distinction for each
and bicubic [2]. Other interpolation algorithms such as pixel, is retained throughout the interpolation function
Catmull-Rom and the Mitchell-Netravali generates better [10].
image quality. Lanczos algorithm utilizes 2- lobed, 3-
lobed or 4-lobes sinc window function to implement Generally, almost every geometric transformation like
interpolation [3]. These algorithms uses higher order translating, rotating, scaling, and warping requires
interpolators which take more surrounding pixels into interpolation to be performed on an image. Such
consideration, and thus also require more computation transformations are essential to any commercial digital
time, and retain the most of image details after an image processing software. The perceived quality of the
interpolation. They are extremely useful when the image interpolated images is affected by several issues such as
requires multiple translation, rotations or distortions in sharpness of edges, freedom from artifacts and
separate steps. However, for single-step enlargements or reconstruction of high frequency details etc. [11]
image operations, these higher- order algorithms provide Interpolation function is performed by convolution
diminishing visual improvement and processing time operation which involves a large number of addition and
increases significantly. multiplication operations. Hence, a trade-off is required

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 29


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

between computation complexity and quality of the next point on the spline. The results are similar to ones
interpolated image [12]. Various interpolation algorithms produced by bicubic interpolation with regards to
discussed in this paper are Nearest-neighbor, Bilinear, sharpness, But the Catmull-Rom reconstruction is clearly
Bicubic, Cubic B-spline, Catmull-Rom, Mitchell-Netravali superior in smooth signal region [3].
and Lanzcos.
F. Mitchell-Netravali approximation
A. Nearest Neighbour This function is the weighted sum of Catmull-Rom spline
This is the simplest and requires the least processing time and cubic B-spline. This method is compromise,
of all the interpolation algorithms. Nearest neighbor producing little overshoot, high edge sharpness, and good
selects the value of the nearest pixel by rounding the signal continuity in smooth region. Since the resulting
coordinates of the desired interpolation point. Using this function does not pass through the original sample points,
method one finds the closest corresponding pixel in the the Mitchell-Netravali method is an approximation and not
source (original) image for each pixel in the destination an interpolation [3].
image [13]. New pixels are made the same as others close-
G. Lanczos interpolation
by. The pixels or dots of color are duplicated to create new
Lanczos interpolation function is a mathematical formula
pixels as the image grows. It creates pixilation or edges
used to smoothly interpolate the value of a digital
that break up curves into steps or jagged edges. This form
image between its samples. It maps each sample of the
of interpolation suffers from normally unacceptable effects
given image to a translated and scaled copy of the Lanczos
for both enlarging and reduction of images [10].
kernel, which is a sinc function windowed by the central
B. Bilinear Interpolation hump of a dilated sinc function. The sum of these
Bilinear interpolation takes a weighted average of the four translated and scaled kernels is then evaluated at the
neighborhood pixels to calculate its final interpolated desired pixel [16]. Lanczos interpolation has the best
value. The result is much smoother image than the original properties in terms of detail preservation and minimal
image. When all known pixel distances are equal, then the generation of aliasing artifacts for geometric
interpolated value is simply their sum divided by four. transformations not involving strong down sampling. The
This technique performs interpolation in both directions, number of neighboring pixels for consideration varies as
horizontal and vertical. This technique gives better result the order of the kernel. If the order is chosen to be 2, 16
than nearest neighbor interpolation and take less pixels are considered while if the order is 3, 36
computation time compare to bicubic interpolation [14]. neighboring pixels are utilized for interpolation. However
the higher order Lanczos interpolation require high
C. Bicubic Interpolation
computational time, which make them not suitable for
Bicubic goes one step beyond bilinear by considering the
many commercial software [12].
closest 4x4 neighborhood of known pixels for a total of 16
pixels. Since these are at various distances from the
III. RESULT ANALYSIS
unknown pixel, closer pixels are given a higher weighting
in the calculation. Bicubic produces noticeably sharper All seven algorithms are implemented in java language.
images than the previous two methods, and is perhaps the ImageJ 1.50b with java 1.6.0_24 (64bit) an open source
ideal combination of processing time and output quality. java software developed by Wayne Rasband at National
For this reason it is a standard in many image editing Institute for Health (NIH) is used for image read, write and
programs including Adobe Photoshop, printer drivers and display. The software installed on a standard Window 8
in-camera interpolation [15]. Enterprise machine having Intel® Core i3 CPU @ 3.07
Ghz and installed DDR3 RAM of 4GB, is used for
D. Cubic B-Spline compilation and execution of java programs. Two input
As bicubic interpolation, the cubic B-spline interpolation test image of size 256x256 (Lena and Peppers) and
algorithm also interpolates from the nearest sixteen source corresponding interpolated output images of size 256x256
pixels. However, this algorithm uses B-spline interpolating produced by seven implementations are shown in Fig. 1.
functions instead of cubic splines, which in general yield During the interpolation of different images, translation
quite smooth results. It performs a convolution with a two- parameters (in pixel) dx = 10.5 and dy = -3.25 is used in x
dimensional non separable filter, so its complexity is and y direction respectively. As the images are translated,
increased. In contrast, bicubic interpolation uses a in this paper for display, we cropped and scaled images
convolution with a separable filter, and hence its size to 256x256 pixel resolution.
complexity is less. Despite of this performance difference, While dealing with different algorithms it generates
bicubic B-spline has interesting characteristics of number of artifact such as aliasing, moiré and blurring.
smoothness that make it a good option in some cases [3]. Nearest neighbour interpolation produces a high aliasing
E. Catmull-Rom Interpolation effect resulting in jagged edges. Bilinear interpolation
Catmull-Rom is a local interpolating spline developed for reduces the aliasing effect but causes a moderate blurring
computer graphics purposes. Its initial use was in design of the edges. Bicubic and Cubic B-spline interpolation
of curves and surfaces, and has recently been used in produces a moderate aliasing, blurring and an edge halo
several applications. Catmull-Rom splines are a family of effect. Catmull-Rom interpolation is superior in smooth
cubic interpolating splines formulated such that the signal region and provides the sharpness as Bicubic and
tangent at each point is calculated using the previous and Cubic B-spline algorithms. Mitchell-Netravali provides

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 30


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

high edge sharpness and good signal continuity in smooth Table1: Time complexity of interpolation algorithms
region. Lanczos interpolation delivers an image quality Interpolation Algorithm Time in Second(s)
very similar to that of Bicubic, but also utilizes the sine
function repeatedly which itself requires a large number of Nearest neighbour 0.081
addition and multiplication operations according to Taylor
Bilinear 0.140
series approximation.
Comparison of time complexity of all seven image Bicubic 0.169
interpolation algorithms is shown in Table 1 for Lena Cubic B-Spline 0.174
image. Computationally, nearest neighbour interpolation is
the least intensive as it considers only one pixel for Cutmull-Rom 0.156
interpolation and Lanczos order 3 uses the maximum time Mitchell-Netravali 0.172
of all the seven algorithms due to more number of pixel
consideration Lanczos order 3 1.094

(a) (a)

(b) (b)

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 31


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

(c) (c)

(d) (d)

(e) (e)

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 32


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

(f) (f)

(g) (g)

(h) (h)

Fig. 1 (a) Input image (Lena and Peppers), (b) Nearest-neighbour, (c) Bilinear, (d) Bicubic, (e) Cubic B-spline,
(f) Catmull-Rom, (g) Mitchell-Netravali, (h) Lanczos order 3

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 33


ISSN (Online) 2278-1021
IJARCCE ISSN (Print) 2319 5940

International Journal of Advanced Research in Computer and Communication Engineering


Vol. 5, Issue 1, January 2016

IV. CONCLUSION [12] C. Singh, S. Singh, R. Saini and A. K Saini, “A Comparative


Analysis of Image Scaling Algorithms”. International Journal of
Image interpolation has become a fundamental processing Image, Graphics and Signal Processing, pp.55-62, April. 2013
task and plays an important role in many computer [13] P. Miklo., “Image interpolation techniques”, In 2nd Siberian-
graphics applications. Although there are myriad of Hungarian Joint Symposium on Intelligent Systems. Oct. 2004
Prajapati, S. Naik and S. Mehta, “Evaluation of Different Image
interpolation algorithms available in literature, not all of [14] A. Interpolation Algorithms”, International Journal of Computer
them are suitable for implementing real-time image Applications, Vol.58, Issue.1, pp. 6-12, Jan. 2012.
applications. In this paper, we discussed the main non- [15] P. S. Parsania and P. V. Virparia, “A Review: Image Interpolation
adaptive image interpolation algorithms suitable for real- Techniques for Image Scaling”, International Journal of Innovative
Research in Computer and Communication Engineering, Vol. 2,
time applications. A comparative analysis of seven image Issue 12, pp. 7409-7413, Dec. 2014
interpolation algorithms is presented based on the results [16] (2016) Wikipedia website. [Online]. Available:
of their software implementation. Of the seven image http://en.wikipedia.org/wiki/Lanczos_resampling
interpolation algorithms evaluated, the Catmull-Rom and
Mitchell-Netravali approximation algorithms offer the best BIOGRAPHIES
result between image quality and computational Pankaj S. Parsania, received MSc IT in
complexity for real-time image interpolation applications. year 2004 and in pursuit for Ph.D. from
Bicubic and Cubic B-spline generates interesting result, Department of Computer Science, Sardar
Bicubic uses less time complexity compared to Catmull- Patel University, Vallabh Vidyanagar,
Rom and Mitchell-Netravali. Lanczos order 3 is using Gujarat, India. Currently he is working as
maximum time computational complexity, hence results an Assistant Professor at College of
evaluated are not at par with the above discussed FPTBE, AAU, Anand, Gujarat, India.
algorithms. His area of interests are Digital Image Processing, Data
Structure, Java, and Database Management System.
ACKNOWLEDGEMENT
The authors express their deep sense of gratitude to Paresh V. Virparia, joined the
Wilhelm Burger and his team for helping the Department of Computer Science, Sardar
implementation of java codes on ImageJ 1.50b for our Patel University, Vallabh Vidyanagar in
research paper. We extend our sincere acknowledgements 1989 and currently working as a Director
to all the faculty members of our institutes and other and Professor. 7 research scholars have
contributors for providing us the technical assistance for completed their Ph.D. (Computer
carrying out the study. Science) under his guidance. Currently, 7 more students
are doing their Ph. D. under the guidance of him. His
REFERENCES publications include 40 papers in International Journal, 16
[1] D. Vaquero, M. Turk, K. Pulli, M. Tico, and N. Gelfand, “A survey papers in National Journals and 47 papers in national
of image retargeting techniques”, SPIE Optical Engineering+ conferences/seminars. His research interests include the
Applications, pp. 779814-779814, Aug. 2010. areas of Computer Simulation & Modeling, Digital Image
[2] R. C. Gonzalez, Digital image processing. Pearson Education India; Processing, Data Mining, Networking and IT enabled
2009.
[3] W. Burger, and M. J. Burge, Digital image processing: an services. He is an editor and editorial review board
algorithmic introduction using Java, 1st ed., Springer, 2009. member in several journals/magazines.
[4] G. X. Zhang, M.M. Cheng, S.M. Hu, and R.R. Martin, “A Shape-
Preserving Approach to Image Resize,” Pacific Graphics 2009, vol.
28, no. 7, Sept. 2009.
[5] N. Muelle and T. K. Nguyen, “Image interpolation using
classification and stitching”, in Proc. of the IEEE International
Conference on Image Processing, pp. 901-904.
[6] H.B. Kekre, T Sarod and S Thepade, “Grid based image scaling
technique,” International Journal Of Computer Science And
Applications., vol. 1, no. 2, Aug. 2008.
[7] W. Zhe, Z. Jiefu and Z. Mengchu, “A Fast Autoregression Based
Image Interpolation Method”, in Proc. of the IEEE International
Conference on Networking, Sensing and Control, pp.1400-1404,
2008.
[8] A. Amanatiadis, L. Andreadis and K. Konstatinidis, “Fuzzy Area-
Based Image Scaling”, in Proc. of the IEEE Instrumentation and
Measurement Technology Conference, pp. 1-6, 2007.
[9] F. Liang and K. Xie, “An Image Interpolation Scheme combined
with Artificial Neural Network”, In Proc. of the Third International
Conference on Natural Computation, pp. 99-102, 2007.
[10] V. Patel and K. Mistree, “A Review on Different Image
Interpolation Techniques for Image Enhancement”, International
Journal of Emerging Technology and Advanced Engineering, Vol.
3, pp. 129-13, Dec. 2013.
[11] S.D. Ruikar and D.D. Doye, “Image Denoising using Tri Nonlinear
and Nearest Neighbour Interpolation with Wavelet Transform”,
International Journal of Information Technology and Computer
Science, Vol.4, pp. 36-44, Aug.2012.

Copyright to IJARCCE DOI 10.17148/IJARCCE.2016.5107 34

View publication stats

You might also like