SlideShare a Scribd company logo
1 of 10
Download to read offline
Sundarapandian et al. (Eds) : ACITY, AIAA, CNSA, DPPR, NeCoM, WeST, DMS, P2PTM, VLSI - 2013
pp. 11–20, 2013. © CS & IT-CSCP 2013 DOI : 10.5121/csit.2013.3402
MEDIAN BASED PARALLEL STEERING
KERNEL REGRESSION FOR IMAGE
RECONSTRUCTION
G Dada Khalandhar, V Sai Ram, M Srinivasa Rao, Lalith Srikanth C,
Pallav Kumar Baruah, Balasubramanian S, R Raghunatha Sarma
Sri Satya Sai Institute of Higher Learning, India
{dadakhalandhar, v.sairam1, msrini.svn}@gmail.com,
{lalithsrikanthc, pkbaruah, sbalasubramanian,
rraghunathasarma}@sssihl.edu.in
ABSTRACT
Image reconstruction is a process of obtaining the original image from corrupted data.
Applications of image reconstruction include Computer Tomography, radar imaging, weather
forecasting etc. Recently steering kernel regression method has been applied for image
reconstruction [1]. There are two major drawbacks in this technique. Firstly, it is
computationally intensive. Secondly, output of the algorithm suffers form spurious edges
(especially in case of denoising). We propose a modified version of Steering Kernel Regression
called as Median Based Parallel Steering Kernel Regression Technique. In the proposed
algorithm the first problem is overcome by implementing it in on GPUs and multi-cores. The
second problem is addressed by a gradient based suppression in which median filter is used.
Our algorithm gives better output than that of the Steering Kernel Regression. The results are
compared using Root Mean Square Error(RMSE). Our algorithm has also shown a speedup of
21x using GPUs and shown speedup of 6x using multi-cores.
KEYWORDS
Steering Kernel Regression, Local Gradient, Multi-core, GPU.
1. INTRODUCTION
Images have become inherent part of day to day life. The image processing algorithms to improve
the quality of images are innumerable, but many of them are application specific. Recently,
Takeda et al.[1] have proposed a novel regression technique for image reconstruction known as
Steering Kernel Regression. There are two major drawbacks associated with this technique.
It is computationally intensive and, the output of the algorithm suffers from spurious edges
(especially in case of denoising). In the proposed algorithm, the first problem is overcome by
implementing the algorithm on GPUs and multi-cores. The second problem is addressed by
deblurring of the output using median filter. GPU based efficient solutions for data parallel image
12 Computer Science & Information Technology (CS & IT)
processing applications have been proposed by many authors [5][6][7][8]. Like many image
processing applications, Steering Kernel Regression also has inherent data parallelism. Taking
advantage of this inherent parallelism, we have identified and implemented the three most time
consuming parts of the algorithm both on multi-core and GPUs. We have addressed the second
problem by suppressing the spurious edges. These edges are produced due to noise and get
stronger with the number of iterations of the algorithm. In the proposed technique we use median
filter at the end of each iteration to remove the spurious edges.
2. DATA ADAPTIVE KERNEL REGRESSION
Regression is a process of finding the underlying signal in a given data, where the original signal
is corrupted by noise. Many image regression techniques like edge-directed interpolation [2], and
moving least squares [3] were proposed. Classical parametric regression methods assume that
there is a specific model for underlying signal and estimate the parameters of this model. The
parametric estimation has been used in major image processing techniques. The model generated
out of the estimated parameters is given as the best possible estimate of the underlying signal.
In contrast, non parametric regression methods don’t assume any underlying model, but depend
on the data itself to arrive at the original signal. Regression function is the implicit model that has
to be estimated. Takeda et al. [1] introduced steering kernel regression for image processing and
reconstruction and have shown that it out-performs existing regression techniques. A brief
introduction to the algorithm is given as follows:
The measured data is given by ‫ݕ‬௜ = ‫ݔ(ݖ‬௜) + ߝ௜, i=1,...,P, where ‫ݔ(ݖ‬௜) is a regression function
acting on pixel coordinates, ߝ௜s are independent and identically distributed zero mean noise
values, P indicates total number of pixels. Assuming that the regression function is smooth to a
certain order N, the objective functional estimation of ‫)ݔ(ݖ‬ can be deduced (detailed derivation is
given in [1]) by minimization of the following functional:
min
{ఉ೙}
Σ௜ୀଵ
௉
[‫ݕ‬௜ − ߚ଴ − ߚଵ
்
(‫ݔ‬௜ − ‫)ݔ‬ − ߚଶ
்
(‫ݔ‬௜ − ‫)ݔ‬ଶ
−
… ߚே
்
(‫ݔ‬௜ − ‫)ݔ‬ே
]ଶ ଵ
௛
‫ܭ‬ு ቀ
௫೔ି௫
௛
ቁ (1)
where ߚ௜ is ݅௧௛
derivative of ‫)ݔ(ݖ‬ and ℎ is global smoothing parameter. ‫ܭ‬ு(‫ݔ‬௜ − ‫)ݔ‬ is the kernel
weight assigned to the samples and is defined such that the nearby samples are given higher
weight than the farther ones.
Takeda et al.[1] have proposed to use a non-linear combination of data. In other words, data
adaptive kernel regression not only depends on the sample location and density but also on the
radiometric properties.
The incorporation of these radiometric properties were done by adapting the regression kernel
locally, so that the kernel aligns itself along the features such as edges, than across them. This
enables us to capture the features in better detail. The major contribution of Takeda et al.[1] is to
use adaptive kernel regression for image processing and reconstruction. They call this adaptive
technique, steering kernel regression.
Computer Science & Information Technology (CS & IT) 13
The central notion of the steering kernel regression is to estimate the local gradients. The
gradient information captures the features of the image. These in turn are used to find the weights
to be assigned to the neighboring samples. Pixel near an edge will be influenced by the pixels of
the same side of the edge. With this intuition in mind, the dominant orientation of the local
gradients are measured. The kernel is then effectively steered locally based on this dominant
orientation.
Our Median Based Parallel Steering Kernel Regression Technique is an iterative technique. The
output of the previous iteration is passed as input for the next iteration. As the first step of the
algorithm, output of the Classical Kernel Regression is passed as input for the first iteration of the
algorithm. Brief description of the algorithm is as follows:
1. Finding local gradients at each image point.
2. Based on the gradient value at a pixel, the scaling, elongation and rotation parameters are
estimated. There are used to construct the steering matrix.
3. Application of Steering Kernel Regression algorithm.
4. Post-processing of the resultant image to suppress spurious edges.
5. Repeating the steps 2 to 4, till the noise level in the output image is below the predefined
threshold.
3. IMPLEMENTATION
The serial implementation of steps 1 to 3 have been implemented by Takeda et.al. We have used
their code, which is available at http://www.soe.ucsc.edu/ htakeda/MatlabApp, for the
improvement. The parallel implementation of the algorithm is discussed in section 3.1. In section
3.2 we dwell on the method to suppress spurious edges.
3.1 PARALLEL IMPLEMENTATION
The serial code was programmed in Matlab and is available at http://www.soe.ucsc.edu/
htakeda/MatlabApp. The code was profiled using Matlab Profiling Tool and it was observed that
the steps 1 and 3 of steering kernel regression are most time consuming. On careful analysis, we
discovered that these steps have a lot of scope for parallelism. The serial implementation of step 3
consists the following ideas:
1. To all pixels, in each iteration running till the square of the upscale factor, determine the
feature matrix.
2. For each pixel,
• Obtain the weight matrix using the neighboring samples of covariance matrix.
• Compute equivalent kernel which involves inverse of a matrix resulting from the product of
the feature and weight matrices.
• Estimate the pixel values and gradient structure values for the output image.
In Step 1, classic regression method computes feature matrix, weight matrix and equivalent
kernel. The most time consuming action involved in this method is to estimate the target values,
local gradient structure values along the axes directions.
14 Computer Science & Information Technology (CS & IT)
Steps 1 and 3 of steering kernel regression involve a lot of data-parallelism and CUDA is used to
parallelize these steps. Mex interface feature integrates CUDA into Matlab. We shall now discuss
the parallel implementation of the step 3 :
• Copy the original image, covariance matrix, feature matrix from the CPU host memory to GPU
global memory.
• Kernel is launched with the total number of threads equaling the total number of pixels in the
source image.
• A thread is assigned to each pixel and it does the above mentioned steps of determining weight
matrix and equivalent kernel.
• It contributes ܴଶ
pixels in the estimated output image, where R is the upscaling factor.
Computing the steering matrix (step 2) is done on multi-core for speed up of the whole process.
OPTIMIZATIONS
Since shared memory is on chip, accesses to it are significantly faster than accesses to global
memory. Feature matrix is copied from host memory to shared memory of GPU. Only one thread
in a block will get the data from global to shared memory. Shared memory could only fit feature
matrix as the image size exceeds it’s space limitations.
For the remaining data, the global memory request for a warp is split into two memory requests,
one for each half-warp, which are issued independently. GPU hardware can combine all memory
requests to a single memory transaction if the threads in a warp access consecutive memory
locations[4]. Our model is designed in such a way that the memory access pattern by threads is
coalesced, thereby improving performance and ensuring low latency. The multi-core code is
implemented using the Parallel Computing Toolbox of Matlab environment. The performance
comparison of these two implementations is given in the following section.
3.2 SPURIOUS EDGE SUPPRESSION
Spurious edges produced by single iteration of the steering kernel algorithm are not as strong as
the original edges in the image. Due to which the gradient strength of the spurious edges is much
lower than that of the original edges. Using this idea, we can suppress the edges which have the
gradient strength less than a given threshold(it will be set based on the value of edges in the
image). The value of the threshold depends upon the application. It can be static or given by a
heuristic. We have used thresholds derived from the maximum gradient values. For suppressing
the spurious edge pixels we applied median filter over the pixel’s neighbourhood.
4. RESULTS
4.1 COMPUTATIONAL EFFICIENCY
In this section we show the results of using GPUs and multicores to improve the computational
complexity of the first three steps of our algorithm(Steering Kernel Regression). We observe that
the computational efficiency of the algorithm has been improved while maintaining the quality of
the output images. We can show that the GPU and multi-core implementations are consistent with
results of original serial implementation. In the next section, we present the results of our
Computer Science & Information Technology (CS & IT) 15
algorithm(which incorporates post processing module for suppressing the spurious edges)in
comparison with Steering Kernel Regression.
EXPERIMENTAL SETUP
For all experiments, the parallelized version of the steering kernel regression was run on Tesla
T20 based Fermi GPU. The serial and multi-core implementations of the same were run in Matlab
R2012a on a node with Intel(R) Xeon(R) 2.13GHz processor and 24 GB RAM. CUDA timers
were employed, which have resolution upto milliseconds to time the CUDA kernels and more
importantly they are less subject to perturbations due to other events like page faults, interrupt
from the disks. Also CudaEventRecord is asynchronous; there is less of Heisenberg effect when
timing is short, exactly suitable to GPU-intensive operations as in these applications. For the
multi-core code timers provided by Matlab were used.
EXPERIMENTS.
Experiments and the performance results of GPU, multi-core implementations on simulated and
real data are presented. These experiments were conducted on diverse applications and attest the
claims made in previous sections. In all experiments, we considered regularly sampled data.
An important note to consider is the determination of the maximum speed up achieved by an
application. Understanding the type of scaling that is applicable in any application is vital in
estimating the speed up. All the applications that are mentioned here exhibit scaling. An instance
of this phenomenon is shown in Figure 1. One can observe that for a fixed problem size, increase
in the number of processing elements, the time of execution decreases.
Fig. 1. Plot of execution time against number of processing elements.
Fig. 2. RMSE(root mean square error) of the resulted image with respect to original image against
Number of iterations
16 Computer Science & Information Technology (CS & IT)
Quality Test.
We performed the quality test for the image by visual inspection and RMSE (root mean square
error) values obtained from all the implementations. We have tested the comparisons between the
serial code, multi-core and CUDA when applied on a CT scan image with Gaussian noise with
standard deviation ߪ = 35. The RMSE values of the images resulted from multi-core and GPU
implementations are 13.2, which is closer to serial result. We observed that quality was
maintained with out any visually plausible differences. For all the experiments, the initial
estimates are given by the classical kernel regression method. Different experiments that were
performed are:
Denoising Experiment.
Well known Lena image of 512 × 512 size and a picture of a pirate with 1024 × 1024 size were
consideration for testing. Controlled simulated experiment was set up by adding white Gaussian
noise with standard deviation of ߪ = 25 to both the images. We set global smoothing
parameter ℎ = 2.4. The choice of number of iterations was set after careful analysis of the
behavior of the application. The graph in the Figure 2, indicates that RMSE (root mean square
error) values of the resulted image drop till a point and then it raises. This point was observed to
be 12 for this application. In this way, a limit for the number of iterations is deduced for all the
mentioned images. The RMSE values of the resulted images are 6.6426 and 9.2299.
Clearly, the dominance of the GPU performance over multi-core can be evidently seen in Figure
3(a). The multi-core code was run with 12 Matlab workers and as expected a near 10x
performance is achieved for image size 1024 × 1024. The slack is possibly due to the
communication overhead of the function calls performed by Matlab.
Fig. 3. Comparison of various algorithms: (a) Speedup factors against image sizes for the denoise
application. (b) Speedup factors against image sizes for the compression artifact removal. (c)
Speedup factors against image sizes for the upscaling.
Compression artifact removal.
Pepper image was considered for this experiment and compressed it by Matlab JPEG routine with
a quality parameter 10 and RMSE of 9.76. The number of iterations and ℎ were set to 10 and 2.4.
RMSE values for single core version is 8.5765, multi-core version is 8.5759 and that of GPU is
Computer Science & Information Technology (CS & IT) 17
8.5762. The performance is shown in Figure 3(b). The multi-core code has a average speed up
factor of 6x over serial implementation whereas GPU has speed up of 20x.
Upscaling.
We performed an upscale operation on the lena image and on the pirate’s picture. The
performance is noted in the Figure 3(c). In this case, the GPU performance is achieved to be
significantly higher than the multi-core. The arithmetic intensity is high for this application as
each thread needs to estimate more number of pixels in the target image, precisely 4 (the
upsampling factor).
Kernel Timing Results.
Table I presents the runtime measurements of the kernels in single core, multi-core and GPU for
different image sizes. The timings given for GPU code also include the data transfer time from
host to GPU memory and vice-versa. The GPU code maintains the efficiency even with the
increase in the image size. The GPU version of classic kernel has achieved a factor of 175x over
the serial implementation.An improvement factor of 75x was observed for steering kernel.
Table 1. Kernel execution timings(in seconds)
Image size Regression
method
Single core Multi-core GPU
512x 512 Classic kernel 11.765 1.765 0.067
512x 512 Steering kernel 105.140 18.200 1.470
1024x 1024 Classic kernel 47.741 6.930 0.270
1024x 1024 Steering kernel 427.701 102.234 5.819
4.2 QUALITATIVE IMPROVEMENT
The proposed algorithm has been compared with the algorithm proposed by Takeda et al. We
found that by incorporating an additional post processing module based on median filter(in which
the spurious edges are suppressed)into the Takeda algorithm, the proposed algorithm is giving
better than the original algorithm. Both the algorithms have been applied on Lena gray scale
image. The image is corrupted by Gaussian noise with standard deviation of 15, 25, 35 and 45
and then algorithms have been applied to denoise them. As shown in the figure, the error obtained
in the proposed algorithm is less than that of the Takeda’s algorithm. In our algorithm we have
used threshold value as 1% of the maximum edge strength. We have used median over a
neighbourhood of 1 pixel distance in fixing the value corresponding to spurious edges.
The RMSE value reaches a minimum after some iterations. Graphs corresponding to different
images after different iterations is presented in Figure 4.
18 Computer Science & Information Technology (CS & IT)
In denoising the Lena image with Gaussian noise = 15, Takeda’s algorithm reached RMSE of
6.3917 while our algorithm reached 6.386. Both of them reach their minimum RMSE value in 8௧௛
iteration and it is shown in Figure 4(a).
In denoising the Lena Image with noise of 25, Takeda’s algorithm reached 7.8935 while our
algorithm reached 7.8778. Both of them reach their minimum RMSE value in 9௧௛
iteration and it
is shown in Figure 4(b).
In denoising the Lena Image with noise of 35, Takeda’s algorithm reached 9.2702 while our
algorithm reached 9.2059. Both of them reach their minimum RMSE value in 18௧௛
iteration and
it is shown in Figure 4(c).
Finally, in denoising the Lena Image with noise of 45, Takeda’s algorithm reached 10.823 while
our algorithm reached 10.822. They reached their minimum RMSE value in 18௧௛
iteration and it
is shown in Figure 4(d).
We have shown the results of denoising the Lena Image with noise 35 in the Figure 5. Figure 5(a)
denotes the original Lena image. Figure 5(b) is the Lena image with a Gaussian noise of 35.
Figure 5(c) gives us the suppressed edges, the edges which have been suppressed by the proposed
algorithm.
4(a)
4(b)
Computer Science & Information Technology (CS & IT)
Fig. 4. Comparison of Our Median Based Parallel Steering Kernel Regression Technique
Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45.
5(a)
Fig. 5. Comparison of our algorithm to Ste
Lena image with Gaussian noise of 35. (c) Suppressed spurious edges
Computer Science & Information Technology (CS & IT)
4(c)
4(d)
Median Based Parallel Steering Kernel Regression Technique
Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45.
5(a) 5(b) 5(c)
Comparison of our algorithm to Steering Kernel Regression. (a) Original Lena image. (b)
Lena image with Gaussian noise of 35. (c) Suppressed spurious edges
19
Median Based Parallel Steering Kernel Regression Technique with
Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45.
ering Kernel Regression. (a) Original Lena image. (b)
20 Computer Science & Information Technology (CS & IT)
5. CONCLUSIONS AND FUTURE WORK
Steering kernel regression is indeed an innovative work in image reconstruction. This algorithm
was successfully parallelized on both multi-core, GPU platforms using Matlab and CUDA.
Implementations for different applications with varying parameters have been evaluated. From
the observations, it is clearly evident that the time complexity of steering kernel has been
reduced. On an average, a gain of 6 × and 21 × speed-up was achieved on the multi-core and
GPU platforms respectively. Also an additional post processing module, based on median filter,
has been introduced for the purpose of suppressing the spurious edges. This improvement has
given better results than the original algorithm.
In future, this work could be extended to video data. All the image datasets considered here fit
within the limits of GPU memory. Computing Steering Kernel regression on single GPU may not
be scalable to larger images, as the on-board memory of GPU is a major constraint. Thus,
parallelizing the algorithm for multiple GPUs may lead to better results.
Acknowledgment
We would like to dedicate our efforts to our Divine Founder Chancellor Bhagawan Sri Sathya Sai
Baba, without whom this work wouldn’t have been possible. We would like to acknowledge
Takeda et.al. for making the Kernel Regression Tool-box software available on-line. This work
was partially supported by nVIDIA, Pune, grant under Professor partnership program and DRDO
grant under Extramural Research and Intellectual Property rights.
REFERENCES
[1] Takeda, Hiroyuki, Sina Farsiu, and Peyman Milanfar. "Kernel regression for image processing and
reconstruction." Image Processing, IEEE Transactions on 16.2 (2007): 349-366.
[2] Li, Xin, and Michael T. Orchard. "New edge-directed interpolation." Image Processing, IEEE
Transactions on 10.10 (2001): 1521-1527.
[3] Bose, N. K., and Nilesh A. Ahuja. "Superresolution and noise filtering using moving least squares."
Image Processing, IEEE Transactions on 15.8 (2006): 2239-2248.
[4] NVIDIA CUDA Programming Guide, [Online], Available at : http://developer.download.nvidia.com/.
[5] Kraus, Martin, Mike Eissele, and Magnus Strengert. "GPU-based edge-directed image interpolation."
Image Analysis. Springer Berlin Heidelberg, 2007. 532-541.
[6] Tenllado, Christian, Javier Setoain, Manuel Prieto, Luis Piñuel, and Francisco Tirado. "Parallel
implementation of the 2D discrete wavelet transform on graphics processing units: filter bank versus
lifting." Parallel and Distributed Systems, IEEE Transactions on 19, no. 3 (2008): 299-310.
[7] Allusse, Yannick, Patrick Horain, Ankit Agarwal, and Cindula Saipriyadarshan. "GpuCV: A GPU-
accelerated framework for image processing and computer vision." In Advances in Visual
Computing, pp. 430-439. Springer Berlin Heidelberg, 2008.
[8] Risojević, Vladimir, Zdenka Babić, Tomaž Dobravec, and Patricio Bulić. "A GPU imple-mentation of
a structural-similarity-based aerial-image classification." The Journal of Su-percomputing: 1-19.

More Related Content

What's hot

A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...
A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...
A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...cscpconf
 
Design and development of DrawBot using image processing
Design and development of DrawBot using image processing Design and development of DrawBot using image processing
Design and development of DrawBot using image processing IJECEIAES
 
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...mlaij
 
A novel approach for satellite imagery storage by classifying the non duplica...
A novel approach for satellite imagery storage by classifying the non duplica...A novel approach for satellite imagery storage by classifying the non duplica...
A novel approach for satellite imagery storage by classifying the non duplica...IAEME Publication
 
A novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classifyA novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classifyiaemedu
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...ijassn
 
Paper on experimental setup for verifying - "Slow Learners are Fast"
Paper  on experimental setup for verifying  - "Slow Learners are Fast"Paper  on experimental setup for verifying  - "Slow Learners are Fast"
Paper on experimental setup for verifying - "Slow Learners are Fast"Robin Srivastava
 
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS ijdpsjournal
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filterAn fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filtereSAT Publishing House
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter eSAT Journals
 
Image transmission in wireless sensor networks
Image transmission in wireless sensor networksImage transmission in wireless sensor networks
Image transmission in wireless sensor networkseSAT Publishing House
 
Hybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transformsHybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transformsOmar Ghazi
 
Fpga implementation of fusion technique for fingerprint application
Fpga implementation of fusion technique for fingerprint applicationFpga implementation of fusion technique for fingerprint application
Fpga implementation of fusion technique for fingerprint applicationIAEME Publication
 

What's hot (16)

A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...
A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...
A REGULARIZED ROBUST SUPER-RESOLUTION APPROACH FORALIASED IMAGES AND LOW RESO...
 
A0270107
A0270107A0270107
A0270107
 
Design and development of DrawBot using image processing
Design and development of DrawBot using image processing Design and development of DrawBot using image processing
Design and development of DrawBot using image processing
 
Gi3511181122
Gi3511181122Gi3511181122
Gi3511181122
 
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...
AN ENHANCEMENT FOR THE CONSISTENT DEPTH ESTIMATION OF MONOCULAR VIDEOS USING ...
 
A novel approach for satellite imagery storage by classifying the non duplica...
A novel approach for satellite imagery storage by classifying the non duplica...A novel approach for satellite imagery storage by classifying the non duplica...
A novel approach for satellite imagery storage by classifying the non duplica...
 
A novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classifyA novel approach for satellite imagery storage by classify
A novel approach for satellite imagery storage by classify
 
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
CONFIGURABLE TASK MAPPING FOR MULTIPLE OBJECTIVES IN MACRO-PROGRAMMING OF WIR...
 
GRID COMPUTING
GRID COMPUTINGGRID COMPUTING
GRID COMPUTING
 
Paper on experimental setup for verifying - "Slow Learners are Fast"
Paper  on experimental setup for verifying  - "Slow Learners are Fast"Paper  on experimental setup for verifying  - "Slow Learners are Fast"
Paper on experimental setup for verifying - "Slow Learners are Fast"
 
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS
STUDY OF TASK SCHEDULING STRATEGY BASED ON TRUSTWORTHINESS
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filterAn fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter
 
An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter An fpga implementation of the lms adaptive filter
An fpga implementation of the lms adaptive filter
 
Image transmission in wireless sensor networks
Image transmission in wireless sensor networksImage transmission in wireless sensor networks
Image transmission in wireless sensor networks
 
Hybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transformsHybrid compression based stationary wavelet transforms
Hybrid compression based stationary wavelet transforms
 
Fpga implementation of fusion technique for fingerprint application
Fpga implementation of fusion technique for fingerprint applicationFpga implementation of fusion technique for fingerprint application
Fpga implementation of fusion technique for fingerprint application
 

Similar to MEDIAN BASED PARALLEL STEERING KERNEL REGRESSION FOR IMAGE RECONSTRUCTION

IRJET- Handwritten Decimal Image Compression using Deep Stacked Autoencoder
IRJET- Handwritten Decimal Image Compression using Deep Stacked AutoencoderIRJET- Handwritten Decimal Image Compression using Deep Stacked Autoencoder
IRJET- Handwritten Decimal Image Compression using Deep Stacked AutoencoderIRJET Journal
 
Image reconstruction through compressive sampling matching pursuit and curvel...
Image reconstruction through compressive sampling matching pursuit and curvel...Image reconstruction through compressive sampling matching pursuit and curvel...
Image reconstruction through compressive sampling matching pursuit and curvel...IJECEIAES
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlceSAT Publishing House
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlceSAT Journals
 
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...IRJET Journal
 
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORS
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORSCOMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORS
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORSIRJET Journal
 
A Comparative Case Study on Compression Algorithm for Remote Sensing Images
A Comparative Case Study on Compression Algorithm for Remote Sensing ImagesA Comparative Case Study on Compression Algorithm for Remote Sensing Images
A Comparative Case Study on Compression Algorithm for Remote Sensing ImagesDR.P.S.JAGADEESH KUMAR
 
Car Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep LearningCar Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep LearningIRJET Journal
 
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...ijcax
 
A Review on Color Recognition using Deep Learning and Different Image Segment...
A Review on Color Recognition using Deep Learning and Different Image Segment...A Review on Color Recognition using Deep Learning and Different Image Segment...
A Review on Color Recognition using Deep Learning and Different Image Segment...IRJET Journal
 
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHM
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHMA ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHM
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHMcsandit
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET Journal
 
Survey paper on image compression techniques
Survey paper on image compression techniquesSurvey paper on image compression techniques
Survey paper on image compression techniquesIRJET Journal
 
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...IRJET Journal
 
0 nidhi sethi_finalpaper--1-5
0 nidhi sethi_finalpaper--1-50 nidhi sethi_finalpaper--1-5
0 nidhi sethi_finalpaper--1-5Alexander Decker
 
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...IJTET Journal
 
Stereo matching based on absolute differences for multiple objects detection
Stereo matching based on absolute differences for multiple objects detectionStereo matching based on absolute differences for multiple objects detection
Stereo matching based on absolute differences for multiple objects detectionTELKOMNIKA JOURNAL
 
IRJET- Efficient JPEG Reconstruction using Bayesian MAP and BFMT
IRJET-  	  Efficient JPEG Reconstruction using Bayesian MAP and BFMTIRJET-  	  Efficient JPEG Reconstruction using Bayesian MAP and BFMT
IRJET- Efficient JPEG Reconstruction using Bayesian MAP and BFMTIRJET Journal
 

Similar to MEDIAN BASED PARALLEL STEERING KERNEL REGRESSION FOR IMAGE RECONSTRUCTION (20)

IRJET- Handwritten Decimal Image Compression using Deep Stacked Autoencoder
IRJET- Handwritten Decimal Image Compression using Deep Stacked AutoencoderIRJET- Handwritten Decimal Image Compression using Deep Stacked Autoencoder
IRJET- Handwritten Decimal Image Compression using Deep Stacked Autoencoder
 
Image reconstruction through compressive sampling matching pursuit and curvel...
Image reconstruction through compressive sampling matching pursuit and curvel...Image reconstruction through compressive sampling matching pursuit and curvel...
Image reconstruction through compressive sampling matching pursuit and curvel...
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlc
 
Neural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlcNeural network based image compression with lifting scheme and rlc
Neural network based image compression with lifting scheme and rlc
 
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...
IMPROVEMENT IN IMAGE DENOISING OF HANDWRITTEN DIGITS USING AUTOENCODERS IN DE...
 
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORS
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORSCOMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORS
COMPOSITE IMAGELET IDENTIFIER FOR ML PROCESSORS
 
Ay33292297
Ay33292297Ay33292297
Ay33292297
 
Ay33292297
Ay33292297Ay33292297
Ay33292297
 
A Comparative Case Study on Compression Algorithm for Remote Sensing Images
A Comparative Case Study on Compression Algorithm for Remote Sensing ImagesA Comparative Case Study on Compression Algorithm for Remote Sensing Images
A Comparative Case Study on Compression Algorithm for Remote Sensing Images
 
Car Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep LearningCar Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep Learning
 
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
Cell Charge Approximation for Accelerating Molecular Simulation on CUDA-Enabl...
 
A Review on Color Recognition using Deep Learning and Different Image Segment...
A Review on Color Recognition using Deep Learning and Different Image Segment...A Review on Color Recognition using Deep Learning and Different Image Segment...
A Review on Color Recognition using Deep Learning and Different Image Segment...
 
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHM
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHMA ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHM
A ROS IMPLEMENTATION OF THE MONO-SLAM ALGORITHM
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
 
Survey paper on image compression techniques
Survey paper on image compression techniquesSurvey paper on image compression techniques
Survey paper on image compression techniques
 
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
Translation Invariance (TI) based Novel Approach for better De-noising of Dig...
 
0 nidhi sethi_finalpaper--1-5
0 nidhi sethi_finalpaper--1-50 nidhi sethi_finalpaper--1-5
0 nidhi sethi_finalpaper--1-5
 
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...
Supervised Blood Vessel Segmentation in Retinal Images Using Gray level and M...
 
Stereo matching based on absolute differences for multiple objects detection
Stereo matching based on absolute differences for multiple objects detectionStereo matching based on absolute differences for multiple objects detection
Stereo matching based on absolute differences for multiple objects detection
 
IRJET- Efficient JPEG Reconstruction using Bayesian MAP and BFMT
IRJET-  	  Efficient JPEG Reconstruction using Bayesian MAP and BFMTIRJET-  	  Efficient JPEG Reconstruction using Bayesian MAP and BFMT
IRJET- Efficient JPEG Reconstruction using Bayesian MAP and BFMT
 

More from cscpconf

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR cscpconf
 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATIONcscpconf
 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...cscpconf
 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIEScscpconf
 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICcscpconf
 
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS cscpconf
 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS cscpconf
 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICcscpconf
 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINcscpconf
 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...cscpconf
 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMcscpconf
 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...cscpconf
 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWcscpconf
 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKcscpconf
 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...cscpconf
 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAcscpconf
 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHcscpconf
 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...cscpconf
 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGEcscpconf
 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTcscpconf
 

More from cscpconf (20)

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
 
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING – A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEW
 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
 

Recently uploaded

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
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaVirag Sontakke
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Jisc
 
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
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
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
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 

Recently uploaded (20)

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
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Painted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of IndiaPainted Grey Ware.pptx, PGW Culture of India
Painted Grey Ware.pptx, PGW Culture of India
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...Procuring digital preservation CAN be quick and painless with our new dynamic...
Procuring digital preservation CAN be quick and painless with our new dynamic...
 
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
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
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
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 

MEDIAN BASED PARALLEL STEERING KERNEL REGRESSION FOR IMAGE RECONSTRUCTION

  • 1. Sundarapandian et al. (Eds) : ACITY, AIAA, CNSA, DPPR, NeCoM, WeST, DMS, P2PTM, VLSI - 2013 pp. 11–20, 2013. © CS & IT-CSCP 2013 DOI : 10.5121/csit.2013.3402 MEDIAN BASED PARALLEL STEERING KERNEL REGRESSION FOR IMAGE RECONSTRUCTION G Dada Khalandhar, V Sai Ram, M Srinivasa Rao, Lalith Srikanth C, Pallav Kumar Baruah, Balasubramanian S, R Raghunatha Sarma Sri Satya Sai Institute of Higher Learning, India {dadakhalandhar, v.sairam1, msrini.svn}@gmail.com, {lalithsrikanthc, pkbaruah, sbalasubramanian, rraghunathasarma}@sssihl.edu.in ABSTRACT Image reconstruction is a process of obtaining the original image from corrupted data. Applications of image reconstruction include Computer Tomography, radar imaging, weather forecasting etc. Recently steering kernel regression method has been applied for image reconstruction [1]. There are two major drawbacks in this technique. Firstly, it is computationally intensive. Secondly, output of the algorithm suffers form spurious edges (especially in case of denoising). We propose a modified version of Steering Kernel Regression called as Median Based Parallel Steering Kernel Regression Technique. In the proposed algorithm the first problem is overcome by implementing it in on GPUs and multi-cores. The second problem is addressed by a gradient based suppression in which median filter is used. Our algorithm gives better output than that of the Steering Kernel Regression. The results are compared using Root Mean Square Error(RMSE). Our algorithm has also shown a speedup of 21x using GPUs and shown speedup of 6x using multi-cores. KEYWORDS Steering Kernel Regression, Local Gradient, Multi-core, GPU. 1. INTRODUCTION Images have become inherent part of day to day life. The image processing algorithms to improve the quality of images are innumerable, but many of them are application specific. Recently, Takeda et al.[1] have proposed a novel regression technique for image reconstruction known as Steering Kernel Regression. There are two major drawbacks associated with this technique. It is computationally intensive and, the output of the algorithm suffers from spurious edges (especially in case of denoising). In the proposed algorithm, the first problem is overcome by implementing the algorithm on GPUs and multi-cores. The second problem is addressed by deblurring of the output using median filter. GPU based efficient solutions for data parallel image
  • 2. 12 Computer Science & Information Technology (CS & IT) processing applications have been proposed by many authors [5][6][7][8]. Like many image processing applications, Steering Kernel Regression also has inherent data parallelism. Taking advantage of this inherent parallelism, we have identified and implemented the three most time consuming parts of the algorithm both on multi-core and GPUs. We have addressed the second problem by suppressing the spurious edges. These edges are produced due to noise and get stronger with the number of iterations of the algorithm. In the proposed technique we use median filter at the end of each iteration to remove the spurious edges. 2. DATA ADAPTIVE KERNEL REGRESSION Regression is a process of finding the underlying signal in a given data, where the original signal is corrupted by noise. Many image regression techniques like edge-directed interpolation [2], and moving least squares [3] were proposed. Classical parametric regression methods assume that there is a specific model for underlying signal and estimate the parameters of this model. The parametric estimation has been used in major image processing techniques. The model generated out of the estimated parameters is given as the best possible estimate of the underlying signal. In contrast, non parametric regression methods don’t assume any underlying model, but depend on the data itself to arrive at the original signal. Regression function is the implicit model that has to be estimated. Takeda et al. [1] introduced steering kernel regression for image processing and reconstruction and have shown that it out-performs existing regression techniques. A brief introduction to the algorithm is given as follows: The measured data is given by ‫ݕ‬௜ = ‫ݔ(ݖ‬௜) + ߝ௜, i=1,...,P, where ‫ݔ(ݖ‬௜) is a regression function acting on pixel coordinates, ߝ௜s are independent and identically distributed zero mean noise values, P indicates total number of pixels. Assuming that the regression function is smooth to a certain order N, the objective functional estimation of ‫)ݔ(ݖ‬ can be deduced (detailed derivation is given in [1]) by minimization of the following functional: min {ఉ೙} Σ௜ୀଵ ௉ [‫ݕ‬௜ − ߚ଴ − ߚଵ ் (‫ݔ‬௜ − ‫)ݔ‬ − ߚଶ ் (‫ݔ‬௜ − ‫)ݔ‬ଶ − … ߚே ் (‫ݔ‬௜ − ‫)ݔ‬ே ]ଶ ଵ ௛ ‫ܭ‬ு ቀ ௫೔ି௫ ௛ ቁ (1) where ߚ௜ is ݅௧௛ derivative of ‫)ݔ(ݖ‬ and ℎ is global smoothing parameter. ‫ܭ‬ு(‫ݔ‬௜ − ‫)ݔ‬ is the kernel weight assigned to the samples and is defined such that the nearby samples are given higher weight than the farther ones. Takeda et al.[1] have proposed to use a non-linear combination of data. In other words, data adaptive kernel regression not only depends on the sample location and density but also on the radiometric properties. The incorporation of these radiometric properties were done by adapting the regression kernel locally, so that the kernel aligns itself along the features such as edges, than across them. This enables us to capture the features in better detail. The major contribution of Takeda et al.[1] is to use adaptive kernel regression for image processing and reconstruction. They call this adaptive technique, steering kernel regression.
  • 3. Computer Science & Information Technology (CS & IT) 13 The central notion of the steering kernel regression is to estimate the local gradients. The gradient information captures the features of the image. These in turn are used to find the weights to be assigned to the neighboring samples. Pixel near an edge will be influenced by the pixels of the same side of the edge. With this intuition in mind, the dominant orientation of the local gradients are measured. The kernel is then effectively steered locally based on this dominant orientation. Our Median Based Parallel Steering Kernel Regression Technique is an iterative technique. The output of the previous iteration is passed as input for the next iteration. As the first step of the algorithm, output of the Classical Kernel Regression is passed as input for the first iteration of the algorithm. Brief description of the algorithm is as follows: 1. Finding local gradients at each image point. 2. Based on the gradient value at a pixel, the scaling, elongation and rotation parameters are estimated. There are used to construct the steering matrix. 3. Application of Steering Kernel Regression algorithm. 4. Post-processing of the resultant image to suppress spurious edges. 5. Repeating the steps 2 to 4, till the noise level in the output image is below the predefined threshold. 3. IMPLEMENTATION The serial implementation of steps 1 to 3 have been implemented by Takeda et.al. We have used their code, which is available at http://www.soe.ucsc.edu/ htakeda/MatlabApp, for the improvement. The parallel implementation of the algorithm is discussed in section 3.1. In section 3.2 we dwell on the method to suppress spurious edges. 3.1 PARALLEL IMPLEMENTATION The serial code was programmed in Matlab and is available at http://www.soe.ucsc.edu/ htakeda/MatlabApp. The code was profiled using Matlab Profiling Tool and it was observed that the steps 1 and 3 of steering kernel regression are most time consuming. On careful analysis, we discovered that these steps have a lot of scope for parallelism. The serial implementation of step 3 consists the following ideas: 1. To all pixels, in each iteration running till the square of the upscale factor, determine the feature matrix. 2. For each pixel, • Obtain the weight matrix using the neighboring samples of covariance matrix. • Compute equivalent kernel which involves inverse of a matrix resulting from the product of the feature and weight matrices. • Estimate the pixel values and gradient structure values for the output image. In Step 1, classic regression method computes feature matrix, weight matrix and equivalent kernel. The most time consuming action involved in this method is to estimate the target values, local gradient structure values along the axes directions.
  • 4. 14 Computer Science & Information Technology (CS & IT) Steps 1 and 3 of steering kernel regression involve a lot of data-parallelism and CUDA is used to parallelize these steps. Mex interface feature integrates CUDA into Matlab. We shall now discuss the parallel implementation of the step 3 : • Copy the original image, covariance matrix, feature matrix from the CPU host memory to GPU global memory. • Kernel is launched with the total number of threads equaling the total number of pixels in the source image. • A thread is assigned to each pixel and it does the above mentioned steps of determining weight matrix and equivalent kernel. • It contributes ܴଶ pixels in the estimated output image, where R is the upscaling factor. Computing the steering matrix (step 2) is done on multi-core for speed up of the whole process. OPTIMIZATIONS Since shared memory is on chip, accesses to it are significantly faster than accesses to global memory. Feature matrix is copied from host memory to shared memory of GPU. Only one thread in a block will get the data from global to shared memory. Shared memory could only fit feature matrix as the image size exceeds it’s space limitations. For the remaining data, the global memory request for a warp is split into two memory requests, one for each half-warp, which are issued independently. GPU hardware can combine all memory requests to a single memory transaction if the threads in a warp access consecutive memory locations[4]. Our model is designed in such a way that the memory access pattern by threads is coalesced, thereby improving performance and ensuring low latency. The multi-core code is implemented using the Parallel Computing Toolbox of Matlab environment. The performance comparison of these two implementations is given in the following section. 3.2 SPURIOUS EDGE SUPPRESSION Spurious edges produced by single iteration of the steering kernel algorithm are not as strong as the original edges in the image. Due to which the gradient strength of the spurious edges is much lower than that of the original edges. Using this idea, we can suppress the edges which have the gradient strength less than a given threshold(it will be set based on the value of edges in the image). The value of the threshold depends upon the application. It can be static or given by a heuristic. We have used thresholds derived from the maximum gradient values. For suppressing the spurious edge pixels we applied median filter over the pixel’s neighbourhood. 4. RESULTS 4.1 COMPUTATIONAL EFFICIENCY In this section we show the results of using GPUs and multicores to improve the computational complexity of the first three steps of our algorithm(Steering Kernel Regression). We observe that the computational efficiency of the algorithm has been improved while maintaining the quality of the output images. We can show that the GPU and multi-core implementations are consistent with results of original serial implementation. In the next section, we present the results of our
  • 5. Computer Science & Information Technology (CS & IT) 15 algorithm(which incorporates post processing module for suppressing the spurious edges)in comparison with Steering Kernel Regression. EXPERIMENTAL SETUP For all experiments, the parallelized version of the steering kernel regression was run on Tesla T20 based Fermi GPU. The serial and multi-core implementations of the same were run in Matlab R2012a on a node with Intel(R) Xeon(R) 2.13GHz processor and 24 GB RAM. CUDA timers were employed, which have resolution upto milliseconds to time the CUDA kernels and more importantly they are less subject to perturbations due to other events like page faults, interrupt from the disks. Also CudaEventRecord is asynchronous; there is less of Heisenberg effect when timing is short, exactly suitable to GPU-intensive operations as in these applications. For the multi-core code timers provided by Matlab were used. EXPERIMENTS. Experiments and the performance results of GPU, multi-core implementations on simulated and real data are presented. These experiments were conducted on diverse applications and attest the claims made in previous sections. In all experiments, we considered regularly sampled data. An important note to consider is the determination of the maximum speed up achieved by an application. Understanding the type of scaling that is applicable in any application is vital in estimating the speed up. All the applications that are mentioned here exhibit scaling. An instance of this phenomenon is shown in Figure 1. One can observe that for a fixed problem size, increase in the number of processing elements, the time of execution decreases. Fig. 1. Plot of execution time against number of processing elements. Fig. 2. RMSE(root mean square error) of the resulted image with respect to original image against Number of iterations
  • 6. 16 Computer Science & Information Technology (CS & IT) Quality Test. We performed the quality test for the image by visual inspection and RMSE (root mean square error) values obtained from all the implementations. We have tested the comparisons between the serial code, multi-core and CUDA when applied on a CT scan image with Gaussian noise with standard deviation ߪ = 35. The RMSE values of the images resulted from multi-core and GPU implementations are 13.2, which is closer to serial result. We observed that quality was maintained with out any visually plausible differences. For all the experiments, the initial estimates are given by the classical kernel regression method. Different experiments that were performed are: Denoising Experiment. Well known Lena image of 512 × 512 size and a picture of a pirate with 1024 × 1024 size were consideration for testing. Controlled simulated experiment was set up by adding white Gaussian noise with standard deviation of ߪ = 25 to both the images. We set global smoothing parameter ℎ = 2.4. The choice of number of iterations was set after careful analysis of the behavior of the application. The graph in the Figure 2, indicates that RMSE (root mean square error) values of the resulted image drop till a point and then it raises. This point was observed to be 12 for this application. In this way, a limit for the number of iterations is deduced for all the mentioned images. The RMSE values of the resulted images are 6.6426 and 9.2299. Clearly, the dominance of the GPU performance over multi-core can be evidently seen in Figure 3(a). The multi-core code was run with 12 Matlab workers and as expected a near 10x performance is achieved for image size 1024 × 1024. The slack is possibly due to the communication overhead of the function calls performed by Matlab. Fig. 3. Comparison of various algorithms: (a) Speedup factors against image sizes for the denoise application. (b) Speedup factors against image sizes for the compression artifact removal. (c) Speedup factors against image sizes for the upscaling. Compression artifact removal. Pepper image was considered for this experiment and compressed it by Matlab JPEG routine with a quality parameter 10 and RMSE of 9.76. The number of iterations and ℎ were set to 10 and 2.4. RMSE values for single core version is 8.5765, multi-core version is 8.5759 and that of GPU is
  • 7. Computer Science & Information Technology (CS & IT) 17 8.5762. The performance is shown in Figure 3(b). The multi-core code has a average speed up factor of 6x over serial implementation whereas GPU has speed up of 20x. Upscaling. We performed an upscale operation on the lena image and on the pirate’s picture. The performance is noted in the Figure 3(c). In this case, the GPU performance is achieved to be significantly higher than the multi-core. The arithmetic intensity is high for this application as each thread needs to estimate more number of pixels in the target image, precisely 4 (the upsampling factor). Kernel Timing Results. Table I presents the runtime measurements of the kernels in single core, multi-core and GPU for different image sizes. The timings given for GPU code also include the data transfer time from host to GPU memory and vice-versa. The GPU code maintains the efficiency even with the increase in the image size. The GPU version of classic kernel has achieved a factor of 175x over the serial implementation.An improvement factor of 75x was observed for steering kernel. Table 1. Kernel execution timings(in seconds) Image size Regression method Single core Multi-core GPU 512x 512 Classic kernel 11.765 1.765 0.067 512x 512 Steering kernel 105.140 18.200 1.470 1024x 1024 Classic kernel 47.741 6.930 0.270 1024x 1024 Steering kernel 427.701 102.234 5.819 4.2 QUALITATIVE IMPROVEMENT The proposed algorithm has been compared with the algorithm proposed by Takeda et al. We found that by incorporating an additional post processing module based on median filter(in which the spurious edges are suppressed)into the Takeda algorithm, the proposed algorithm is giving better than the original algorithm. Both the algorithms have been applied on Lena gray scale image. The image is corrupted by Gaussian noise with standard deviation of 15, 25, 35 and 45 and then algorithms have been applied to denoise them. As shown in the figure, the error obtained in the proposed algorithm is less than that of the Takeda’s algorithm. In our algorithm we have used threshold value as 1% of the maximum edge strength. We have used median over a neighbourhood of 1 pixel distance in fixing the value corresponding to spurious edges. The RMSE value reaches a minimum after some iterations. Graphs corresponding to different images after different iterations is presented in Figure 4.
  • 8. 18 Computer Science & Information Technology (CS & IT) In denoising the Lena image with Gaussian noise = 15, Takeda’s algorithm reached RMSE of 6.3917 while our algorithm reached 6.386. Both of them reach their minimum RMSE value in 8௧௛ iteration and it is shown in Figure 4(a). In denoising the Lena Image with noise of 25, Takeda’s algorithm reached 7.8935 while our algorithm reached 7.8778. Both of them reach their minimum RMSE value in 9௧௛ iteration and it is shown in Figure 4(b). In denoising the Lena Image with noise of 35, Takeda’s algorithm reached 9.2702 while our algorithm reached 9.2059. Both of them reach their minimum RMSE value in 18௧௛ iteration and it is shown in Figure 4(c). Finally, in denoising the Lena Image with noise of 45, Takeda’s algorithm reached 10.823 while our algorithm reached 10.822. They reached their minimum RMSE value in 18௧௛ iteration and it is shown in Figure 4(d). We have shown the results of denoising the Lena Image with noise 35 in the Figure 5. Figure 5(a) denotes the original Lena image. Figure 5(b) is the Lena image with a Gaussian noise of 35. Figure 5(c) gives us the suppressed edges, the edges which have been suppressed by the proposed algorithm. 4(a) 4(b)
  • 9. Computer Science & Information Technology (CS & IT) Fig. 4. Comparison of Our Median Based Parallel Steering Kernel Regression Technique Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45. 5(a) Fig. 5. Comparison of our algorithm to Ste Lena image with Gaussian noise of 35. (c) Suppressed spurious edges Computer Science & Information Technology (CS & IT) 4(c) 4(d) Median Based Parallel Steering Kernel Regression Technique Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45. 5(a) 5(b) 5(c) Comparison of our algorithm to Steering Kernel Regression. (a) Original Lena image. (b) Lena image with Gaussian noise of 35. (c) Suppressed spurious edges 19 Median Based Parallel Steering Kernel Regression Technique with Takeda’s Original algorithm on Lena image with Gaussian noise of (a)15 (b)25 (c)35 (d)45. ering Kernel Regression. (a) Original Lena image. (b)
  • 10. 20 Computer Science & Information Technology (CS & IT) 5. CONCLUSIONS AND FUTURE WORK Steering kernel regression is indeed an innovative work in image reconstruction. This algorithm was successfully parallelized on both multi-core, GPU platforms using Matlab and CUDA. Implementations for different applications with varying parameters have been evaluated. From the observations, it is clearly evident that the time complexity of steering kernel has been reduced. On an average, a gain of 6 × and 21 × speed-up was achieved on the multi-core and GPU platforms respectively. Also an additional post processing module, based on median filter, has been introduced for the purpose of suppressing the spurious edges. This improvement has given better results than the original algorithm. In future, this work could be extended to video data. All the image datasets considered here fit within the limits of GPU memory. Computing Steering Kernel regression on single GPU may not be scalable to larger images, as the on-board memory of GPU is a major constraint. Thus, parallelizing the algorithm for multiple GPUs may lead to better results. Acknowledgment We would like to dedicate our efforts to our Divine Founder Chancellor Bhagawan Sri Sathya Sai Baba, without whom this work wouldn’t have been possible. We would like to acknowledge Takeda et.al. for making the Kernel Regression Tool-box software available on-line. This work was partially supported by nVIDIA, Pune, grant under Professor partnership program and DRDO grant under Extramural Research and Intellectual Property rights. REFERENCES [1] Takeda, Hiroyuki, Sina Farsiu, and Peyman Milanfar. "Kernel regression for image processing and reconstruction." Image Processing, IEEE Transactions on 16.2 (2007): 349-366. [2] Li, Xin, and Michael T. Orchard. "New edge-directed interpolation." Image Processing, IEEE Transactions on 10.10 (2001): 1521-1527. [3] Bose, N. K., and Nilesh A. Ahuja. "Superresolution and noise filtering using moving least squares." Image Processing, IEEE Transactions on 15.8 (2006): 2239-2248. [4] NVIDIA CUDA Programming Guide, [Online], Available at : http://developer.download.nvidia.com/. [5] Kraus, Martin, Mike Eissele, and Magnus Strengert. "GPU-based edge-directed image interpolation." Image Analysis. Springer Berlin Heidelberg, 2007. 532-541. [6] Tenllado, Christian, Javier Setoain, Manuel Prieto, Luis Piñuel, and Francisco Tirado. "Parallel implementation of the 2D discrete wavelet transform on graphics processing units: filter bank versus lifting." Parallel and Distributed Systems, IEEE Transactions on 19, no. 3 (2008): 299-310. [7] Allusse, Yannick, Patrick Horain, Ankit Agarwal, and Cindula Saipriyadarshan. "GpuCV: A GPU- accelerated framework for image processing and computer vision." In Advances in Visual Computing, pp. 430-439. Springer Berlin Heidelberg, 2008. [8] Risojević, Vladimir, Zdenka Babić, Tomaž Dobravec, and Patricio Bulić. "A GPU imple-mentation of a structural-similarity-based aerial-image classification." The Journal of Su-percomputing: 1-19.