SlideShare una empresa de Scribd logo
1 de 8
Descargar para leer sin conexión
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 799
A NEW APPROACH FOR GENERALISED UNSHARP MASKING
ALOGORITHM
Sunkari Sridhar1
, Shaik Meeravali2
1
Assistant Professor, 2
Professor& HOD, Department of ECE, RRSCET, Muthangi, Andhra Pradesh, India
sridharsunkari@gmail.com, shaik_5045@gmail.com
Abstract
We propose a new generalized algorithm using the exploratory data model as unified frame work. Enhancement of contrast and
sharpness of an image is required in many applications. In applications like medical radiography enhancing movie features and
observing the planets it is necessary to enhance the contrast and sharpness of an image. Unsharp masking is good tool for sharpness
enhancement; it is an anti blurring filter. By using unsharp masking algorithm for sharpness enhancement, the resultant image
suffering with two problems, first one is a hallo is appear around the edges of an image, and second one is rescaling process is needed
for the resultant image. The aim of this paper is to enhance the contrast and sharpness of an image simultaneously and to solve the
problems. In the proposed algorithm, we can adjust the two parameters controlling the contrast and sharpness to produce the desired
output. The proposed algorithm is designed to address issues:1) simultaneously enhancing contrast and sharpness by means of
individual treatment of the model component and the residual,2)reducing the halo effect by means of an edge-preserving filter using
Bilateral filter. Experimental results, which comparable to recent published results, shows that proposed algorithm is able to
significantly improve the sharpness and contrast of an image. This makes the proposed algorithm practically useful.
Index Terms: Bilateral filter, edge-preserving filter, exploratory data model, Image Enhancement, Unsharp Masking
-----------------------------------------------------------------------***-----------------------------------------------------------------------
1. INTRODUCTION
Digital image processing allows the use of much more
complex algorithms for image processing, and hence can offer
more sophisticated performance at simple tasks.
An image is defined as a two dimensional light intensity
function (�,), where �and �are spatial coordinates, and the
value f at any pair of coordinates (�,) is called intensity or
grey level value of the image at that point. We require
simultaneous enhancement of sharpness and contrast in many
applications. Based on this requirement a continuous research
is going on to develop new algorithms. We are having deferent
type sharpness enhancement techniques, among these unsharp
masking will gives enhanced sharpness with original image as
background. We find some unwanted details in the resultant
image. To avoid these we used new algorithms.
In this section firstly we discuss related works, which are
sharpness enhancement techniques including unsharp
masking, contrast enhancement and generalized linear system.
1.1 Sharpness Enhancement
1.1.1 High pass filter
The principal objective of sharpening is to highlight fine detail
in an image or to enhance detail that has been blurred, either in
error or as a natural effect of a particular method of image
acquisition. Uses of image sharpening vary and include
applications ranging from electronic printing and medical
imaging to industrial inspection and autonomous guidance in
military systems.
-1/9 -1/9 -1/9 Z1 Z1 Z1
-1/9 8/9 -1/9 Z1 Z1 Z1
-1/9 -1/9 -1/9 Z1 Z1 Z1
(a) High pass filter mask (b) Image gray level values
Fig-1: 3×3 High pass Filter mask and image gray level values.
That is, with reference to the response of the mask at any point
in the image is given by
4. FLOWCHART
R = 1/9∗ (−Z1−Z2−Z3−Z4+ (8*Z5) −Z6−Z7−Z8−Z9)
=1/9∗ (−Zi 9i=0+ (2*Z5)) (1)
Where Zi is the gray level of the mask of the pixel associated
with mask coefficient 1. As usual, the response of the mask is
defined with respect to its center location.
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 800
1.1.2. High boost filtering
High pass filtering in terms of subtracting a low pass image
from the original image, that is,
High pass = Original - Low pass.
However, in many cases where a high pass image is required,
also want to retain some of the low frequency components to
aid in the interpretation of the image. Thus, if multiply the
original image by an amplification factor A before subtracting
the low pass image, will get a high boost or high frequency
emphasis filter. Thus,
High boost = A. Original – Low pass
= (A-1). (Original) + Original – Low pass
= (A-1). (Original) + High pass
Now, if A = 1 we have a simple high pass filter. When A > 1
part of the original image is retained in the output. A simple
filter for high boost filtering is given by
-1/9 -1/9 -1/9
-1/9 ω/9 -1/9
-1/9 -1/9 -1/9
Fig-2: High boost filtering
Where ω = 9A-1.
1.1.3. Unsharp masking
The unsharp filter is a simple sharpening operator which
derives its name from the fact that it enhances edges (and
other high frequency components in an image) via a procedure
which subtracts an unsharp, or smoothed, version of an image
from the original image. The unsharp filtering technique is
commonly used in the photographic and printing industries for
crispening edges. The above two techniques resultant images
are having their back ground intensity levels are near to black,
but sometimes we require sharpness enhancement in the image
itself, for this case unsharp masking algorithm is use full.
The unsharp masking algorithm can be described by the
equation: where � is the input
image, �is the result of a linear low-pass filter, and the gain
(�>0) is a real scaling factor. The detail signal �= (�−�) is
usually amplified to increase the sharpness. However, the
signal contains 1) details of the image, 2) noise, and 3) over-
shoots and under-shoots in areas of sharp edges due to the
smoothing of edges. While the enhancement of noise is clearly
undesirable, the enhancement of the under-shoot and over-
shoot creates the visually unpleasant halo effect. Ideally, the
algorithm should only enhance the details of an image. Due to
this reason we require that the filter is not sensitive to noise
and does not smooth sharp edges. The edge preserving filters,
such as nonlinear filters, cubic filter and are used to replace
the linear low-pass filter. The former is less sensitive to noise
and the latter does not smooth sharp edges. To reduce the halo
effect, edge-preserving filters such as: adaptive Gaussian
filter, weighted least-squares based filters, non-local means
filter, and bilateral filters are used. An important problem
associated with the unsharp masking algorithm is that the
result is usually out of the range. For example, for an 8-bit
image, the range is [0,255]. A careful rescaling process is
usually needed for each image.
Fig-3:.Block Diagram of Classical Unsharp Masking
1.2. Contrast Enhancement
Contrast is a basic perceptual feature of an image .It is
Difficult to see the details in a low contrast image. To improve
the contrast or to enhance the contrast the adaptive histogram
equalization is frequently used. To enhance the contrast
recently some new advanced algorithms are developed, which
is retinex based algorithms.
1.2.1. Generalized Linear System
Before going to develop an effective computer vision
technique one must consider 1) Why the particular operations
are used, 2) How the signal can be represented and, 3) What
implementation structure can be used. And there is no reason
to continue with usual addition and multiplication. For digital
signal processing, via abstract analysis we can create more
easily implemented and more generalized or abstract versions
of mathematical operations. Due to the result of this creation,
abstract analysis may show new ways to creating systems with
desirable properties. Following these ideas, the generalized
linear system, shown in Fig. 4, is developed.
The generalized addition and scalar multiplication operations
denoted by ⊕and ⊗ are defined as follows:
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 801
𝑥⊕𝑦=∅−1
[∅ 𝑥 +∅(𝑦)] (2)
And
𝛼⊗𝑥=∅−1
[𝛼∅(𝑥)] (3)
Where 𝑥 and 𝑦 are signal samples is usually a real scalar, and
Ø is a nonlinear function.
Fig-4: Block diagram of generalized linear system
The tangent approach was proposed to analytically solve the
out of range problem in image restoration. The tangent
approach can be understood from a generalized linear system
point of view, since its operations are defined by using
equations (2) and (3). A notable property of the tangent
approach is that the gray scale set �∈ (−1, 1) is closed under
the new operations.
1.3 Motivation and Contributions
This work is motivated by unsharp masking algorithm, an
outstanding analysis of the halo effect, and the requirement of
the rescaling process. In this paper the tangent operations were
defined, motivated by the graceful theory of the logarithmic
image processing model. The major contribution and the
organization of this paper are as follows. In Section 2, we first
present a frame work for the generalized unsharp masking and
we described about the proposed algorithm.
We proposed a new approach to solve the out of range
problem, which is tangent system it is presented in section 3.
In Section 4, we describe the details of each building block of
the proposed algorithm which includes the bilateral filter, the
adaptive gain control, and the adaptive histogram equalization
for contrast enhancement. In Section 5, we present simulation
results which are compared existing unsharp masking
algorithm results. And in Section 6 Conclusion and future
work are presented.
2. FRAME WORK FOR THE PROPOSED
ALGORITHM
2.1. Exploratory data Model and Generalized
Unsharp Masking
The idea behind the exploratory data analysis is to decompose
a signal into two parts. One part fits a particular model, while
the other part is residual. In simple way the data model is: “fit
PLUS residuals”. From this definition, the output of the
filtering process, denoted as f(x) , can be regards as the part of
the image that fits the model. Thus we can represent an image
using the generalized operations as follows:
(4)
Where d is called the detail signal ( the residual). The detail
signal is defined as , where is the generalized
subtraction operation. A generalized form of the unsharp
masking algorithm can be written as
(5)
Where v is the output of the algorithm and both and
could be linear or nonlinear functions. This model
explicitly states that the part of the image being sharpened is
the model residual. In addition, this method allows the contrast
enhancement by means of a suitable processing function
such as adaptive histogram equalization algorithm. In
this way, the generalized algorithm can enhance the overall
contrast and sharpness of the image.
2.2. The Proposed Algorithm
The proposed algorithm, shown in Fig. 5, is based upon the
classical unsharp masking algorithm. Here we address the
problem of the halo effect by using an edge-preserving filter
which is the bilinear filter to generate the signal�. The choice
of the bilinear filter is due to its relative simplicity, advanced
than median filter and well studied properties such as the root
signals. Other more advanced edge preserving filters such as
the cubic filter and wavelet-based denoising filter and
nonlocal means filter can also be used.
Here we address the problem of the need for a careful
rescaling process by using new operations defined based on
the tangent operations and new generalized linear system.
From here the gray scale set is closed under these new
operations, the out-of-range problem is clearly solved and no
rescaling is needed. Here we address the new concept of
contrast enhancement and sharpening by using two different
processes. The image � is processed by AHE algorithm and
the output is called h (�). The detail image is processed by
where (�) is the adaptive gain and is a
function of the amplitude of the detail signal �. The final
output of the algorithm is then given by
(6)
We can see that the proposed algorithm is a generalization of
the existing unsharp masking algorithm in several ways.
Linear
System
Ø ( ) ∅−1
( )
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 802
Fig-5: Block diagram of Generalized Unsharp Masking
Algorithm
Here we address the problem of the need for a careful
rescaling process by using new operations defined based on
the tangent operations and new generalized linear system.
From here the gray scale set is closed under these new
operations, the out-of-range problem is clearly solved and no
rescaling is needed. Here we address the new concept of
contrast enhancement and sharpening by using two different
processes. The image � is processed by AHE algorithm and
the output is called h (�). The detail image is processed by
where (�) is the adaptive gain and is a
function of the amplitude of the detail signal �. The final
output of the algorithm is then given by
(7)
We can see that the proposed algorithm is a generalization of
the existing unsharp masking algorithm in several ways.
3. TANGENT OPERATION
The operations are defined based on generalized linear system
approach. We use equations (2) and (3) simplify the
presentation.
3.1. Definitions of Tangent Operations
3.1.1. Nonlinear Function
For tangent operations we consider the pixel gray scale of an
image . For an N-bit image, we can first linearly
map the pixel value from the interval [0, 2N] to a new interval
(-1, 1). Then the image is processed by using tangent
operations. The result is then mapped back to interval [0, 2N]
through the inverse mapping. We can easily verify that the
signal set is closed under the tangent
operations. The tangent system can be used as an alternative to
the log-ratio to solve out-of-range problem.
In simulation we use a simple function
to map the image from [0, 2N] to (-1, 1). The nonlinear
function is defined as follows:
(8)
3.1.2. Addition of two gray scales
Using equation (2), the addition of two gray scales and is
defined as
(9)
3.1.3. Scalar Multiplication
The multiplication of a gray scale x by real scalar is
defined by using equation (3) as
follows
(10)
3.1.4. Subtraction of two gray scales
The subtraction operation between two gray levels using the
addition operation defined in equation (2) as follows:
(11)
4. THE PROPOSED ALGORITHM
4.1. Implementation of the proposed algorithm for
color Images
In color image processing we use RGB color space images to
processing. For this algorithm firstly we have to convert the
color image from the RGB color space to the HSI or LAB
color space. The chrominance components, such as the H and
S components are not processed the luminance component I
only processed. After the luminance component is processed,
the inverse conversion is performed. An enhanced color image
in its RGB color space is obtained. To avoid a possible
problem of varying the white balance of the image when the
RGB components are processed individually, we process
luminance component I only.
4.2. Enhancement of the Detail Signal
4.2.1. The Root Signal and the Detail Signal
The bilateral filtering operation can be denoted as a function 𝑦
= (𝑥) which maps the input 𝑥 to the output 𝑦. Result image
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 803
bilateral filter operation can be represented as root signal,
which is 𝑦.
4.2.1.1. Edge preserving filter
A bilateral filter is an edge-preserving and noise reducing
smoothing filter. The intensity value at each pixel in an
image is replaced by a weighted average of intensity values
from nearby pixels. This weight is based on a Gaussian
distribution. Crucially the weights depend not only on
Euclidean distance but also on the radiometric differences
(differences in the range, e.g. color intensity or Z distance).
This preserves sharp edges by systematically looping through
each pixel and adjusting weights to the adjacent pixels
accordingly. The basic idea underlying bilateral filtering is to
do in the range of an image what traditional filters do in its
domain. Two pixels can be close to one another, that is,
occupy nearby spatial location, or they can be similar to one
another, that is, have nearby values, possibly in a perceptually
meaningful fashion.
Consider a shift-invariant low-pass domain filter applied to an
image:
(12)
The bold font for f and h emphasizes the fact that both input
and output images may be multi-band. In order to preserve the
DC component, it must be
(13)
Range filtering is similarly defined:
(14)
In this case, the kernel measures the photometric similarity
between pixels.
The normalization constant in this case is
(15)
The spatial distribution of image intensities plays no role in
range filtering taken by itself. Combining intensities from the
entire image, however, makes little sense, since the
distribution of image values far away from h ought not to
affect the final value at h. In addition, one can show that range
filtering without domain filtering merely changes the color
map of an image, and is therefore of little use. The appropriate
solution is to combine domain and range filtering, thereby
enforcing both geometric and photometric locality.
Combined filtering can be described as follows:
(16)
With the normalization
(17)
Combined domain and range filtering will be denoted
as bilateral filtering. It replaces the pixel value at h with an
average of similar and nearby pixel values. In smooth regions,
pixel values in a small neighborhood are similar to each other,
and the bilateral filter acts essentially as a standard domain
filter, averaging away the small, weakly correlated differences
between pixel values caused by noise. Consider now a sharp
boundary between a dark and a bright region, as in figure 6(a).
Fig-6:
When the bilateral filter is centered, say, on a pixel on the
bright side of the boundary, the similarity function s assumes
values close to one for pixels on the same side, and values
close to zero for pixels on the dark side. The similarity
function is shown in figure 6(b) for a 23x23 filter support
centered two pixels to the right of the step in figure 6(a). The
normalization term k(h) ensures that the weights for all the
pixels add up to one. As a result, the filter replaces the bright
pixel at the center by an average of the bright pixels in its
vicinity, and essentially ignores the dark pixels. Conversely,
when the filter is centered on a dark pixel, the bright pixels are
ignored instead. Thus, as shown in figure 6(c), good filtering
behavior is achieved at the boundaries, thanks to the domain
component of the filter, and crisp edges are preserved at the
same time thanks to the range component.
4.3. Contrast enhancement of the root signal
For contrast enhancement, we use adaptive histogram
equalization implemented by Matlab function in the image
processing Toolbox. The function called “adapthiseq” has a
parameter controlling the contrast. This parameter is
determined by the user through experiments to obtain the most
visually pleasing result. In our simulations, we use default
values for other parameters of the function.
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 804
4.4. Adaptive Gain Control
In the enhancement of the detail signal we require gain factor
to yield good results, it be must be greater than one. Using a
same gain for the entire image does not lead to good results,
because to enhance the small details a relatively large gain is
required. This large gain can lead to the saturation of the
detailed signal whose values are larger than a certain
threshold. Saturation is undesirable because different
amplitudes of the detail signal are mapped to the same
amplitude of either -1 or 1. This leads to loss of information.
Therefore, the gain must be controlled adaptively.
We describe the following below gain control algorithm using
tangent operations. To control the gain, we first perform a
linear mapping of the detail signal �to a new signal c,
(18)
Such that the dynamic range of �is (-3,1) . A simple idea is to
set the gain as a function of the signal� and to gradually
decrease the gain from its maximum value when
to its minimum value when . More
specifically, we propose the following adaptive gain control
function:
(19)
Where is a parameter that controls the rate of decreasing.
The two parameters and are obtained by solving the
equations: and . For a
fixed , we can easily determine the two parameters as
follows:
(20)
And
(21)
Although both and could be chosen based upon
each individual image processing task, in general it is
reasonable to set =1.
5. RESULTS AND COMPARISON
Fig-7: Original Image Rock
Figure7 shows the original image to do the simulation of this
existing and proposed concepts the range of the image is
[0,255].
Fig-8: Result of Classical Unsharp Masking Algorithm
Figure.8. Shows the result of existing unsharp masking
algorithm, it exhibit hallo effect ( the halo-effect are marked
by the red ellipse) at the edges of the image, it is a drawback
of existing algorithm.
Figure 9.Shows the 133th row gray level profile of resultant
image of existing unsharp masking algorithm. It exhibit out of
range problem. The range of selected image for processing is
[-1,1], but the resultant image exceeds this range this range (it
suffering with out of range problem). The size of the image is
533 X 2400, means 533 rows and 2400 columns among these
one of the column or row gray level profile can choose to
exhibit the out of range problem., here all the pixels are not
suffer without range problem, so there is no guaranty to
exhibit out or range problem for all rows and columns, so
choose appropriate column or row to exhibit out of range
problem.
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 805
Fig-9: 133th row gray level profile of existing unsharp
masking resultant image
Fig-10: Result of the Proposed Algorithm
Fig-11:133th gray level profile of proposed algorithm
resultant image
The result of proposed algorithm is shown in figure10. It
exhibits reduced hallo-effect, enhanced low contrast details of
the image, and sharpness of the image is also enhanced. The
figure11.shows 133th row level profile of result of proposed
algorithm, it exhibit the solved out or range problem, here the
range of the image is [-1.1].
CONCLUSION AND FURTHER WORK
In this paper, we developed generalized unsharp masking
algorithm by using an exploratory data model as a unified
frame work, it is very useful for highly texture images and
which images having long distance objects to find the exact
edges for that objects. By using the generalized unsharp
masking algorithm we solved problems associated with
existing unsharp masking algorithm, first one is the halo-effect
is reduced by means of an edge-preserving filter that is
bilateral filter, second one is rescaling process eliminated by
using tangent operations and final one we introduced a new
future that is simultaneously enhancing contrast and sharpness
by means of individual treatment of the model component and
the residual. Extensions of this work can be carried out in a
number of directions. In this work, we only test the bilateral
filter as a computationally inexpensive edge preserving filter.
It is expected that other more advanced edge preserving filters
such as non local means filter, the least squares filters and
wavelet based denoising can produce similar or even better
results.
REFERENCES
[1].G. Ramponi, ―A cubic unsharp masking technique for
contrast enhancement, Signal Process., pp. 211–222, 1998.
[2]. Gaung Deng, ―A Generalized Unsharp Masking
Algorithm, IEEE Trans on image processing, vol. 20, no. 5,
May 2011.
[3]. S. J. Ko and Y. H. Lee, ―Center weighted median filters
and their applications to image enhancement, IEEE Trans.
Circuits Syst., vol. 38, no. 9, pp. 984–993, Sep. 1991.
[4]. M. Fischer, J. L. Paredes, and G. R. Arce, ―Weighted
median image sharpeners for the world wide web, IEEE
Trans. Image Process., vol. 11, no. 7, pp. 717–727, Jul. 2002.
[5]. R. Lukac, B. Smolka, and K. N. Plataniotis, ―Sharpening
vector median filters, Signal Process., vol. 87, pp. 2085–2099,
2007.
[6]. A. Polesel, G. Ramponi, and V. Mathews, ―Image
enhancement via adaptive unsharp masking, IEEE Trans.
Image Process., vol. 9, no. 3, pp. 505–510, Mar. 2000.
[7]. E. Peli, ―Contrast in complex images,J. Opt. Soc.
Amer.,vol. 7, no. 10, p. 2032–2040, 1990.
[8]. S. Pizer, E. Amburn, J. Austin, R. Cromartie, A.
Geselowitz, T. Greer, B. Romeny, J. Zimmerman, and K.
Zuiderveld, ―Adaptive histogram equalization and its
variations, Comput. Vis. Graph. Image Process., vol. 39, no. 3,
pp. 355–368, Sep. 1987.
[9]. G. Deng and L. W. Cahill, ―Image enhancement using
the log-ratio approach, in Proc. 28th Asilomar Conf. Signals,
Syst. Comput.s, 1994, vol. 1, pp. 198–202.
[11]. L. W. Cahill and G. Deng, ―An overview of logarithm-
based image processing techniques for biomedical
applications,in Proc. 13th Int.Conf. Digital Signal Process.
1997, vol. 1, pp. 93–96.
[12]. J. Pinoli, ―A general comparative study of the
multiplicative homomorphic log-ratio and logarithmic image
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 806
processing approaches, Signal Process., vol. 58, no. 1, pp. 11–
45, 1997.
[13]. M. Jourlin and J.-C. Pinoli, ―A model for logarithmic
image processing, J. Microsc., vol. 149, pp. 21–35, 1988.
[14]. Digital Image Processing-R.C.Gonzalez&Woods,
Addition Wesley/Pearson education, 2nd Edition, 2002.
[15]. Fundamentals of Digital Image Processing-A.K.Jain,
PHI.
[16]. C. Tomasi and R. Manduchi, "Bilateral Filtering for
Gray and Color Images", Proceedings of the 1998 IEEE
International Conference on Computer Vision, Bombay, India
BIOGRAPHIES:
SUNKARI SRIDHAR, Assistant Professor,
ECE Dept., RRSCET, Muthangi,
Patancheru, Medak Dist. He received
B.Tech degree from JNTU, Hyderabad and
M.Tech degree from JNTUCEH,
Kukatpally, Hyderabad.
SHAIK MEERAVALI, Professor and
Head, Department of Electronics and
Communication Engg, RRS College of
Engineering and Technology, Muthangi,
Andhra Pradesh, India.

Más contenido relacionado

La actualidad más candente

Image Processing: Spatial filters
Image Processing: Spatial filtersImage Processing: Spatial filters
Image Processing: Spatial filtersA B Shinde
 
Spatial filtering using image processing
Spatial filtering using image processingSpatial filtering using image processing
Spatial filtering using image processingAnuj Arora
 
Digital image processing img smoothning
Digital image processing img smoothningDigital image processing img smoothning
Digital image processing img smoothningVinay Gupta
 
Digital image processing techniques
Digital image processing techniquesDigital image processing techniques
Digital image processing techniquesShab Bi
 
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...Hemantha Kulathilake
 
Image Enhancement - Point Processing
Image Enhancement - Point ProcessingImage Enhancement - Point Processing
Image Enhancement - Point ProcessingGayathri31093
 
04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detectionRumah Belajar
 
Digital image processing Tool presentation
Digital image processing Tool presentationDigital image processing Tool presentation
Digital image processing Tool presentationdikshabehl5392
 
Image enhancement techniques
Image enhancement techniquesImage enhancement techniques
Image enhancement techniquesBulbul Agrawal
 
Sharpening using frequency Domain Filter
Sharpening using frequency Domain FilterSharpening using frequency Domain Filter
Sharpening using frequency Domain Filterarulraj121
 
Homomorphic filtering
Homomorphic filteringHomomorphic filtering
Homomorphic filteringGautam Saxena
 

La actualidad más candente (20)

Sharpening spatial filters
Sharpening spatial filtersSharpening spatial filters
Sharpening spatial filters
 
Image Processing: Spatial filters
Image Processing: Spatial filtersImage Processing: Spatial filters
Image Processing: Spatial filters
 
Spatial filtering using image processing
Spatial filtering using image processingSpatial filtering using image processing
Spatial filtering using image processing
 
2.spatial filtering
2.spatial filtering2.spatial filtering
2.spatial filtering
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Spatial domain and filtering
Spatial domain and filteringSpatial domain and filtering
Spatial domain and filtering
 
Digital image processing img smoothning
Digital image processing img smoothningDigital image processing img smoothning
Digital image processing img smoothning
 
Digital image processing techniques
Digital image processing techniquesDigital image processing techniques
Digital image processing techniques
 
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
 
Image Enhancement - Point Processing
Image Enhancement - Point ProcessingImage Enhancement - Point Processing
Image Enhancement - Point Processing
 
SPATIAL FILTER
SPATIAL FILTERSPATIAL FILTER
SPATIAL FILTER
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
04 image enhancement edge detection
04 image enhancement edge detection04 image enhancement edge detection
04 image enhancement edge detection
 
Digital image processing Tool presentation
Digital image processing Tool presentationDigital image processing Tool presentation
Digital image processing Tool presentation
 
Lecture 3
Lecture 3Lecture 3
Lecture 3
 
Image enhancement techniques
Image enhancement techniquesImage enhancement techniques
Image enhancement techniques
 
Enhancement in Digital Image Processing
Enhancement in Digital Image ProcessingEnhancement in Digital Image Processing
Enhancement in Digital Image Processing
 
Sharpening using frequency Domain Filter
Sharpening using frequency Domain FilterSharpening using frequency Domain Filter
Sharpening using frequency Domain Filter
 
Homomorphic filtering
Homomorphic filteringHomomorphic filtering
Homomorphic filtering
 
Lecture 6
Lecture 6Lecture 6
Lecture 6
 

Destacado

Modelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheelModelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheeleSAT Publishing House
 
A novel work for bin packing problem by ant colony optimization
A novel work for bin packing problem by ant colony optimizationA novel work for bin packing problem by ant colony optimization
A novel work for bin packing problem by ant colony optimizationeSAT Publishing House
 
Comparison of used metadata elements in digital libraries in iran with dublin...
Comparison of used metadata elements in digital libraries in iran with dublin...Comparison of used metadata elements in digital libraries in iran with dublin...
Comparison of used metadata elements in digital libraries in iran with dublin...eSAT Publishing House
 
Coupling the bionic surface friction contact performance and wear resistance ...
Coupling the bionic surface friction contact performance and wear resistance ...Coupling the bionic surface friction contact performance and wear resistance ...
Coupling the bionic surface friction contact performance and wear resistance ...eSAT Publishing House
 
Non standard size image compression with reversible embedded wavelets
Non standard size image compression with reversible embedded waveletsNon standard size image compression with reversible embedded wavelets
Non standard size image compression with reversible embedded waveletseSAT Publishing House
 
Emerging trends in supply chain management
Emerging trends in supply chain managementEmerging trends in supply chain management
Emerging trends in supply chain managementeSAT Publishing House
 
An experiental investigation of effect of cutting parameters and tool materia...
An experiental investigation of effect of cutting parameters and tool materia...An experiental investigation of effect of cutting parameters and tool materia...
An experiental investigation of effect of cutting parameters and tool materia...eSAT Publishing House
 
An experimental study on durability of high strength
An experimental study on durability of high strengthAn experimental study on durability of high strength
An experimental study on durability of high strengtheSAT Publishing House
 
Comparison of stress between winkler bach theory and
Comparison of stress between winkler bach theory andComparison of stress between winkler bach theory and
Comparison of stress between winkler bach theory andeSAT Publishing House
 
Variance rover system web analytics tool using data
Variance rover system web analytics tool using dataVariance rover system web analytics tool using data
Variance rover system web analytics tool using dataeSAT Publishing House
 
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...eSAT Publishing House
 
Procurement principle towards effective management of construction projects
Procurement principle towards effective management of construction projectsProcurement principle towards effective management of construction projects
Procurement principle towards effective management of construction projectseSAT Publishing House
 
A study on effect of bacteria on cement composites
A study on effect of bacteria on cement compositesA study on effect of bacteria on cement composites
A study on effect of bacteria on cement compositeseSAT Publishing House
 
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...eSAT Publishing House
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domaineSAT Publishing House
 
Modeling cogeneration power plants using neural networks
Modeling cogeneration power plants using neural networksModeling cogeneration power plants using neural networks
Modeling cogeneration power plants using neural networkseSAT Publishing House
 
Effect of use of recycled materials on indirect tensile
Effect of use of recycled materials on indirect tensileEffect of use of recycled materials on indirect tensile
Effect of use of recycled materials on indirect tensileeSAT Publishing House
 

Destacado (20)

Modelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheelModelling & simulation of human powered flywheel
Modelling & simulation of human powered flywheel
 
A novel work for bin packing problem by ant colony optimization
A novel work for bin packing problem by ant colony optimizationA novel work for bin packing problem by ant colony optimization
A novel work for bin packing problem by ant colony optimization
 
Comparison of used metadata elements in digital libraries in iran with dublin...
Comparison of used metadata elements in digital libraries in iran with dublin...Comparison of used metadata elements in digital libraries in iran with dublin...
Comparison of used metadata elements in digital libraries in iran with dublin...
 
Coupling the bionic surface friction contact performance and wear resistance ...
Coupling the bionic surface friction contact performance and wear resistance ...Coupling the bionic surface friction contact performance and wear resistance ...
Coupling the bionic surface friction contact performance and wear resistance ...
 
Non standard size image compression with reversible embedded wavelets
Non standard size image compression with reversible embedded waveletsNon standard size image compression with reversible embedded wavelets
Non standard size image compression with reversible embedded wavelets
 
Emerging trends in supply chain management
Emerging trends in supply chain managementEmerging trends in supply chain management
Emerging trends in supply chain management
 
Properties of fal g masonry blocks
Properties of fal g masonry blocksProperties of fal g masonry blocks
Properties of fal g masonry blocks
 
An experiental investigation of effect of cutting parameters and tool materia...
An experiental investigation of effect of cutting parameters and tool materia...An experiental investigation of effect of cutting parameters and tool materia...
An experiental investigation of effect of cutting parameters and tool materia...
 
An experimental study on durability of high strength
An experimental study on durability of high strengthAn experimental study on durability of high strength
An experimental study on durability of high strength
 
Environmental sciences
Environmental sciencesEnvironmental sciences
Environmental sciences
 
Enhancement of power quality in a
Enhancement of power quality in aEnhancement of power quality in a
Enhancement of power quality in a
 
Comparison of stress between winkler bach theory and
Comparison of stress between winkler bach theory andComparison of stress between winkler bach theory and
Comparison of stress between winkler bach theory and
 
Variance rover system web analytics tool using data
Variance rover system web analytics tool using dataVariance rover system web analytics tool using data
Variance rover system web analytics tool using data
 
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...
Cfd analysis of calandria based nuclear reactor part i. modeling & analysis o...
 
Procurement principle towards effective management of construction projects
Procurement principle towards effective management of construction projectsProcurement principle towards effective management of construction projects
Procurement principle towards effective management of construction projects
 
A study on effect of bacteria on cement composites
A study on effect of bacteria on cement compositesA study on effect of bacteria on cement composites
A study on effect of bacteria on cement composites
 
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...Accuracy enhancement of srtm and aster dems using weight estimation regressio...
Accuracy enhancement of srtm and aster dems using weight estimation regressio...
 
3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain3 d mrf based video tracking in the compressed domain
3 d mrf based video tracking in the compressed domain
 
Modeling cogeneration power plants using neural networks
Modeling cogeneration power plants using neural networksModeling cogeneration power plants using neural networks
Modeling cogeneration power plants using neural networks
 
Effect of use of recycled materials on indirect tensile
Effect of use of recycled materials on indirect tensileEffect of use of recycled materials on indirect tensile
Effect of use of recycled materials on indirect tensile
 

Similar a New approach for generalised unsharp masking alogorithm

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
 
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...Ech a novel multilevel thresholding technique for minutiae based fingerprint ...
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...eSAT Publishing House
 
Performance and analysis of improved unsharp masking algorithm for image
Performance and analysis of improved unsharp masking algorithm for imagePerformance and analysis of improved unsharp masking algorithm for image
Performance and analysis of improved unsharp masking algorithm for imageIAEME Publication
 
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...eSAT Publishing House
 
IRJET- Image De-Blurring using Blind De-Convolution Algorithm
IRJET-  	  Image De-Blurring using Blind De-Convolution AlgorithmIRJET-  	  Image De-Blurring using Blind De-Convolution Algorithm
IRJET- Image De-Blurring using Blind De-Convolution AlgorithmIRJET Journal
 
IRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-TimeIRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-TimeIRJET Journal
 
A study to improve the quality of image enhancement
A study to improve the quality of image enhancementA study to improve the quality of image enhancement
A study to improve the quality of image enhancementeSAT Publishing House
 
Efficient Method of Removing the Noise using High Dynamic Range Image
Efficient Method of Removing the Noise using High Dynamic Range ImageEfficient Method of Removing the Noise using High Dynamic Range Image
Efficient Method of Removing the Noise using High Dynamic Range Imagerahulmonikasharma
 
Vhdl implementation for edge detection using log gabor filter for disease det...
Vhdl implementation for edge detection using log gabor filter for disease det...Vhdl implementation for edge detection using log gabor filter for disease det...
Vhdl implementation for edge detection using log gabor filter for disease det...eSAT Journals
 
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...IRJET Journal
 
Image enhancement techniques a review
Image enhancement techniques   a reviewImage enhancement techniques   a review
Image enhancement techniques a revieweSAT Journals
 
Modified adaptive bilateral filter for image contrast enhancement
Modified adaptive bilateral filter for image contrast enhancementModified adaptive bilateral filter for image contrast enhancement
Modified adaptive bilateral filter for image contrast enhancementeSAT Publishing House
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation using Interactive liver tumor segmentation using
Interactive liver tumor segmentation using eSAT Journals
 
A Review on Haze Removal Techniques
A Review on Haze Removal TechniquesA Review on Haze Removal Techniques
A Review on Haze Removal TechniquesIRJET Journal
 
Face recognition using gaussian mixture model & artificial neural network
Face recognition using gaussian mixture model & artificial neural networkFace recognition using gaussian mixture model & artificial neural network
Face recognition using gaussian mixture model & artificial neural networkeSAT Journals
 
Visual Quality for both Images and Display of Systems by Visual Enhancement u...
Visual Quality for both Images and Display of Systems by Visual Enhancement u...Visual Quality for both Images and Display of Systems by Visual Enhancement u...
Visual Quality for both Images and Display of Systems by Visual Enhancement u...IJMER
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation usingInteractive liver tumor segmentation using
Interactive liver tumor segmentation usingeSAT Publishing House
 
Paper id 28201446
Paper id 28201446Paper id 28201446
Paper id 28201446IJRAT
 
Image resolution enhancement using blind technique
Image resolution enhancement using blind techniqueImage resolution enhancement using blind technique
Image resolution enhancement using blind techniqueeSAT Journals
 

Similar a New approach for generalised unsharp masking alogorithm (20)

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...
 
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...Ech a novel multilevel thresholding technique for minutiae based fingerprint ...
Ech a novel multilevel thresholding technique for minutiae based fingerprint ...
 
Performance and analysis of improved unsharp masking algorithm for image
Performance and analysis of improved unsharp masking algorithm for imagePerformance and analysis of improved unsharp masking algorithm for image
Performance and analysis of improved unsharp masking algorithm for image
 
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...Brain tumor segmentation using asymmetry based histogram thresholding and k m...
Brain tumor segmentation using asymmetry based histogram thresholding and k m...
 
IRJET- Image De-Blurring using Blind De-Convolution Algorithm
IRJET-  	  Image De-Blurring using Blind De-Convolution AlgorithmIRJET-  	  Image De-Blurring using Blind De-Convolution Algorithm
IRJET- Image De-Blurring using Blind De-Convolution Algorithm
 
IRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-TimeIRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-Time
 
A study to improve the quality of image enhancement
A study to improve the quality of image enhancementA study to improve the quality of image enhancement
A study to improve the quality of image enhancement
 
Efficient Method of Removing the Noise using High Dynamic Range Image
Efficient Method of Removing the Noise using High Dynamic Range ImageEfficient Method of Removing the Noise using High Dynamic Range Image
Efficient Method of Removing the Noise using High Dynamic Range Image
 
Vhdl implementation for edge detection using log gabor filter for disease det...
Vhdl implementation for edge detection using log gabor filter for disease det...Vhdl implementation for edge detection using log gabor filter for disease det...
Vhdl implementation for edge detection using log gabor filter for disease det...
 
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
A Novel Framework For Preprocessing Of Breast Ultra Sound Images By Combining...
 
Image enhancement techniques a review
Image enhancement techniques   a reviewImage enhancement techniques   a review
Image enhancement techniques a review
 
Modified adaptive bilateral filter for image contrast enhancement
Modified adaptive bilateral filter for image contrast enhancementModified adaptive bilateral filter for image contrast enhancement
Modified adaptive bilateral filter for image contrast enhancement
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation using Interactive liver tumor segmentation using
Interactive liver tumor segmentation using
 
A Review on Haze Removal Techniques
A Review on Haze Removal TechniquesA Review on Haze Removal Techniques
A Review on Haze Removal Techniques
 
Face recognition using gaussian mixture model & artificial neural network
Face recognition using gaussian mixture model & artificial neural networkFace recognition using gaussian mixture model & artificial neural network
Face recognition using gaussian mixture model & artificial neural network
 
Visual Quality for both Images and Display of Systems by Visual Enhancement u...
Visual Quality for both Images and Display of Systems by Visual Enhancement u...Visual Quality for both Images and Display of Systems by Visual Enhancement u...
Visual Quality for both Images and Display of Systems by Visual Enhancement u...
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation usingInteractive liver tumor segmentation using
Interactive liver tumor segmentation using
 
Paper id 28201446
Paper id 28201446Paper id 28201446
Paper id 28201446
 
Ijnsa050207
Ijnsa050207Ijnsa050207
Ijnsa050207
 
Image resolution enhancement using blind technique
Image resolution enhancement using blind techniqueImage resolution enhancement using blind technique
Image resolution enhancement using blind technique
 

Más de eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

Más de eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Último

Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the weldingMuhammadUzairLiaqat
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
lifi-technology with integration of IOT.pptx
lifi-technology with integration of IOT.pptxlifi-technology with integration of IOT.pptx
lifi-technology with integration of IOT.pptxsomshekarkn64
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - GuideGOPINATHS437943
 

Último (20)

Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
welding defects observed during the welding
welding defects observed during the weldingwelding defects observed during the welding
welding defects observed during the welding
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
lifi-technology with integration of IOT.pptx
lifi-technology with integration of IOT.pptxlifi-technology with integration of IOT.pptx
lifi-technology with integration of IOT.pptx
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Transport layer issues and challenges - Guide
Transport layer issues and challenges - GuideTransport layer issues and challenges - Guide
Transport layer issues and challenges - Guide
 

New approach for generalised unsharp masking alogorithm

  • 1. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 799 A NEW APPROACH FOR GENERALISED UNSHARP MASKING ALOGORITHM Sunkari Sridhar1 , Shaik Meeravali2 1 Assistant Professor, 2 Professor& HOD, Department of ECE, RRSCET, Muthangi, Andhra Pradesh, India sridharsunkari@gmail.com, shaik_5045@gmail.com Abstract We propose a new generalized algorithm using the exploratory data model as unified frame work. Enhancement of contrast and sharpness of an image is required in many applications. In applications like medical radiography enhancing movie features and observing the planets it is necessary to enhance the contrast and sharpness of an image. Unsharp masking is good tool for sharpness enhancement; it is an anti blurring filter. By using unsharp masking algorithm for sharpness enhancement, the resultant image suffering with two problems, first one is a hallo is appear around the edges of an image, and second one is rescaling process is needed for the resultant image. The aim of this paper is to enhance the contrast and sharpness of an image simultaneously and to solve the problems. In the proposed algorithm, we can adjust the two parameters controlling the contrast and sharpness to produce the desired output. The proposed algorithm is designed to address issues:1) simultaneously enhancing contrast and sharpness by means of individual treatment of the model component and the residual,2)reducing the halo effect by means of an edge-preserving filter using Bilateral filter. Experimental results, which comparable to recent published results, shows that proposed algorithm is able to significantly improve the sharpness and contrast of an image. This makes the proposed algorithm practically useful. Index Terms: Bilateral filter, edge-preserving filter, exploratory data model, Image Enhancement, Unsharp Masking -----------------------------------------------------------------------***----------------------------------------------------------------------- 1. INTRODUCTION Digital image processing allows the use of much more complex algorithms for image processing, and hence can offer more sophisticated performance at simple tasks. An image is defined as a two dimensional light intensity function (�,), where �and �are spatial coordinates, and the value f at any pair of coordinates (�,) is called intensity or grey level value of the image at that point. We require simultaneous enhancement of sharpness and contrast in many applications. Based on this requirement a continuous research is going on to develop new algorithms. We are having deferent type sharpness enhancement techniques, among these unsharp masking will gives enhanced sharpness with original image as background. We find some unwanted details in the resultant image. To avoid these we used new algorithms. In this section firstly we discuss related works, which are sharpness enhancement techniques including unsharp masking, contrast enhancement and generalized linear system. 1.1 Sharpness Enhancement 1.1.1 High pass filter The principal objective of sharpening is to highlight fine detail in an image or to enhance detail that has been blurred, either in error or as a natural effect of a particular method of image acquisition. Uses of image sharpening vary and include applications ranging from electronic printing and medical imaging to industrial inspection and autonomous guidance in military systems. -1/9 -1/9 -1/9 Z1 Z1 Z1 -1/9 8/9 -1/9 Z1 Z1 Z1 -1/9 -1/9 -1/9 Z1 Z1 Z1 (a) High pass filter mask (b) Image gray level values Fig-1: 3×3 High pass Filter mask and image gray level values. That is, with reference to the response of the mask at any point in the image is given by 4. FLOWCHART R = 1/9∗ (−Z1−Z2−Z3−Z4+ (8*Z5) −Z6−Z7−Z8−Z9) =1/9∗ (−Zi 9i=0+ (2*Z5)) (1) Where Zi is the gray level of the mask of the pixel associated with mask coefficient 1. As usual, the response of the mask is defined with respect to its center location.
  • 2. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 800 1.1.2. High boost filtering High pass filtering in terms of subtracting a low pass image from the original image, that is, High pass = Original - Low pass. However, in many cases where a high pass image is required, also want to retain some of the low frequency components to aid in the interpretation of the image. Thus, if multiply the original image by an amplification factor A before subtracting the low pass image, will get a high boost or high frequency emphasis filter. Thus, High boost = A. Original – Low pass = (A-1). (Original) + Original – Low pass = (A-1). (Original) + High pass Now, if A = 1 we have a simple high pass filter. When A > 1 part of the original image is retained in the output. A simple filter for high boost filtering is given by -1/9 -1/9 -1/9 -1/9 ω/9 -1/9 -1/9 -1/9 -1/9 Fig-2: High boost filtering Where ω = 9A-1. 1.1.3. Unsharp masking The unsharp filter is a simple sharpening operator which derives its name from the fact that it enhances edges (and other high frequency components in an image) via a procedure which subtracts an unsharp, or smoothed, version of an image from the original image. The unsharp filtering technique is commonly used in the photographic and printing industries for crispening edges. The above two techniques resultant images are having their back ground intensity levels are near to black, but sometimes we require sharpness enhancement in the image itself, for this case unsharp masking algorithm is use full. The unsharp masking algorithm can be described by the equation: where � is the input image, �is the result of a linear low-pass filter, and the gain (�>0) is a real scaling factor. The detail signal �= (�−�) is usually amplified to increase the sharpness. However, the signal contains 1) details of the image, 2) noise, and 3) over- shoots and under-shoots in areas of sharp edges due to the smoothing of edges. While the enhancement of noise is clearly undesirable, the enhancement of the under-shoot and over- shoot creates the visually unpleasant halo effect. Ideally, the algorithm should only enhance the details of an image. Due to this reason we require that the filter is not sensitive to noise and does not smooth sharp edges. The edge preserving filters, such as nonlinear filters, cubic filter and are used to replace the linear low-pass filter. The former is less sensitive to noise and the latter does not smooth sharp edges. To reduce the halo effect, edge-preserving filters such as: adaptive Gaussian filter, weighted least-squares based filters, non-local means filter, and bilateral filters are used. An important problem associated with the unsharp masking algorithm is that the result is usually out of the range. For example, for an 8-bit image, the range is [0,255]. A careful rescaling process is usually needed for each image. Fig-3:.Block Diagram of Classical Unsharp Masking 1.2. Contrast Enhancement Contrast is a basic perceptual feature of an image .It is Difficult to see the details in a low contrast image. To improve the contrast or to enhance the contrast the adaptive histogram equalization is frequently used. To enhance the contrast recently some new advanced algorithms are developed, which is retinex based algorithms. 1.2.1. Generalized Linear System Before going to develop an effective computer vision technique one must consider 1) Why the particular operations are used, 2) How the signal can be represented and, 3) What implementation structure can be used. And there is no reason to continue with usual addition and multiplication. For digital signal processing, via abstract analysis we can create more easily implemented and more generalized or abstract versions of mathematical operations. Due to the result of this creation, abstract analysis may show new ways to creating systems with desirable properties. Following these ideas, the generalized linear system, shown in Fig. 4, is developed. The generalized addition and scalar multiplication operations denoted by ⊕and ⊗ are defined as follows:
  • 3. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 801 𝑥⊕𝑦=∅−1 [∅ 𝑥 +∅(𝑦)] (2) And 𝛼⊗𝑥=∅−1 [𝛼∅(𝑥)] (3) Where 𝑥 and 𝑦 are signal samples is usually a real scalar, and Ø is a nonlinear function. Fig-4: Block diagram of generalized linear system The tangent approach was proposed to analytically solve the out of range problem in image restoration. The tangent approach can be understood from a generalized linear system point of view, since its operations are defined by using equations (2) and (3). A notable property of the tangent approach is that the gray scale set �∈ (−1, 1) is closed under the new operations. 1.3 Motivation and Contributions This work is motivated by unsharp masking algorithm, an outstanding analysis of the halo effect, and the requirement of the rescaling process. In this paper the tangent operations were defined, motivated by the graceful theory of the logarithmic image processing model. The major contribution and the organization of this paper are as follows. In Section 2, we first present a frame work for the generalized unsharp masking and we described about the proposed algorithm. We proposed a new approach to solve the out of range problem, which is tangent system it is presented in section 3. In Section 4, we describe the details of each building block of the proposed algorithm which includes the bilateral filter, the adaptive gain control, and the adaptive histogram equalization for contrast enhancement. In Section 5, we present simulation results which are compared existing unsharp masking algorithm results. And in Section 6 Conclusion and future work are presented. 2. FRAME WORK FOR THE PROPOSED ALGORITHM 2.1. Exploratory data Model and Generalized Unsharp Masking The idea behind the exploratory data analysis is to decompose a signal into two parts. One part fits a particular model, while the other part is residual. In simple way the data model is: “fit PLUS residuals”. From this definition, the output of the filtering process, denoted as f(x) , can be regards as the part of the image that fits the model. Thus we can represent an image using the generalized operations as follows: (4) Where d is called the detail signal ( the residual). The detail signal is defined as , where is the generalized subtraction operation. A generalized form of the unsharp masking algorithm can be written as (5) Where v is the output of the algorithm and both and could be linear or nonlinear functions. This model explicitly states that the part of the image being sharpened is the model residual. In addition, this method allows the contrast enhancement by means of a suitable processing function such as adaptive histogram equalization algorithm. In this way, the generalized algorithm can enhance the overall contrast and sharpness of the image. 2.2. The Proposed Algorithm The proposed algorithm, shown in Fig. 5, is based upon the classical unsharp masking algorithm. Here we address the problem of the halo effect by using an edge-preserving filter which is the bilinear filter to generate the signal�. The choice of the bilinear filter is due to its relative simplicity, advanced than median filter and well studied properties such as the root signals. Other more advanced edge preserving filters such as the cubic filter and wavelet-based denoising filter and nonlocal means filter can also be used. Here we address the problem of the need for a careful rescaling process by using new operations defined based on the tangent operations and new generalized linear system. From here the gray scale set is closed under these new operations, the out-of-range problem is clearly solved and no rescaling is needed. Here we address the new concept of contrast enhancement and sharpening by using two different processes. The image � is processed by AHE algorithm and the output is called h (�). The detail image is processed by where (�) is the adaptive gain and is a function of the amplitude of the detail signal �. The final output of the algorithm is then given by (6) We can see that the proposed algorithm is a generalization of the existing unsharp masking algorithm in several ways. Linear System Ø ( ) ∅−1 ( )
  • 4. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 802 Fig-5: Block diagram of Generalized Unsharp Masking Algorithm Here we address the problem of the need for a careful rescaling process by using new operations defined based on the tangent operations and new generalized linear system. From here the gray scale set is closed under these new operations, the out-of-range problem is clearly solved and no rescaling is needed. Here we address the new concept of contrast enhancement and sharpening by using two different processes. The image � is processed by AHE algorithm and the output is called h (�). The detail image is processed by where (�) is the adaptive gain and is a function of the amplitude of the detail signal �. The final output of the algorithm is then given by (7) We can see that the proposed algorithm is a generalization of the existing unsharp masking algorithm in several ways. 3. TANGENT OPERATION The operations are defined based on generalized linear system approach. We use equations (2) and (3) simplify the presentation. 3.1. Definitions of Tangent Operations 3.1.1. Nonlinear Function For tangent operations we consider the pixel gray scale of an image . For an N-bit image, we can first linearly map the pixel value from the interval [0, 2N] to a new interval (-1, 1). Then the image is processed by using tangent operations. The result is then mapped back to interval [0, 2N] through the inverse mapping. We can easily verify that the signal set is closed under the tangent operations. The tangent system can be used as an alternative to the log-ratio to solve out-of-range problem. In simulation we use a simple function to map the image from [0, 2N] to (-1, 1). The nonlinear function is defined as follows: (8) 3.1.2. Addition of two gray scales Using equation (2), the addition of two gray scales and is defined as (9) 3.1.3. Scalar Multiplication The multiplication of a gray scale x by real scalar is defined by using equation (3) as follows (10) 3.1.4. Subtraction of two gray scales The subtraction operation between two gray levels using the addition operation defined in equation (2) as follows: (11) 4. THE PROPOSED ALGORITHM 4.1. Implementation of the proposed algorithm for color Images In color image processing we use RGB color space images to processing. For this algorithm firstly we have to convert the color image from the RGB color space to the HSI or LAB color space. The chrominance components, such as the H and S components are not processed the luminance component I only processed. After the luminance component is processed, the inverse conversion is performed. An enhanced color image in its RGB color space is obtained. To avoid a possible problem of varying the white balance of the image when the RGB components are processed individually, we process luminance component I only. 4.2. Enhancement of the Detail Signal 4.2.1. The Root Signal and the Detail Signal The bilateral filtering operation can be denoted as a function 𝑦 = (𝑥) which maps the input 𝑥 to the output 𝑦. Result image
  • 5. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 803 bilateral filter operation can be represented as root signal, which is 𝑦. 4.2.1.1. Edge preserving filter A bilateral filter is an edge-preserving and noise reducing smoothing filter. The intensity value at each pixel in an image is replaced by a weighted average of intensity values from nearby pixels. This weight is based on a Gaussian distribution. Crucially the weights depend not only on Euclidean distance but also on the radiometric differences (differences in the range, e.g. color intensity or Z distance). This preserves sharp edges by systematically looping through each pixel and adjusting weights to the adjacent pixels accordingly. The basic idea underlying bilateral filtering is to do in the range of an image what traditional filters do in its domain. Two pixels can be close to one another, that is, occupy nearby spatial location, or they can be similar to one another, that is, have nearby values, possibly in a perceptually meaningful fashion. Consider a shift-invariant low-pass domain filter applied to an image: (12) The bold font for f and h emphasizes the fact that both input and output images may be multi-band. In order to preserve the DC component, it must be (13) Range filtering is similarly defined: (14) In this case, the kernel measures the photometric similarity between pixels. The normalization constant in this case is (15) The spatial distribution of image intensities plays no role in range filtering taken by itself. Combining intensities from the entire image, however, makes little sense, since the distribution of image values far away from h ought not to affect the final value at h. In addition, one can show that range filtering without domain filtering merely changes the color map of an image, and is therefore of little use. The appropriate solution is to combine domain and range filtering, thereby enforcing both geometric and photometric locality. Combined filtering can be described as follows: (16) With the normalization (17) Combined domain and range filtering will be denoted as bilateral filtering. It replaces the pixel value at h with an average of similar and nearby pixel values. In smooth regions, pixel values in a small neighborhood are similar to each other, and the bilateral filter acts essentially as a standard domain filter, averaging away the small, weakly correlated differences between pixel values caused by noise. Consider now a sharp boundary between a dark and a bright region, as in figure 6(a). Fig-6: When the bilateral filter is centered, say, on a pixel on the bright side of the boundary, the similarity function s assumes values close to one for pixels on the same side, and values close to zero for pixels on the dark side. The similarity function is shown in figure 6(b) for a 23x23 filter support centered two pixels to the right of the step in figure 6(a). The normalization term k(h) ensures that the weights for all the pixels add up to one. As a result, the filter replaces the bright pixel at the center by an average of the bright pixels in its vicinity, and essentially ignores the dark pixels. Conversely, when the filter is centered on a dark pixel, the bright pixels are ignored instead. Thus, as shown in figure 6(c), good filtering behavior is achieved at the boundaries, thanks to the domain component of the filter, and crisp edges are preserved at the same time thanks to the range component. 4.3. Contrast enhancement of the root signal For contrast enhancement, we use adaptive histogram equalization implemented by Matlab function in the image processing Toolbox. The function called “adapthiseq” has a parameter controlling the contrast. This parameter is determined by the user through experiments to obtain the most visually pleasing result. In our simulations, we use default values for other parameters of the function.
  • 6. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 804 4.4. Adaptive Gain Control In the enhancement of the detail signal we require gain factor to yield good results, it be must be greater than one. Using a same gain for the entire image does not lead to good results, because to enhance the small details a relatively large gain is required. This large gain can lead to the saturation of the detailed signal whose values are larger than a certain threshold. Saturation is undesirable because different amplitudes of the detail signal are mapped to the same amplitude of either -1 or 1. This leads to loss of information. Therefore, the gain must be controlled adaptively. We describe the following below gain control algorithm using tangent operations. To control the gain, we first perform a linear mapping of the detail signal �to a new signal c, (18) Such that the dynamic range of �is (-3,1) . A simple idea is to set the gain as a function of the signal� and to gradually decrease the gain from its maximum value when to its minimum value when . More specifically, we propose the following adaptive gain control function: (19) Where is a parameter that controls the rate of decreasing. The two parameters and are obtained by solving the equations: and . For a fixed , we can easily determine the two parameters as follows: (20) And (21) Although both and could be chosen based upon each individual image processing task, in general it is reasonable to set =1. 5. RESULTS AND COMPARISON Fig-7: Original Image Rock Figure7 shows the original image to do the simulation of this existing and proposed concepts the range of the image is [0,255]. Fig-8: Result of Classical Unsharp Masking Algorithm Figure.8. Shows the result of existing unsharp masking algorithm, it exhibit hallo effect ( the halo-effect are marked by the red ellipse) at the edges of the image, it is a drawback of existing algorithm. Figure 9.Shows the 133th row gray level profile of resultant image of existing unsharp masking algorithm. It exhibit out of range problem. The range of selected image for processing is [-1,1], but the resultant image exceeds this range this range (it suffering with out of range problem). The size of the image is 533 X 2400, means 533 rows and 2400 columns among these one of the column or row gray level profile can choose to exhibit the out of range problem., here all the pixels are not suffer without range problem, so there is no guaranty to exhibit out or range problem for all rows and columns, so choose appropriate column or row to exhibit out of range problem.
  • 7. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 805 Fig-9: 133th row gray level profile of existing unsharp masking resultant image Fig-10: Result of the Proposed Algorithm Fig-11:133th gray level profile of proposed algorithm resultant image The result of proposed algorithm is shown in figure10. It exhibits reduced hallo-effect, enhanced low contrast details of the image, and sharpness of the image is also enhanced. The figure11.shows 133th row level profile of result of proposed algorithm, it exhibit the solved out or range problem, here the range of the image is [-1.1]. CONCLUSION AND FURTHER WORK In this paper, we developed generalized unsharp masking algorithm by using an exploratory data model as a unified frame work, it is very useful for highly texture images and which images having long distance objects to find the exact edges for that objects. By using the generalized unsharp masking algorithm we solved problems associated with existing unsharp masking algorithm, first one is the halo-effect is reduced by means of an edge-preserving filter that is bilateral filter, second one is rescaling process eliminated by using tangent operations and final one we introduced a new future that is simultaneously enhancing contrast and sharpness by means of individual treatment of the model component and the residual. Extensions of this work can be carried out in a number of directions. In this work, we only test the bilateral filter as a computationally inexpensive edge preserving filter. It is expected that other more advanced edge preserving filters such as non local means filter, the least squares filters and wavelet based denoising can produce similar or even better results. REFERENCES [1].G. Ramponi, ―A cubic unsharp masking technique for contrast enhancement, Signal Process., pp. 211–222, 1998. [2]. Gaung Deng, ―A Generalized Unsharp Masking Algorithm, IEEE Trans on image processing, vol. 20, no. 5, May 2011. [3]. S. J. Ko and Y. H. Lee, ―Center weighted median filters and their applications to image enhancement, IEEE Trans. Circuits Syst., vol. 38, no. 9, pp. 984–993, Sep. 1991. [4]. M. Fischer, J. L. Paredes, and G. R. Arce, ―Weighted median image sharpeners for the world wide web, IEEE Trans. Image Process., vol. 11, no. 7, pp. 717–727, Jul. 2002. [5]. R. Lukac, B. Smolka, and K. N. Plataniotis, ―Sharpening vector median filters, Signal Process., vol. 87, pp. 2085–2099, 2007. [6]. A. Polesel, G. Ramponi, and V. Mathews, ―Image enhancement via adaptive unsharp masking, IEEE Trans. Image Process., vol. 9, no. 3, pp. 505–510, Mar. 2000. [7]. E. Peli, ―Contrast in complex images,J. Opt. Soc. Amer.,vol. 7, no. 10, p. 2032–2040, 1990. [8]. S. Pizer, E. Amburn, J. Austin, R. Cromartie, A. Geselowitz, T. Greer, B. Romeny, J. Zimmerman, and K. Zuiderveld, ―Adaptive histogram equalization and its variations, Comput. Vis. Graph. Image Process., vol. 39, no. 3, pp. 355–368, Sep. 1987. [9]. G. Deng and L. W. Cahill, ―Image enhancement using the log-ratio approach, in Proc. 28th Asilomar Conf. Signals, Syst. Comput.s, 1994, vol. 1, pp. 198–202. [11]. L. W. Cahill and G. Deng, ―An overview of logarithm- based image processing techniques for biomedical applications,in Proc. 13th Int.Conf. Digital Signal Process. 1997, vol. 1, pp. 93–96. [12]. J. Pinoli, ―A general comparative study of the multiplicative homomorphic log-ratio and logarithmic image
  • 8. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 05 | May-2013, Available @ http://www.ijret.org 806 processing approaches, Signal Process., vol. 58, no. 1, pp. 11– 45, 1997. [13]. M. Jourlin and J.-C. Pinoli, ―A model for logarithmic image processing, J. Microsc., vol. 149, pp. 21–35, 1988. [14]. Digital Image Processing-R.C.Gonzalez&Woods, Addition Wesley/Pearson education, 2nd Edition, 2002. [15]. Fundamentals of Digital Image Processing-A.K.Jain, PHI. [16]. C. Tomasi and R. Manduchi, "Bilateral Filtering for Gray and Color Images", Proceedings of the 1998 IEEE International Conference on Computer Vision, Bombay, India BIOGRAPHIES: SUNKARI SRIDHAR, Assistant Professor, ECE Dept., RRSCET, Muthangi, Patancheru, Medak Dist. He received B.Tech degree from JNTU, Hyderabad and M.Tech degree from JNTUCEH, Kukatpally, Hyderabad. SHAIK MEERAVALI, Professor and Head, Department of Electronics and Communication Engg, RRS College of Engineering and Technology, Muthangi, Andhra Pradesh, India.