SlideShare a Scribd company logo
A NOVEL FPGA IMPLEMENTATION OF IMAGE SCALING
PROCESSOR USING BILINEAR INTERPOLATION
S.Hariprasath1
, Dr.T.N.Prabakar2
Department of Electronics and Communication Engineering
1
Saranathan College of Engineering, 2
Oxford Engineering College
Trichy, Tamil Nadu, India
shpece@gmail.com,tnprabakar@gmail.com
Abstract — Image scaling is an important task in
most of the machine vision applications like pattern
recognition, pattern understanding etc... Most of the
applications require either scale up of the Region of
Interest (ROI) or scale down of other parts of the
input image before feature extraction. The
phenomenon under investigation is expressed at
different resolutions of the description. The efficient
implementation of an image scaling algorithm
which is memory efficient and consumes less
operational cycles motivates our proposed method
in this paper. The proposed method consists of four
modules namely sharpening filter, clamp filter, an
edge detector and bilinear interpolator. The bilinear
interpolation algorithm is chosen as scale up or
scale down algorithm due to features like less
complexity, high quality output and less operational
cycles consumption in hardware compared other
methods like cubic interpolation, nearest
neighbourhood interpolation etc..The proposed
architecture is implemented as RTL description
using Verilog language. Xilinx 9.2i is used as
synthesis tool and the functional simulation is
verified using Modelsim10.3b. When Spartan3
XC3S400PG208 board is used for testing the
frequency of operation achieved is approximately
215.64 MHz for an input gray scale image of size
64 by 64. The hardware units consumed is
moderately less compared to other algorithms.
Key words — image processing, scaling, FPGA,
Verilog, PSNR.
INTRODUCTION
Image scaling is a non trivial process for resizing an
image. Digital display devices such as liquid crystal
display(LCD) or plasma display panel(PDP), digital
camera, surveillance camera, digital video
recorders, digital photo frame, mobile phone, tablet
PC, etc. have become increasingly popular [1,2].
Hence the demand and significance of image
scaling are very high.
There are various scaling methods which can be
broadly classified as polynomial based and non-
polynomial based methods [1]. Non- polynomial
based methods provide high quality image scaling
but due to their complex nature and high memory
requirements, polynomial based methods are
generally preferred for hardware implementation.
Some of the polynomial based methods are nearest
neighborhood method, bilinear interpolation, bi-
cubic interpolation. Among these algorithms [8, 9],
the nearest neighborhood method is the simplest
and it provides the benefit of low complexity
implementation. But the scaled output images will
consist of blocking and aliasing artifacts. Hence in
this paper bilinear interpolation algorithm is chosen
for implementation.
In Bilinear interpolation, the target pixel is
obtained by performing linear interpolation in both
horizontal and vertical directions. By interpolating
the image in this manner causes the edges of scaled
image to become blurred and aliased. In order to
smoothen these effects, clamp filters and sharpening
spatial filters as pre filters along with an edge
detector to enhance the edges are used. For real time
applications, low complex image processing
algorithms are needed for FPGA implementation.
This algorithm demands low computing resources
and less memory storage per pixel. The choice of
clamp parameter C and sharpening value S are
limited by the above requirements.
The rest of the paper is divided as follows. The
proposed system model is explained in Section II.
The parameters chosen are explained in Section III
and simulation and synthesis results are explained
in Section IV. Finally the conclusion is presented in
Section V.
SYSTEM MODEL
The flow diagram of our proposed scaling algorithm
is shown in figure 1. This consists of a sharpening
spatial filter, a clamp filter and bilinear interpolator.
The clamp filter is a generalized weighted
smoothing filter, for smoothening uncontrollable
condition known as an aliasing effect. This is
followed by a sharpening spatial filter (high pass
filter) to reduce the blurring artifacts.
Figure.1 Design Flow diagram
The clamp and sharpening spatial filters are used
as pre-filters. The clamp is used for smoothening
and to reduce the aliasing artifacts. The clamp filter
is implemented in hardware by specifying it as a
mask. The typical mask of clamp filter is given in
equation (1).
1 1 1
1 c 1
1 1 1
cK
 
 
  
 
 
…….. (1)
The sharpening spatial filter is used to enhance
the edges, remove background noise and to reduce
the blurring effects. The mask of the sharpening
filter in spatial domain is given in equation (2).
-1 -1 -1
-1 s -1
-1 -1 -1
cK
 
 
  
 
 
----------- (2)
The basic model of bilinear interpolation is
shown in figure 2.
Figure.2 Basic bilinear interpolation scheme
   
       
 
f f
f f
f f
P(x', j) = 1 X P(i, j) + X P i 1, j
P x', j 1 = 1 X P i, j 1 + X P i 1, j 1
P(x’, y’) = [P(x', j)] (1 Y ) + P x', j 1 x Y -- (3)
   
      
  
In equation (3),  ,P i j represents the source
pixel,  , ,
,P x y represents the scaled pixel, Xf and
Yf are the scaling factor along horizontal and
vertical direction respectively.As shown in
equations (3) the interpolation operation can be
realized by means of Multipliers and a block of
adder/subtractor modules. In this proposed work
signed adder/subtractor and a pipelined MAC unit is
SHARPENING
SPATIAL FILTER
BILINEAR
INTERPOLATOR
EDGE DETECTOR
CLAMP FILTER
INPUT IMAGE
OUTPUT IMAGE
used to implement the bi linear interpolation
algorithm.
DESIGN CONSIDERATION
The scaling filter and sharpening filter are
operating in the spatial domain. Hence the source
pixel values are stored in a memory with hold time
and setup time specifications. In this proposed
scheme, a FIFO of size 64 by 8 is implemented as
memory for storing and sending values to data path
unit.
The filter coefficients are also stored in a 9 by 8
dual port memory designed using Verilog language.
A Mask of 3 by 3 is stored in the dual port memory
and upon receiving the enable signal from timing
unit, the mask values are passed to data path unit A
single MAC unit is used here as processing element
(PE). A group of 9 such MAC units form data path
unit in this design.
The FPGA implementation is shown in figure 3.
Figure.3 FPGA Implementation diagram
There are some parameters that affect
implemented processor performance. Two
noticeable parameters that determine the
performance of the algorithm are Clamp value (C)
and Sharpening value (S) [2, 3, 4]. The blurring
effect and clarity vary according to parameter
changes. A tradeoff relationship exists between (S),
(C) and the data representation chosen for hardware
implementation. In this implementation an 8 bit
representation is chosen.
SIMULATION AND SYNTHESIS RESULTS
The proposed method is simulated using
Modelsim10.3b simulator by applying test fixture
file in Verilog HDL. The entire design of filters and
bilinear interpolator is designed using Verilog
HDL.. It is found that the memory unit operates with
a maximum frequency of 415.536 MHz. The
bilinear interpolator operates with a maximum delay
of 21.877ns. The RTL diagram of memory unit and
bilinear interpolator are shown in figure 4 and 5
respectively. Figure 6 shows the detailed
architectural view of bilinear interpolator.
Figure 4. RTL diagram of Memory Unit
Figure 5. RTL view of bilinear interpolator
The bilinear interpolator is implemented using
MAC unit. The signed multiplication is
implemented for 8 bits since the input image
considered is gray scale image. A total of 5
Adder/Sub tractors are inferred and 6 Multipliers are
inferred for one pixel interpolation task. By
pipelining of 2 stages and repeating the process for
64 clock cycles scaling of an input image of size 8
by 8 is achieved.
Figure 6. Detailed architecture of bilinear
interpolator
The simulation result of bilinear interpolator is
given in figure 7. The operational speed achieved for
the overall design is 215.64 MHz. By reducing the
number of multiplications in the case of edge pixels
the speed of operation can be further increased by 30
to 40 percentage.
Figure 7. simulation result of bilinear interpolator
The following figure 8 shows the simulation
result of memory unit.
Figure 8. Simulation result of memory unit
V. CONCLUSION
The present work has been successfully
simulated and designed using Verilog HDL. The
Structure was designed using MAC unit and input
values are stored in FIFO memory on Spartan 3
board with xcs3004s-pq208 FPGA with speed grade
5. The board is having 2 in-built block rams which
could be used if additional memory structure is
required. By incorporating more pipelined stages,
the speed of operation can be increased.
REFERENCES
[1] Joannis Andreadis, Angelos Amanatiadis,
“Digital Image Scaling”, IMTC 2005 -
Inistrumentationi and Measurement Technology
Conference ,Ottawa, Canada 17-19 May 2005
[2] Xiangjun Zhang and Xiaolin Wu, “Image
Interpolation by Adaptive 2-D Autoregressive
Modeling and Soft-Decision Estimation”, IEEE
Transactions On Image Processing, Vol. 17, No.
6, June 2008
[3] Pei-Yin Chen, Chi-Yuan Lien, and Chi-Pin Lu,
“VLSI Implementation of an Edge-Oriented
Image Scaling Processor”, IEEE Transactions
On Very Large Scale Integration (VLSI)
Systems, Vol. 17, No. 9, September 2009
[4] Francisco Cardells-Tormo and Jordi Arnabat-
Benedicto, “Flexible Hardware-Friendly Digital
Architecture for 2-D Separable Convolution-
Based Scaling”, IEEE Transactions On Circuits
And Systems—II: Express Briefs, Vol. 53, No.
7, July 2006
[5] Lun Chen, “VLSI Implementation of a Low-
Cost High-Quality Image Scaling Processor”,
IEEE Transactions On Circuits And Systems II
Express Briefs, Vol. 60, No. 1, January 2013
[6] H. Kim, Y. Cha, and S. Kim, “Curvature
interpolation method for image zooming,” IEEE
Trans. Image Process., vol. 20, no. 7, pp. 1895–
1903, Jul. 2011.
[7] J.W.Han,J.H.Kim,S.H.Cheon,J.O.Kim,andS.J.K
o,“A novel image interpolation method using
the bilateral filter,” IEEE Trans. Consum.
Electron., vol. 56, no. 1, pp. 175–181, Feb.
2010.
[8] C. C. Lin, M. H. Sheu, H. K. Chiang, C. Liaw,
and Z. C. Wu, “The efficient VLSI design of BI-
CUBIC convolution interpolation for digital
image processing,” in Proc. IEEE Int Conf.
Circuits Syst., May 2008, pp. 480–483.
[9] S. L. Chen, H. Y. Huang, and C. H. Luo, “A
low-cost high-quality adaptive scalar for real-
time multimedia applications,” IEEE Trans.
Circuits Syst. Video Technol., vol. 21, no. 11,
pp. 1600–1611, Nov. 2011.
[10] Shih-Lun Chen, “VLSI Implementation of
an Adaptive Edge-Enhanced Image Scalar for
Real-Time Multimedia Applications” , IEEE
Transactions On Circuits And Systems For
Video Technology, Vol. 23, No. 9, September
2013

More Related Content

What's hot

Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi
IJECEIAES
 
Enhancement of genetic image watermarking robust against cropping attack
Enhancement of genetic image watermarking robust against cropping attackEnhancement of genetic image watermarking robust against cropping attack
Enhancement of genetic image watermarking robust against cropping attack
ijfcstjournal
 
K0445660
K0445660K0445660
K0445660
IJERA Editor
 
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
iosrjce
 
Comparative study to realize an automatic speaker recognition system
Comparative study to realize an automatic speaker recognition system Comparative study to realize an automatic speaker recognition system
Comparative study to realize an automatic speaker recognition system
IJECEIAES
 
A novel approach to Image Fusion using combination of Wavelet Transform and C...
A novel approach to Image Fusion using combination of Wavelet Transform and C...A novel approach to Image Fusion using combination of Wavelet Transform and C...
A novel approach to Image Fusion using combination of Wavelet Transform and C...
IJSRD
 
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
ijsrd.com
 
The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)
eSAT Publishing House
 
Speckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filterSpeckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filter
eSAT Publishing House
 
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
IAEME Publication
 
Selection of intra prediction modes for intra frame coding in advanced video ...
Selection of intra prediction modes for intra frame coding in advanced video ...Selection of intra prediction modes for intra frame coding in advanced video ...
Selection of intra prediction modes for intra frame coding in advanced video ...
eSAT Journals
 
Selection of intra prediction modes for intra frame
Selection of intra prediction modes for intra frameSelection of intra prediction modes for intra frame
Selection of intra prediction modes for intra frame
eSAT Publishing House
 
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAINSINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
ijma
 
IRJET- Satellite Image Resolution Enhancement
IRJET- Satellite Image Resolution EnhancementIRJET- Satellite Image Resolution Enhancement
IRJET- Satellite Image Resolution Enhancement
IRJET Journal
 
Compressed Medical Image Transfer in Frequency Domain
Compressed Medical Image Transfer in Frequency DomainCompressed Medical Image Transfer in Frequency Domain
Compressed Medical Image Transfer in Frequency Domain
CSCJournals
 
Performance analysis of real-time and general-purpose operating systems for p...
Performance analysis of real-time and general-purpose operating systems for p...Performance analysis of real-time and general-purpose operating systems for p...
Performance analysis of real-time and general-purpose operating systems for p...
IJECEIAES
 
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
inventionjournals
 
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
CSCJournals
 
The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)
eSAT Journals
 
Common image compression formats
Common image compression formatsCommon image compression formats
Common image compression formats
Clyde Lettsome
 

What's hot (20)

Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi Real-time traffic sign detection and recognition using Raspberry Pi
Real-time traffic sign detection and recognition using Raspberry Pi
 
Enhancement of genetic image watermarking robust against cropping attack
Enhancement of genetic image watermarking robust against cropping attackEnhancement of genetic image watermarking robust against cropping attack
Enhancement of genetic image watermarking robust against cropping attack
 
K0445660
K0445660K0445660
K0445660
 
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
Optimized Implementation of Edge Preserving Color Guided Filter for Video on ...
 
Comparative study to realize an automatic speaker recognition system
Comparative study to realize an automatic speaker recognition system Comparative study to realize an automatic speaker recognition system
Comparative study to realize an automatic speaker recognition system
 
A novel approach to Image Fusion using combination of Wavelet Transform and C...
A novel approach to Image Fusion using combination of Wavelet Transform and C...A novel approach to Image Fusion using combination of Wavelet Transform and C...
A novel approach to Image Fusion using combination of Wavelet Transform and C...
 
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
Image Compression Using Intra Prediction of H.264/AVC and Implement of Hiding...
 
The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)
 
Speckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filterSpeckle noise reduction using hybrid tmav based fuzzy filter
Speckle noise reduction using hybrid tmav based fuzzy filter
 
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
AN OPTIMIZED BLOCK ESTIMATION BASED IMAGE COMPRESSION AND DECOMPRESSION ALGOR...
 
Selection of intra prediction modes for intra frame coding in advanced video ...
Selection of intra prediction modes for intra frame coding in advanced video ...Selection of intra prediction modes for intra frame coding in advanced video ...
Selection of intra prediction modes for intra frame coding in advanced video ...
 
Selection of intra prediction modes for intra frame
Selection of intra prediction modes for intra frameSelection of intra prediction modes for intra frame
Selection of intra prediction modes for intra frame
 
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAINSINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
SINGLE IMAGE SUPER RESOLUTION IN SPATIAL AND WAVELET DOMAIN
 
IRJET- Satellite Image Resolution Enhancement
IRJET- Satellite Image Resolution EnhancementIRJET- Satellite Image Resolution Enhancement
IRJET- Satellite Image Resolution Enhancement
 
Compressed Medical Image Transfer in Frequency Domain
Compressed Medical Image Transfer in Frequency DomainCompressed Medical Image Transfer in Frequency Domain
Compressed Medical Image Transfer in Frequency Domain
 
Performance analysis of real-time and general-purpose operating systems for p...
Performance analysis of real-time and general-purpose operating systems for p...Performance analysis of real-time and general-purpose operating systems for p...
Performance analysis of real-time and general-purpose operating systems for p...
 
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
Matlab Implementation of Baseline JPEG Image Compression Using Hardware Optim...
 
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
Face Recognition Using Neural Network Based Fourier Gabor Filters & Random Pr...
 
The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)The automatic license plate recognition(alpr)
The automatic license plate recognition(alpr)
 
Common image compression formats
Common image compression formatsCommon image compression formats
Common image compression formats
 

Similar to Digital scaling

International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
ijceronline
 
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
International Journal of Engineering Inventions www.ijeijournal.com
 
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET Journal
 
E0364025031
E0364025031E0364025031
E0364025031
theijes
 
FPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT AlgorithmFPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT Algorithm
cscpconf
 
FPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT AlgorithmFPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT Algorithm
cscpconf
 
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
sipij
 
The Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian FilterThe Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian Filter
IRJET Journal
 
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
IRJET Journal
 
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
ijcsity
 
Number Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemNumber Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking System
IRJET Journal
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
VLSICS Design
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
VLSICS Design
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
VLSICS Design
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
VLSICS Design
 
Kassem2009
Kassem2009Kassem2009
Kassem2009
lazchi
 
imagefiltervhdl.pptx
imagefiltervhdl.pptximagefiltervhdl.pptx
imagefiltervhdl.pptx
Akbarali206563
 
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
IRJET Journal
 
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
arpublication
 
Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...
eSAT Publishing House
 

Similar to Digital scaling (20)

International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
 
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
IRJET-Hardware Co-Simulation of Classical Edge Detection Algorithms using Xil...
 
E0364025031
E0364025031E0364025031
E0364025031
 
FPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT AlgorithmFPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT Algorithm
 
FPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT AlgorithmFPGA based Efficient Interpolator design using DALUT Algorithm
FPGA based Efficient Interpolator design using DALUT Algorithm
 
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
“FIELD PROGRAMMABLE DSP ARRAYS” - A NOVEL RECONFIGURABLE ARCHITECTURE FOR EFF...
 
The Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian FilterThe Computation Complexity Reduction of 2-D Gaussian Filter
The Computation Complexity Reduction of 2-D Gaussian Filter
 
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
Design of an Efficient Reconfigurable Fir Filter for Multi Standard Digital u...
 
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
HARDWARE SOFTWARE CO-SIMULATION FOR TRAFFIC LOAD COMPUTATION USING MATLAB SIM...
 
Number Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking SystemNumber Plate Recognition of Still Images in Vehicular Parking System
Number Plate Recognition of Still Images in Vehicular Parking System
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
 
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONSA METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
A METHODOLOGY FOR IMPROVEMENT OF ROBA MULTIPLIER FOR ELECTRONIC APPLICATIONS
 
Kassem2009
Kassem2009Kassem2009
Kassem2009
 
imagefiltervhdl.pptx
imagefiltervhdl.pptximagefiltervhdl.pptx
imagefiltervhdl.pptx
 
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
 
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
A Low Hardware Complex Bilinear Interpolation Algorithm of Image Scaling for ...
 
Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...Hardware software co simulation of edge detection for image processing system...
Hardware software co simulation of edge detection for image processing system...
 

Recently uploaded

Divertidamente SLIDE.pptxufururururuhrurid8dj
Divertidamente SLIDE.pptxufururururuhrurid8djDivertidamente SLIDE.pptxufururururuhrurid8dj
Divertidamente SLIDE.pptxufururururuhrurid8dj
lunaemel03
 
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
kecekev
 
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
gpffo76j
 
一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理
peuce
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
M. A. Architect
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
amrsoftec1
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
Knight Moves
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
qo1as76n
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
pmgdscunsri
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
GOWSIKRAJA PALANISAMY
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
talaatahm
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
Virtual Real Design
 
Impact of Fonts: in Web and Apps Design
Impact of Fonts:  in Web and Apps DesignImpact of Fonts:  in Web and Apps Design
Impact of Fonts: in Web and Apps Design
contactproperweb2014
 
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
qo1as76n
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
jhonguerrerobarturen
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
GOWSIKRAJA PALANISAMY
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
Techno Merch
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
TE Studio
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NishantRathi18
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
asuzyq
 

Recently uploaded (20)

Divertidamente SLIDE.pptxufururururuhrurid8dj
Divertidamente SLIDE.pptxufururururuhrurid8djDivertidamente SLIDE.pptxufururururuhrurid8dj
Divertidamente SLIDE.pptxufururururuhrurid8dj
 
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
一比一原版(UW毕业证)西雅图华盛顿大学毕业证如何办理
 
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
原版定做(penn毕业证书)美国宾夕法尼亚大学毕业证文凭学历证书原版一模一样
 
一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理一比一原版(BU毕业证)波士顿大学毕业证如何办理
一比一原版(BU毕业证)波士顿大学毕业证如何办理
 
Mohannad Abdullah portfolio _ V2 _22-24
Mohannad Abdullah  portfolio _ V2 _22-24Mohannad Abdullah  portfolio _ V2 _22-24
Mohannad Abdullah portfolio _ V2 _22-24
 
Revolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in IndiaRevolutionizing the Digital Landscape: Web Development Companies in India
Revolutionizing the Digital Landscape: Web Development Companies in India
 
ARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdfARENA - Young adults in the workplace (Knight Moves).pdf
ARENA - Young adults in the workplace (Knight Moves).pdf
 
定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样定制美国西雅图城市大学毕业证学历证书原版一模一样
定制美国西雅图城市大学毕业证学历证书原版一模一样
 
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
Maximize Your Content with Beautiful Assets : Content & Asset for Landing Page
 
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptxUNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
UNIT IV-VISUAL STYLE AND MOBILE INTERFACES.pptx
 
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdfAHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
AHMED TALAAT ARCHITECTURE PORTFOLIO .pdf
 
Graphic Design Tools and Software .pptx
Graphic Design Tools and Software   .pptxGraphic Design Tools and Software   .pptx
Graphic Design Tools and Software .pptx
 
Impact of Fonts: in Web and Apps Design
Impact of Fonts:  in Web and Apps DesignImpact of Fonts:  in Web and Apps Design
Impact of Fonts: in Web and Apps Design
 
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
哪里办理美国中央华盛顿大学毕业证双学位证书原版一模一样
 
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economicoZAPATILLAS 2 X 110 ABRIL.pdf compra economico
ZAPATILLAS 2 X 110 ABRIL.pdf compra economico
 
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptxUNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
UNIT V ACTIONS AND COMMANDS, FORMS AND CONTROLS.pptx
 
Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.Technoblade The Legacy of a Minecraft Legend.
Technoblade The Legacy of a Minecraft Legend.
 
Connect Conference 2022: Passive House - Economic and Environmental Solution...
Connect Conference 2022: Passive House -  Economic and Environmental Solution...Connect Conference 2022: Passive House -  Economic and Environmental Solution...
Connect Conference 2022: Passive House - Economic and Environmental Solution...
 
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHINHR Engineers Portfolio 2023 2024 NISHANT RATHI
NHR Engineers Portfolio 2023 2024 NISHANT RATHI
 
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
一比一原版(Columbia毕业证)哥伦比亚大学毕业证如何办理
 

Digital scaling

  • 1. A NOVEL FPGA IMPLEMENTATION OF IMAGE SCALING PROCESSOR USING BILINEAR INTERPOLATION S.Hariprasath1 , Dr.T.N.Prabakar2 Department of Electronics and Communication Engineering 1 Saranathan College of Engineering, 2 Oxford Engineering College Trichy, Tamil Nadu, India shpece@gmail.com,tnprabakar@gmail.com Abstract — Image scaling is an important task in most of the machine vision applications like pattern recognition, pattern understanding etc... Most of the applications require either scale up of the Region of Interest (ROI) or scale down of other parts of the input image before feature extraction. The phenomenon under investigation is expressed at different resolutions of the description. The efficient implementation of an image scaling algorithm which is memory efficient and consumes less operational cycles motivates our proposed method in this paper. The proposed method consists of four modules namely sharpening filter, clamp filter, an edge detector and bilinear interpolator. The bilinear interpolation algorithm is chosen as scale up or scale down algorithm due to features like less complexity, high quality output and less operational cycles consumption in hardware compared other methods like cubic interpolation, nearest neighbourhood interpolation etc..The proposed architecture is implemented as RTL description using Verilog language. Xilinx 9.2i is used as synthesis tool and the functional simulation is verified using Modelsim10.3b. When Spartan3 XC3S400PG208 board is used for testing the frequency of operation achieved is approximately 215.64 MHz for an input gray scale image of size 64 by 64. The hardware units consumed is moderately less compared to other algorithms. Key words — image processing, scaling, FPGA, Verilog, PSNR. INTRODUCTION Image scaling is a non trivial process for resizing an image. Digital display devices such as liquid crystal display(LCD) or plasma display panel(PDP), digital camera, surveillance camera, digital video recorders, digital photo frame, mobile phone, tablet PC, etc. have become increasingly popular [1,2]. Hence the demand and significance of image scaling are very high. There are various scaling methods which can be broadly classified as polynomial based and non- polynomial based methods [1]. Non- polynomial based methods provide high quality image scaling but due to their complex nature and high memory requirements, polynomial based methods are generally preferred for hardware implementation. Some of the polynomial based methods are nearest neighborhood method, bilinear interpolation, bi- cubic interpolation. Among these algorithms [8, 9], the nearest neighborhood method is the simplest and it provides the benefit of low complexity implementation. But the scaled output images will consist of blocking and aliasing artifacts. Hence in this paper bilinear interpolation algorithm is chosen for implementation. In Bilinear interpolation, the target pixel is obtained by performing linear interpolation in both horizontal and vertical directions. By interpolating the image in this manner causes the edges of scaled image to become blurred and aliased. In order to
  • 2. smoothen these effects, clamp filters and sharpening spatial filters as pre filters along with an edge detector to enhance the edges are used. For real time applications, low complex image processing algorithms are needed for FPGA implementation. This algorithm demands low computing resources and less memory storage per pixel. The choice of clamp parameter C and sharpening value S are limited by the above requirements. The rest of the paper is divided as follows. The proposed system model is explained in Section II. The parameters chosen are explained in Section III and simulation and synthesis results are explained in Section IV. Finally the conclusion is presented in Section V. SYSTEM MODEL The flow diagram of our proposed scaling algorithm is shown in figure 1. This consists of a sharpening spatial filter, a clamp filter and bilinear interpolator. The clamp filter is a generalized weighted smoothing filter, for smoothening uncontrollable condition known as an aliasing effect. This is followed by a sharpening spatial filter (high pass filter) to reduce the blurring artifacts. Figure.1 Design Flow diagram The clamp and sharpening spatial filters are used as pre-filters. The clamp is used for smoothening and to reduce the aliasing artifacts. The clamp filter is implemented in hardware by specifying it as a mask. The typical mask of clamp filter is given in equation (1). 1 1 1 1 c 1 1 1 1 cK            …….. (1) The sharpening spatial filter is used to enhance the edges, remove background noise and to reduce the blurring effects. The mask of the sharpening filter in spatial domain is given in equation (2). -1 -1 -1 -1 s -1 -1 -1 -1 cK            ----------- (2) The basic model of bilinear interpolation is shown in figure 2. Figure.2 Basic bilinear interpolation scheme               f f f f f f P(x', j) = 1 X P(i, j) + X P i 1, j P x', j 1 = 1 X P i, j 1 + X P i 1, j 1 P(x’, y’) = [P(x', j)] (1 Y ) + P x', j 1 x Y -- (3)               In equation (3),  ,P i j represents the source pixel,  , , ,P x y represents the scaled pixel, Xf and Yf are the scaling factor along horizontal and vertical direction respectively.As shown in equations (3) the interpolation operation can be realized by means of Multipliers and a block of adder/subtractor modules. In this proposed work signed adder/subtractor and a pipelined MAC unit is SHARPENING SPATIAL FILTER BILINEAR INTERPOLATOR EDGE DETECTOR CLAMP FILTER INPUT IMAGE OUTPUT IMAGE
  • 3. used to implement the bi linear interpolation algorithm. DESIGN CONSIDERATION The scaling filter and sharpening filter are operating in the spatial domain. Hence the source pixel values are stored in a memory with hold time and setup time specifications. In this proposed scheme, a FIFO of size 64 by 8 is implemented as memory for storing and sending values to data path unit. The filter coefficients are also stored in a 9 by 8 dual port memory designed using Verilog language. A Mask of 3 by 3 is stored in the dual port memory and upon receiving the enable signal from timing unit, the mask values are passed to data path unit A single MAC unit is used here as processing element (PE). A group of 9 such MAC units form data path unit in this design. The FPGA implementation is shown in figure 3. Figure.3 FPGA Implementation diagram There are some parameters that affect implemented processor performance. Two noticeable parameters that determine the performance of the algorithm are Clamp value (C) and Sharpening value (S) [2, 3, 4]. The blurring effect and clarity vary according to parameter changes. A tradeoff relationship exists between (S), (C) and the data representation chosen for hardware implementation. In this implementation an 8 bit representation is chosen. SIMULATION AND SYNTHESIS RESULTS The proposed method is simulated using Modelsim10.3b simulator by applying test fixture file in Verilog HDL. The entire design of filters and bilinear interpolator is designed using Verilog HDL.. It is found that the memory unit operates with a maximum frequency of 415.536 MHz. The bilinear interpolator operates with a maximum delay of 21.877ns. The RTL diagram of memory unit and bilinear interpolator are shown in figure 4 and 5 respectively. Figure 6 shows the detailed architectural view of bilinear interpolator. Figure 4. RTL diagram of Memory Unit Figure 5. RTL view of bilinear interpolator
  • 4. The bilinear interpolator is implemented using MAC unit. The signed multiplication is implemented for 8 bits since the input image considered is gray scale image. A total of 5 Adder/Sub tractors are inferred and 6 Multipliers are inferred for one pixel interpolation task. By pipelining of 2 stages and repeating the process for 64 clock cycles scaling of an input image of size 8 by 8 is achieved. Figure 6. Detailed architecture of bilinear interpolator The simulation result of bilinear interpolator is given in figure 7. The operational speed achieved for the overall design is 215.64 MHz. By reducing the number of multiplications in the case of edge pixels the speed of operation can be further increased by 30 to 40 percentage. Figure 7. simulation result of bilinear interpolator The following figure 8 shows the simulation result of memory unit. Figure 8. Simulation result of memory unit V. CONCLUSION The present work has been successfully simulated and designed using Verilog HDL. The Structure was designed using MAC unit and input values are stored in FIFO memory on Spartan 3 board with xcs3004s-pq208 FPGA with speed grade 5. The board is having 2 in-built block rams which could be used if additional memory structure is required. By incorporating more pipelined stages, the speed of operation can be increased. REFERENCES [1] Joannis Andreadis, Angelos Amanatiadis, “Digital Image Scaling”, IMTC 2005 - Inistrumentationi and Measurement Technology Conference ,Ottawa, Canada 17-19 May 2005 [2] Xiangjun Zhang and Xiaolin Wu, “Image Interpolation by Adaptive 2-D Autoregressive Modeling and Soft-Decision Estimation”, IEEE Transactions On Image Processing, Vol. 17, No. 6, June 2008 [3] Pei-Yin Chen, Chi-Yuan Lien, and Chi-Pin Lu, “VLSI Implementation of an Edge-Oriented Image Scaling Processor”, IEEE Transactions On Very Large Scale Integration (VLSI) Systems, Vol. 17, No. 9, September 2009 [4] Francisco Cardells-Tormo and Jordi Arnabat- Benedicto, “Flexible Hardware-Friendly Digital Architecture for 2-D Separable Convolution-
  • 5. Based Scaling”, IEEE Transactions On Circuits And Systems—II: Express Briefs, Vol. 53, No. 7, July 2006 [5] Lun Chen, “VLSI Implementation of a Low- Cost High-Quality Image Scaling Processor”, IEEE Transactions On Circuits And Systems II Express Briefs, Vol. 60, No. 1, January 2013 [6] H. Kim, Y. Cha, and S. Kim, “Curvature interpolation method for image zooming,” IEEE Trans. Image Process., vol. 20, no. 7, pp. 1895– 1903, Jul. 2011. [7] J.W.Han,J.H.Kim,S.H.Cheon,J.O.Kim,andS.J.K o,“A novel image interpolation method using the bilateral filter,” IEEE Trans. Consum. Electron., vol. 56, no. 1, pp. 175–181, Feb. 2010. [8] C. C. Lin, M. H. Sheu, H. K. Chiang, C. Liaw, and Z. C. Wu, “The efficient VLSI design of BI- CUBIC convolution interpolation for digital image processing,” in Proc. IEEE Int Conf. Circuits Syst., May 2008, pp. 480–483. [9] S. L. Chen, H. Y. Huang, and C. H. Luo, “A low-cost high-quality adaptive scalar for real- time multimedia applications,” IEEE Trans. Circuits Syst. Video Technol., vol. 21, no. 11, pp. 1600–1611, Nov. 2011. [10] Shih-Lun Chen, “VLSI Implementation of an Adaptive Edge-Enhanced Image Scalar for Real-Time Multimedia Applications” , IEEE Transactions On Circuits And Systems For Video Technology, Vol. 23, No. 9, September 2013