Preserving brightness in histogram equalization based contrast enhancement techniques

Size: px
Start display at page:

Download "Preserving brightness in histogram equalization based contrast enhancement techniques"

Transcription

1 Digital Signal Processing 14 (2004) Preserving brightness in histogram equalization based contrast enhancement techniques Soong-Der Chen a,, Abd. Rahman Ramli b a College of Information Technology, Universiti Tenaga Nasional, Km 7, Jalan Kajang-Puchong, Kajang, Selangor D.E., Malaysia b Department of Computer and Communication Systems Engineering, Faculty of Engineering, Universiti Putra Malaysia, Serdang, Selangor D.E., Malaysia Available online 28 July 2004 Abstract Histogram equalization (HE) has been a simple yet effective image enhancement technique. However, it tends to change the brightness of an image significantly, causing annoying artifacts and unnatural contrast enhancement. Brightness preserving bi-histogram equalization (BBHE) and dualistic sub-image histogram equalization (DSIHE) have been proposed to overcome these problems but they may still fail under certain conditions. This paper proposes a novel extension of BBHE referred to as minimum mean brightness error bi-histogram equalization (MMBEBHE). MMBEBHE has the feature of minimizing the difference between input and output image s mean. Simulation results showed that MMBEBHE can preserve brightness better than BBHE and DSIHE. Furthermore, this paper also formulated an efficient, integer-based implementation of MMBEBHE. Nevertheless, MMBEBHE also has its limitation. Hence, this paper further proposes a generalization of BBHE referred to as recursive mean-separate histogram equalization (RMSHE). RMSHE is featured with scalable brightness preservation. Simulation results showed that RMSHE is the best compared to HE, BBHE, DSIHE, and MMBEBHE Elsevier Inc. All rights reserved. Keywords: Bi-histogram equalization; Dualistic sub-image; Histogram equalization; Mean separate; Minimum mean brightness error; Recursive * Corresponding author. address: chensoong@uniten.edu.my (S.-D. Chen) /$ see front matter 2004 Elsevier Inc. All rights reserved. doi: /j.dsp

2 414 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) Introduction Histogram equalization (HE) has been a very popular technique for enhancing the contrast of an image [1]. It has been applied in various fields such as medical image processing [2] and sonar image processing [3]. It remaps the gray levels of an image based on the image s gray levels cumulative density function. As a result, it stretches the dynamic range of an image and improves the image s contrast. Besides, HE also produces an image with flat histogram where the entire gray levels have uniform probability density as shown in Fig. 1, where p(x) denotes the probability density of the gray level, x {X 0,X 1,...,X L 1 } and L denotes the total number of discrete gray levels of the image. This is a useful feature as it maximizes the entropy of an image [4]. As shown by Kim [5], an image s mean brightness after HE tends to be around the middle of the gray scale regardless of the original image s mean. Let Y denotes the output image, E( ) is the statistical expectation or mean and X G is the middle of the gray scale. Then it follows that: E(Y) = X G = 1 2 (X 0 + X L 1 ). (1.01) While this is useful in application such as face detection for reducing brightness variance [6,7], it is not desirable in consumer electronics application (digital camera, TV, etc.) where preserving the original brightness is necessary to avoid annoying artifacts and unnatural enhancement [5]. For instance, Fig. 4(a) shows an original image hands while Fig. 4(c) shows the resultant image of HE that are composed of 256 gray levels. The equalized image is much brighter compared to the input image. The overall contrast of the image is also degraded after HE. Figures 5(a) and 5(c) show the original image F16, and the resultant image of HE, respectively. Unnatural enhancement can be seen around the cloud; one would perceive a totally different visual recognition around the cloud. Observed that the contrasts around the letters and the emblem on the airplane are also degraded. This is a direct consequence of the excessive change in brightness by HE. Brightness preserving bi-histogram equalization (BBHE) has been proposed to overcome the aforementioned problems [5]. Firstly, it separates an image s histograms into two Fig. 1. An image s histogram before and after HE.

3 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) Fig. 2. Histogram before and after BBHE. based on the image s mean, X m {X 0,X 1,...,X L 1 }. The two histograms are then equalized independently as illustrated in Fig. 2. The output image s mean of BBHE is a function of the input image s mean as shown by Kim [5] with the following equation: E(Y) = 1 2 (X m + X G ). (1.02) This implies that BBHE has the feature of preserving an image s original brightness, which is not found in typical HE. Figures 4(d) and 5(d) clearly demonstrate the effectiveness of BBHE. Later, equal area dualistic sub-image histogram equalization (DSIHE) has been proposed by Wan et al. [4] as an extension to BBHE. DSIHE selectively separate the histogram using threshold level with cumulative probability density equal to 0.5. The DSIHE is claimed to outperform BBHE in term of preserving an image s brightness and entropy. Nevertheless, both BBHE and DSIHE may fail to enhance an image under certain conditions. Figures 6(d) 6(e), 7(d) 7(e), 8(d) 8(e), 9(d) 9(e), and 10(d) 10(e) show the resultant images of U2, arctic hare, copter, girl, andjet after BBHE and DSIHE, respectively. Their appearances clearly indicate that BBHE and DISHE fail to preserve their original brightness well. This paper aims to present some solutions to overcome the limitations of HE, BBHE, and DISHE in preserving an image s original brightness. In what follows, the extension of BBHE, namely minimum mean brightness error bi-histogram equalization (MM- BEBHE), together with the formulation of its efficient integer-based implementation will be presented in Section 2. Section 3 lists a few simulation results to demonstrate the effectiveness of MMBEBHE. Next, the generalization of BBHE, namely recursive meanseparate histogram equalization (RMSHE) will be presented in Section 4 together with the mathematical analysis. Section 5 lists a few simulation results to demonstrate the effectiveness of RMSHE. Section 6 serves as the conclusion of this paper.

4 416 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) Minimum mean brightness error bi-histogram equalization (MMBEBHE) An objective measurement is proposed to rate the performance in preserving the original brightness. It is referred to as absolute mean brightness error (AMBE) and is defined as the absolute difference between the input and the output image s mean AMBE = E(X) E(Y). (2.01) X and Y denotes the input and output image, respectively. Lower AMBE indicates that the brightness is better preserved. MMBEBHE, which perform bi-histogram equalization with minimum AMBE is also proposed. MMBEBHE is formally defined by the following procedures: (1) Calculate the AMBE for each of the possible threshold levels. (2) Find the threshold level, X T that yield minimum AMBE. (3) Separate the input histogram into two based on the X T found in Step 2 and equalize them independently as in BBHE. Steps 2 and 3 are straightforward processes. Step 1 would require considerable amount of computation if one full BBHE were required for computing the AMBE for each of the possible threshold levels. The computation complexity would then be a function of L 2. A 16-bits/pixel image would require up to at least (2 16 ) 2 operations. This could become a major drawback of MMBEBHE in real time implementation. This paper proposes a fast implementation of MMBEBHE. Equation (2.02) is the general definition for the mean brightness of an image after bi-histogram equalization based techniquessuch as BBHE, DSIHE, and MMBEBHE, where p( ) denotes probability density and X T denotes the selected threshold level E(Y) = E(Y X X T )p(x X T ) + E(Y X >X T )p(x >X T ). (2.02) Let us take the differentiation on both sides of Eq. (2.02): E(Y) = E(Y X X T )p(x X T ) + E(Y X X T ) p(x X T ) + E(Y X >X T )p(x >X T ) + E(Y X >X T ) p(x >X T ). (2.03) Equation (2.03) can be rewritten into a more useful form by applying the following facts. First, it has been shown by Kim [5] that E(Y X X T ) = 1 2 (X T + X 0 ), (2.04) E(Y X >X T ) = 1 2 (X L 1 + X T ). (2.05) Second, for typical representation of digital gray scale image, it can be assumed that X = X T+1 X T = 1. (2.06) Then it follows that:

5 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) E(Y X X T ) = E(Y X X T+1 ) E(Y X X T ) = 1 2 (X T+1 + X 0 ) 1 2 (X T + X 0 ) = 1 2, (2.07) E(Y X >X T ) = E(Y X >X T+1 ) E(Y X >X T ) Third, it can be easily seen that = 1 2 (X L 1 + X T+2 ) 1 2 (X L 1 + X T+1 ) = 1 2. (2.08) p(x X T ) + p(x >X T ) = 1, (2.09) p(x X T ) = p(x X T+1 ) p(x X T ) = p(x T+1 ), (2.10) p(x >X T ) = p(x >X T+1 ) p(x >X T ) = p(x T+1 ). (2.11) Combining Eqs. (2.07) (2.11) and Eq. (2.03), E(Y) = [ E(Y X X T ) E(Y X >X T ) ] p(x T+1 ) = (X L 1 X 0 + 1)p(X T+1 ) = 1 2 [ 1 Lp(XT+1 ) ]. (2.12) Let E T+1 (Y) and E T (Y) denote the output mean when threshold level is set as X T+1 and X T, respectively. Then, Eq. (2.03) can also be used to relate mean brightness error (MBE) as follows: E(Y) = E T+1 (Y) E T (Y) = [ E T+1 (Y) E(X) ] [ E T (Y) E(X) ] = MBE T+1 MBE T. (2.13) Combining (2.12) and (2.13), Note that MBE T+1 = MBE T + 1 2[ 1 Lp(XT+1 ) ]. (2.14) MBE 0 = X G E(X). (2.15) Equation (2.14) involves p(x T+1 ) which is a floating point number. In fact, the scaled MBE in the form of integer number is sufficient to determine the threshold level that yield minimum AMBE. Let us denote F(X i ) as the number of pixel with gray level X i and N as the total number of pixel in the image. It follows that: [ (2N)MBE T+1 = (2N) MBE T + 2[ 1 1 Lp(XT+1 ) ]], SMBE T+1 = SMBE T + [ N LF (X T+1 ) ], (2.16) where SMBE = (2N)MBE. The number gray levels, L is often of base 2. As such, the multiplication with L could further be reduced to a simple shift operation. Finally, a comparator is required to compute the absolute value of SMBE. From Eq. (2.16), it is clear that the complexity of the computation has been reduced from the function of L 2 to L.

6 418 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) Simulation results of MMBEBHE Table 1 contains the AMBE of the test images after being enhanced by HE, BBHE, DSIHE, and MMBEBHE, respectively. Image F16 is a test image used by Kim [5] to demonstrate the effectiveness of BBHE. In this particular case, the threshold level used by BBHE and MMBEBHE are both close to zero. This indicates that the threshold level should be chosen based on the resulting AMBE and not fixed to the input mean. Table 1 also shows that HE, BBHE, and DSIHE do not guarantee minimum mean error. Simulation results of HE, BBHE, DISHE, and MMBEBHE are presented in Figs. 4, 5, 6, 7, and 8. For test image U2 (Fig. 6), there are unpleasant artifacts (bright noise) in the resultant images of HE, BBHE, and DSIHE, but these artifacts are not seen with MM- BEBHE. For test image arctic hare (Fig. 7), the resultant images of HE, BBHE, and DSIHE are much darker compared to the original image and they clearly show unnatural enhancement. Result from MMBEBHE indicates that the proposed algorithm has preserved the brightness well (brighter mean brightness) and yielded a more natural enhancement. For test image copter (Fig. 8), it can be observed that the resultant image of HE, BBHE and DSIHE have experienced excessive change in brightness, causing unnatural enhancement and also contrast decrement in the main object (copter). Using MMBEBHE, the image s original brightness is well preserved and the enhancement yielded is more natural. Test image, hands (Fig. 4) was used by both [4] and [5] to demonstrate the effectiveness of BBHE and DSIHE, respectively. Using MMBEBHE, the output image shows a darker Table 1 List of selected threshold level, X T and resulting AMBE for HE, BBHE, DSIHE, and MMBEBHE HE BBHE DSIHE MMBEBHE AMBE X T AMBE X T AMBE X T AMBE U Arctic hare Copter F Hands Fig. 3. Histogram before and after RMSHE, r = 2.

7 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) Fig. 4. (a) Original image of hands, (b) result of MMBEBHE, (c) result of HE, (d) result of BBHE, (e) result of DSIHE.

8 420 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) Fig. 5. (a) Original image of F16, (b) result of MMBEBHE, (c) result of HE, (d) result of BBHE, (e) result of DSIHE.

9 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) Fig. 6. (a) Original image of U2, (b) result of MMBEBHE, (c) result of HE, (d) result of BBHE, (e) result of DSIHE.

10 422 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) Fig. 7. (a) Original image of arctic hare, (b) result of MMBEBHE, (c) result of HE, (d) result of BBHE, (e) result of DSIHE. background, thus preserving the background better than BBHE. Output of DSIHE shows annoying artifacts (white spots) along the edges around the hand and head. These artifacts are not seen in the result of MMBEBHE. For image F16 (Fig. 5), the output of BBHE and MMBEBHE is very similar but better than those of HE and DSIHE, which have become much darker and show poorer contrast around the letters F16. The simulation results indicate that MMBEBHE performs better than HE, BBHE, and DSIHE. Nevertheless, there are images that require far more brightness preservation than MMBEBHE can provide to avoid annoying artifacts. This is clearly shown in image girl (Fig. 9(f)) and jet (Fig. 10(f)). The next section presents a generalization of bi-histogram equalization to overcome this limitation.

11 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) Fig. 8. (a) Original image of copter, (b) result of MMBEBHE, (c) result of HE, (d) result of BBHE, (e) result of DSIHE. 4. Recursive mean-separate histogram equalization (RMSHE) The design of BBHE indicates that performing mean-separation before the equalization process does preserve an image s original brightness. Mean-separation refers to separating an image into two sub-image based on the mean of the input image. In fact, this is

12 424 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) (f) Fig. 9. (a) Original image girl, (b) result of RMSHE, r = 2,(c)resultofHE,(d)resultofBBHE,(e)resultof DSIHE, (f) result of MMBEBHE.

13 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) (a) (b) (c) (d) (e) (f) Fig. 10. (a) Original image jet, (b) result of RMSHE, r = 2,(c)resultofHE,(d)resultofBBHE,(e)resultof DSIHE, (f) result of MMBEBHE. equivalent to separating an image s histogram into two portions based on the mean of the input image. In HE, no mean-separation is performed and hence, the original brightness is not preserved at all. HE is equivalent to RMSHE level 0 (r = 0). In BBHE, the meanseparation is performed once and the original brightness is preserved to a certain extent. BBHE is equivalent to RMSHE with r = 1. RMSHE generalized BBHE by performing the mean-separation recursively to further preserve the original brightness. Supposed an image X is separated into 4 portions based on the mean of the two portions of the histogram, X ml and X mu as shown in Fig. 3. Let us define X ml and X mu as

14 426 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) X ml = X mu = Xm X 0 xp(x) dx Xm X 0 p(x)dx = 2 XL 1 X m X m xp(x) dx XL 1 X m p(x)dx = 2 X 0 xp(x) dx, (4.01) X L 1 X m xp(x) dx, (4.02) where for simplicity, X is assumed to have a symmetric distribution around X m [5] such that X m X 0 p(x)dx = X L 1 X m p(x)dx = 1 2. (4.03) Figure 3 shows the histogram before and after equalizing the four portions of the histogram independently. This is the result of RMSHE with r = 2. The following shows the formulation of the output mean, where X is assumed to have a symmetric distribution around X m such that p(x X ml ) = p(x ml < X X m ) = p(x m < X X mu ) = p(x >X mu ) = 1 4 (4.04) and E(Y) = E(Y X X ml )p(x X ml ) + E(Y X ml < X X m )p(x ml < X X m ) + E(Y X m < X X mu )p(x m < X X mu ) + E(Y X >X mu )p(x >X mu ) = 1 4 { E(Y X Xml ) + E(Y X ml < X X m ) + E(Y X m < X X mu ) + E(Y X >X mu ) }. (4.05) With similar discussion by Kim [5] to obtain Eqs. (2.04) and (2.05) and the fact that (1/2)(X ml + X mu ) = X m (derived from Eqs. (4.01) and (4.02)), it follows that: E(Y) = 1 {[ ] [ ] [ ] [ ]} X0 + X ml Xml + X m Xm + X mu Xmu + X L = 1 4 {X G + 3X m }. (4.06) Performing two mean-separations helps to preserve the original brightness better, as indicated by Eq. (4.06) where the weight of the input mean, X m has increased to three times the weight of the middle of the gray scale, X G. Based on the output mean for RMSHE with r = 0, 1, and 2 as discussed, it can be observed that the weight of the input mean increases as the number of recursive mean-separations increases. The output mean E(Y) for RMSHE with r can be generalized as follows: E(Y) = (2r 1)X m + X G 2 r = X m + [ XG X m 2 r ]. (4.07)

15 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) Equation (4.07) indicates that as r grows larger, E(Y) will eventually converge to the input mean, X m. In other words, RMSHE can preserve an image s original brightness in a scalable manner, range from 0% (output of HE) to 100% (getting back the original image). 5. Simulation results of RMSHE Simulation results using test images girl and jet are presented in Figs. 9 and 10, respectively. For the test image girl, result using HE, BBHE, DSIHE, MMBEBHE (Fig. 9(c) 9(f)) show unpleasant artifacts in the background, decrease of contrast in the hair and unnatural enhancement of the face. All these artifacts are not seen when using RMSHE with r = 2 (Fig. 9(b)). For the test image jet, it is observed that the results of HE, BBHE, DSIHE, MMBEBHE (Fig. 10(c) 10(f)) are too dark when compared to the original image. The contrast within the body of the jet also becomes poorer. The result of RMSHE, r = 2 (Fig. 10(b)) shows that the proposed algorithm has preserved the brightness well and gives natural enhancement in most part of the image, particularly at the body of the jet. 6. Conclusions In the context of bi-histogram equalization, MMBEBHE is better than BBHE and DSIHE in preserving an image s original brightness. Real time implementation does not become an issue as there is an efficient integer-based computation of MMBEBHE. Nevertheless, the variety of images in consumer electronics is too wide to be covered with a limited level of brightness preservation offered by bi-histogram equalization based techniques (BBHE, DSIHE, and MMBEBHE). Therefore, RMSHE turns out to be the most practical solution as it allows full range and scalable brightness preservation. Further work is suggested to look for proper mechanism than can automate the selection of the appropriate level of RMSHE, r that would give optimum output. We also suggests further work to formulate a more efficient implementation of RMSHE with reference to how quantized mean-separate HE [8] has been proposed as a cost reduced implementation for BBHE. Last but not least, this paper suggests to look into the extension of this algorithm to color image with reference to what has been proposed in [9] to extend BBHE to color image. References [1] S.E. Umbaugh, Computer Vision and Image Processing, Prentice Hall, New Jersey, 1998, p [2] S.M. Pizer, The medical image display and analysis group at the University of North Carolina: reminiscences and philosophy, IEEE Trans. Med. Imag. 22 (1) (2003) [3] A. Malinverno, et al., Processing of SeaMARC swath sonar data, IEEE J. Oceanic Eng. 15 (1) (1990) [4] Y. Wan, Q. Chen, B.-M. Zhang, Image enhancement based on equal area dualistic sub-image histogram equalization method, IEEE Trans. Consum. Electron. 45 (1) (1999)

16 428 S.-D. Chen, A. Rahman Ramli / Digital Signal Processing 14 (2004) [5] Y.-T. Kim, Contrast enhancement using brightness preserving bi-histogram equalization, IEEE Trans. Consum. Electron. 43 (1) (1997) 1 8. [6] T.V. Pham, M. Worring, A.W.M. Smeulders, Face detection by aggregated Bayesian network classifiers, in: Elsevier Pattern Recognition Letter, vol. 23, 2002, pp [7] L.-L. Huang, et al., Face detection from cluttered images using a polynomial neural network, in: Elsevier Neurocomputing, vol. 51, 2003, pp [8] Y.-T. Kim, Method for image enhancing using quantized mean-separate histogram equalization, US patent 5,857,033, Jan. 5, [9] Y.-T. Kim, Image enhancing method and circuit using mean-separate/quantized mean separate histogram equalization and color compensation, US patent 6,049,626, Apr. 11, 2000.

Optik 124 (2013) Contents lists available at SciVerse ScienceDirect. Optik. jou rnal homepage:

Optik 124 (2013) Contents lists available at SciVerse ScienceDirect. Optik. jou rnal homepage: Optik 14 013 45 431 Contents lists available at SciVerse ScienceDirect Optik jou rnal homepage: www.elsevier.de/ijleo Range Limited Bi-Histogram Equalization for image contrast enhancement Chao Zuo, Qian

More information

A Study on various Histogram Equalization Techniques to Preserve the Brightness for Gray Scale and Color Images

A Study on various Histogram Equalization Techniques to Preserve the Brightness for Gray Scale and Color Images A Study on various Histogram Equalization Techniques to Preserve the Brightness for Gray Scale Color Images Babu P Balasubramanian.K Vol., 8 Abstract:-Histogram equalization (HE) wors well on singlechannel

More information

Constrained PDF based histogram equalization for image constrast enhancement

Constrained PDF based histogram equalization for image constrast enhancement Constrained PDF based histogram equalization for image constrast enhancement 1 K. Balasubramanian, Assistant Professor Department of Computer Applications PSNA College of Engineering & Technology Dindigul,

More information

Contrast Improvement on Various Gray Scale Images Together With Gaussian Filter and Histogram Equalization

Contrast Improvement on Various Gray Scale Images Together With Gaussian Filter and Histogram Equalization Contrast Improvement on Various Gray Scale Images Together With Gaussian Filter and Histogram Equalization I M. Rajinikannan, II A. Nagarajan, III N. Vallileka I,II,III Dept. of Computer Applications,

More information

COMPARISON AND ANALYSIS OF VARIOUS HISTOGRAM EQUALIZATION TECHNIQUES

COMPARISON AND ANALYSIS OF VARIOUS HISTOGRAM EQUALIZATION TECHNIQUES COMPARISON AND ANALYSIS OF VARIOUS HISTOGRAM EQUALIZATION TECHNIQUES RUBINA KHAN* Flat 7 Parijat Complex,158 Railway lines, Solapur,Maharashtra,India rubynak@gm MADKI.M.R W.I.T,Ashok Chowk, Solapur,,Maharashtra,India

More information

Study of Brightness Preservation Histogram Equalization Techniques

Study of Brightness Preservation Histogram Equalization Techniques Study of Brightness Preservation Histogram Equalization Techniques Rasna 1, Vinod Karar 2, Puneet Bansal 3 1, 3( University Institute of Engineering and Technology, Kurukshetra University, Kurukshetra,

More information

Histogram Equalization Techniques for Contrast Enhancement: A Review

Histogram Equalization Techniques for Contrast Enhancement: A Review Histogram Equalization Techniques for Contrast Enhancement: A Review Sourav Das M.Tech, Final Year Student Department of Electronics & Tarun Gulati Associate Professor Department of Electronics & Vikas

More information

Review of Different Local and Global Contrast Enhancement Techniques for a Digital Image

Review of Different Local and Global Contrast Enhancement Techniques for a Digital Image Review of Different Local and Global Contrast Enhancement Techniques for a Digital Image Shefali Gupta Research Scholar Chandigarh Group of Colleges Gharuan, Mohali Yadwinder Kaur Associate Professor Chandigarh

More information

Iterative Thresholded Bi-Histogram Equalization for Medical Image Enhancement

Iterative Thresholded Bi-Histogram Equalization for Medical Image Enhancement Iterative Thresholded Bi-Histogram Equalization for Medical Image Enhancement Qadar Muhammad Ali Key Laboratory of Intelligent Information Processing, Institute of Computing Technology, Chinese Academy

More information

MODIFIED HISTOGRAM EQUALIZATION FOR IMAGE CONTRAST ENHANCEMENT USING PARTICLE SWARM OPTIMIZATION

MODIFIED HISTOGRAM EQUALIZATION FOR IMAGE CONTRAST ENHANCEMENT USING PARTICLE SWARM OPTIMIZATION MODIFIED HISTOGRAM EQUALIZATION FOR IMAGE CONTRAST ENHANCEMENT USING PARTICLE SWARM OPTIMIZATION P.Shanmugavadivu 1, K.Balasubramanian 2 and K.Somasundaram 3 1,3 Department of Computer Science and Applications,

More information

Image contrast enhancement based on local brightness and contouring artifact improvement for large-scale LCD TVs

Image contrast enhancement based on local brightness and contouring artifact improvement for large-scale LCD TVs Image contrast enhancement based on local brightness and contouring artifact improvement for large-scale LCD TVs JONG-HEE HWANG 1,2, JEAN Y. SONG 1, YOON-SIK CHOE 1 1 Department of Electrical and Electronics

More information

Parametric based morphological transformation for contrast enhancement of color images in poor-lighting

Parametric based morphological transformation for contrast enhancement of color images in poor-lighting Sādhanā Vol. 40, Part 2, April 2015, pp. 395 410. c Indian Academy of Sciences Parametric based morphological transformation for contrast enhancement of color images in poor-lighting ATLURI SRIKRISHNA,

More information

Quality Analysis and Image Enhancement Using Transformation Techniques

Quality Analysis and Image Enhancement Using Transformation Techniques Quality Analysis and Image Enhancement Using Transformation Techniques D.Umamageswari 1, L.Sivasakthi, 2 R.Vani 3 Final Year Student, Department of ECE, Meenakshi College of Engineering, Chennai, India

More information

Research Article Fuzzy Logic-Based Histogram Equalization for Image Contrast Enhancement

Research Article Fuzzy Logic-Based Histogram Equalization for Image Contrast Enhancement Mathematical Problems in Engineering Volume 213, Article ID 891864, 1 pages http://dx.doi.org/1.1155/213/891864 Research Article Fuzzy Logic-Based Histogram Equalization for Image Contrast Enhancement

More information

Image Contrast Enhancement Techniquesbased on Dynamic Range of Histogram

Image Contrast Enhancement Techniquesbased on Dynamic Range of Histogram IJCST Vo l. 6, Is s u e 2, Ap r i l - Ju n e 2015 ISSN : 0976-8491 (Online) ISSN : 2229-4333 (Print) Image Contrast Enhancement Techniquesbased on Dynamic Range of Histogram 1 Dheeraj S.Patil, 2 D.Y.Loni

More information

DETECTION OF SMOOTH TEXTURE IN FACIAL IMAGES FOR THE EVALUATION OF UNNATURAL CONTRAST ENHANCEMENT

DETECTION OF SMOOTH TEXTURE IN FACIAL IMAGES FOR THE EVALUATION OF UNNATURAL CONTRAST ENHANCEMENT DETECTION OF SMOOTH TEXTURE IN FACIAL IMAGES FOR THE EVALUATION OF UNNATURAL CONTRAST ENHANCEMENT 1 NUR HALILAH BINTI ISMAIL, 2 SOONG-DER CHEN 1, 2 Department of Graphics and Multimedia, College of Information

More information

Satellite Image Processing Using Singular Value Decomposition and Discrete Wavelet Transform

Satellite Image Processing Using Singular Value Decomposition and Discrete Wavelet Transform Satellite Image Processing Using Singular Value Decomposition and Discrete Wavelet Transform Kodhinayaki E 1, vinothkumar S 2, Karthikeyan T 3 Department of ECE 1, 2, 3, p.g scholar 1, project coordinator

More information

A REVIEW ON HISTOGRAM EQUALIZATION TECHNIQUES FOR IMAGE ENHANCEMENT

A REVIEW ON HISTOGRAM EQUALIZATION TECHNIQUES FOR IMAGE ENHANCEMENT A REVIEW ON HISTOGRAM EQUALIZATION TECHNIQUES FOR IMAGE ENHANCEMENT Rashmi P. Jogiya M.Tech Student, Electronics Department, J.D. College of Engg and Management, Nagpur, Maharashtra, India Sunil R. Gupta

More information

An ICA based Approach for Complex Color Scene Text Binarization

An ICA based Approach for Complex Color Scene Text Binarization An ICA based Approach for Complex Color Scene Text Binarization Siddharth Kherada IIIT-Hyderabad, India siddharth.kherada@research.iiit.ac.in Anoop M. Namboodiri IIIT-Hyderabad, India anoop@iiit.ac.in

More information

RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE

RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE RESTORATION OF DEGRADED DOCUMENTS USING IMAGE BINARIZATION TECHNIQUE K. Kaviya Selvi 1 and R. S. Sabeenian 2 1 Department of Electronics and Communication Engineering, Communication Systems, Sona College

More information

Comparative Study of Linear and Non-linear Contrast Enhancement Techniques

Comparative Study of Linear and Non-linear Contrast Enhancement Techniques Comparative Study of Linear and Non-linear Contrast Kalpit R. Chandpa #1, Ashwini M. Jani #2, Ghanshyam I. Prajapati #3 # Department of Computer Science and Information Technology Shri S ad Vidya Mandal

More information

A reversible data hiding based on adaptive prediction technique and histogram shifting

A reversible data hiding based on adaptive prediction technique and histogram shifting A reversible data hiding based on adaptive prediction technique and histogram shifting Rui Liu, Rongrong Ni, Yao Zhao Institute of Information Science Beijing Jiaotong University E-mail: rrni@bjtu.edu.cn

More information

Motivation. Intensity Levels

Motivation. Intensity Levels Motivation Image Intensity and Point Operations Dr. Edmund Lam Department of Electrical and Electronic Engineering The University of Hong ong A digital image is a matrix of numbers, each corresponding

More information

H.I.T., Sonepat, Haryana, India

H.I.T., Sonepat, Haryana, India Histogram Equalization Techniques For Image Enhancement 1 Rajesh Garg, 2 Bhawna Mittal, 3 Sheetal Garg 1,2 H.I.T., Sonepat, Haryana, India 3 S.M.Hindu Sr.Sec.School, Sonepat, Haryana, India Abstract Various

More information

Linear Quadtree Construction in Real Time *

Linear Quadtree Construction in Real Time * JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 26, 1917-1930 (2010) Short Paper Linear Quadtree Construction in Real Time * CHI-YEN HUANG AND YU-WEI CHEN + Department of Information Management National

More information

A simple and effective histogram equalization approach to image enhancement

A simple and effective histogram equalization approach to image enhancement R Available online at www.sciencedirect.com Digital Signal Processing 14 (2004) 158 170 www.elsevier.com/locate/dsp A simple and effective histogram equalization approach to image enhancement H.D. Cheng

More information

Edge Preserving Contrast Enhancement Method Using PCA in Satellite Images

Edge Preserving Contrast Enhancement Method Using PCA in Satellite Images Edge Preserving Contrast Enhancement Method Using PCA in Satellite Images Sruthy M Sreedhar, Sarayu Vijayan Abstract This paper presents a contrast enhancement approach based on DWT using dominant brightness

More information

An Adaptive Histogram Equalization Based Local Technique for Contrast Preserving Image Enhancement

An Adaptive Histogram Equalization Based Local Technique for Contrast Preserving Image Enhancement Original Article International Journal of Fuzzy Logic and Intelligent Systems Vol. 15, No. 1, March 2015, pp. 35-44 http://dx.doi.org/10.5391/ijfis.2015.15.1.35 ISSN(Print) 1598-2645 ISSN(Online) 2093-744X

More information

Hand Vein Images Enhancement Based on Local Gray-level Information Histogram

Hand Vein Images Enhancement Based on Local Gray-level Information Histogram Hand Vein Images Enhancement Based on Local Gray-level Information Histogram Jun Wang, Guoqing Wang *, Ming Li, Wenai Du, Wenhui Yu School of Information and Electrical Engineering China University of

More information

An Optimal Gamma Correction Based Image Contrast Enhancement Using DWT-SVD

An Optimal Gamma Correction Based Image Contrast Enhancement Using DWT-SVD An Optimal Gamma Correction Based Image Contrast Enhancement Using DWT-SVD G. Padma Priya 1, T. Venkateswarlu 2 Department of ECE 1,2, SV University College of Engineering 1,2 Email: padmapriyagt@gmail.com

More information

IJSER. Abstract : Image binarization is the process of separation of image pixel values as background and as a foreground. We

IJSER. Abstract : Image binarization is the process of separation of image pixel values as background and as a foreground. We International Journal of Scientific & Engineering Research, Volume 7, Issue 3, March-2016 1238 Adaptive Local Image Contrast in Image Binarization Prof.Sushilkumar N Holambe. PG Coordinator ME(CSE),College

More information

Image Quality Analysis of a Novel Histogram Equalization Method for Image Contrast Enhancement

Image Quality Analysis of a Novel Histogram Equalization Method for Image Contrast Enhancement IEICE TRANS. INF. & SYST., VOL.E93 D, NO.7 JULY 2010 1773 PAPER Special Section on Machine Vision and its Applications Image Quality Analysis of a Novel Histogram Equalization Method for Image Contrast

More information

Fast and Effective Interpolation Using Median Filter

Fast and Effective Interpolation Using Median Filter Fast and Effective Interpolation Using Median Filter Jian Zhang 1, *, Siwei Ma 2, Yongbing Zhang 1, and Debin Zhao 1 1 Department of Computer Science, Harbin Institute of Technology, Harbin 150001, P.R.

More information

Automatic thresholding for defect detection

Automatic thresholding for defect detection Pattern Recognition Letters xxx (2006) xxx xxx www.elsevier.com/locate/patrec Automatic thresholding for defect detection Hui-Fuang Ng * Department of Computer Science and Information Engineering, Asia

More information

A New Configuration of Adaptive Arithmetic Model for Video Coding with 3D SPIHT

A New Configuration of Adaptive Arithmetic Model for Video Coding with 3D SPIHT A New Configuration of Adaptive Arithmetic Model for Video Coding with 3D SPIHT Wai Chong Chia, Li-Minn Ang, and Kah Phooi Seng Abstract The 3D Set Partitioning In Hierarchical Trees (SPIHT) is a video

More information

A Modified SVD-DCT Method for Enhancement of Low Contrast Satellite Images

A Modified SVD-DCT Method for Enhancement of Low Contrast Satellite Images A Modified SVD-DCT Method for Enhancement of Low Contrast Satellite Images G.Praveena 1, M.Venkatasrinu 2, 1 M.tech student, Department of Electronics and Communication Engineering, Madanapalle Institute

More information

Implementation of a Face Recognition System for Interactive TV Control System

Implementation of a Face Recognition System for Interactive TV Control System Implementation of a Face Recognition System for Interactive TV Control System Sang-Heon Lee 1, Myoung-Kyu Sohn 1, Dong-Ju Kim 1, Byungmin Kim 1, Hyunduk Kim 1, and Chul-Ho Won 2 1 Dept. IT convergence,

More information

Motivation. Gray Levels

Motivation. Gray Levels Motivation Image Intensity and Point Operations Dr. Edmund Lam Department of Electrical and Electronic Engineering The University of Hong ong A digital image is a matrix of numbers, each corresponding

More information

Perfectly Flat Histogram Equalization

Perfectly Flat Histogram Equalization Perfectly Flat Histogram Equalization Jacob Levman, Javad Alirezaie, Gul Khan Department of Electrical and Computer Engineering, Ryerson University jlevman jalireza gnkhan@ee.ryerson.ca Abstract In this

More information

IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN

IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN 1 Image Enhancement in the Spatial Domain 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN Unit structure : 3.0 Objectives 3.1 Introduction 3.2 Basic Grey Level Transform 3.3 Identity Transform Function 3.4 Image

More information

INTENSITY TRANSFORMATION AND SPATIAL FILTERING

INTENSITY TRANSFORMATION AND SPATIAL FILTERING 1 INTENSITY TRANSFORMATION AND SPATIAL FILTERING Lecture 3 Image Domains 2 Spatial domain Refers to the image plane itself Image processing methods are based and directly applied to image pixels Transform

More information

Robust color segmentation algorithms in illumination variation conditions

Robust color segmentation algorithms in illumination variation conditions 286 CHINESE OPTICS LETTERS / Vol. 8, No. / March 10, 2010 Robust color segmentation algorithms in illumination variation conditions Jinhui Lan ( ) and Kai Shen ( Department of Measurement and Control Technologies,

More information

Introduction to Digital Image Processing

Introduction to Digital Image Processing Fall 2005 Image Enhancement in the Spatial Domain: Histograms, Arithmetic/Logic Operators, Basics of Spatial Filtering, Smoothing Spatial Filters Tuesday, February 7 2006, Overview (1): Before We Begin

More information

arxiv:cs/ v1 [cs.cv] 12 Feb 2006

arxiv:cs/ v1 [cs.cv] 12 Feb 2006 Multilevel Thresholding for Image Segmentation through a Fast Statistical Recursive Algorithm arxiv:cs/0602044v1 [cs.cv] 12 Feb 2006 S. Arora a, J. Acharya b, A. Verma c, Prasanta K. Panigrahi c 1 a Dhirubhai

More information

Time Stamp Detection and Recognition in Video Frames

Time Stamp Detection and Recognition in Video Frames Time Stamp Detection and Recognition in Video Frames Nongluk Covavisaruch and Chetsada Saengpanit Department of Computer Engineering, Chulalongkorn University, Bangkok 10330, Thailand E-mail: nongluk.c@chula.ac.th

More information

Digital image processing

Digital image processing Digital image processing Image enhancement algorithms: grey scale transformations Any digital image can be represented mathematically in matrix form. The number of lines in the matrix is the number of

More information

Blur Space Iterative De-blurring

Blur Space Iterative De-blurring Blur Space Iterative De-blurring RADU CIPRIAN BILCU 1, MEJDI TRIMECHE 2, SAKARI ALENIUS 3, MARKKU VEHVILAINEN 4 1,2,3,4 Multimedia Technologies Laboratory, Nokia Research Center Visiokatu 1, FIN-33720,

More information

Adaptive extended piecewise histogram equalisation for dark image enhancement

Adaptive extended piecewise histogram equalisation for dark image enhancement IET Image Processing Research Article Adaptive extended piecewise histogram equalisation for dark image enhancement ISSN 1751-9659 Received on 4th April 2014 Revised on 19th May 2015 Accepted on 29th May

More information

Non-Linear Masking based Contrast Enhancement via Illumination Estimation

Non-Linear Masking based Contrast Enhancement via Illumination Estimation https://doi.org/10.2352/issn.2470-1173.2018.13.ipas-389 2018, Society for Imaging Science and Technology Non-Linear Masking based Contrast Enhancement via Illumination Estimation Soonyoung Hong, Minsub

More information

MODIFIED ADAPTIVE CENTER EIGHTED MEDIAN FILTER FOR UPPRESSINGIMPULSIVE NOISE IN IMAGES

MODIFIED ADAPTIVE CENTER EIGHTED MEDIAN FILTER FOR UPPRESSINGIMPULSIVE NOISE IN IMAGES MODIFIED ADAPTIVE CENTER EIGHTED MEDIAN FILTER FOR UPPRESSINGIMPULSIVE NOISE IN IMAGES BEHROOZ GHANDEHARIAN, HADI SADOGHI YAZDI and FARANAK HOMAYOUNI Computer Science Department, Ferdowsi University of

More information

An Adaptive Approach for Image Contrast Enhancement using Local Correlation

An Adaptive Approach for Image Contrast Enhancement using Local Correlation Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 12, Number 6 (2016), pp. 4893 4899 Research India Publications http://www.ripublication.com/gjpam.htm An Adaptive Approach for Image

More information

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping *

An Adaptive Histogram Equalization Algorithm on the Image Gray Level Mapping * Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 601 608 2012 International Conference on Solid State Devices and Materials Science An Adaptive Histogram Equalization Algorithm on

More information

A Study on Similarity Computations in Template Matching Technique for Identity Verification

A Study on Similarity Computations in Template Matching Technique for Identity Verification A Study on Similarity Computations in Template Matching Technique for Identity Verification Lam, S. K., Yeong, C. Y., Yew, C. T., Chai, W. S., Suandi, S. A. Intelligent Biometric Group, School of Electrical

More information

High Speed Pipelined Architecture for Adaptive Median Filter

High Speed Pipelined Architecture for Adaptive Median Filter Abstract High Speed Pipelined Architecture for Adaptive Median Filter D.Dhanasekaran, and **Dr.K.Boopathy Bagan *Assistant Professor, SVCE, Pennalur,Sriperumbudur-602105. **Professor, Madras Institute

More information

AN ACCELERATED K-MEANS CLUSTERING ALGORITHM FOR IMAGE SEGMENTATION

AN ACCELERATED K-MEANS CLUSTERING ALGORITHM FOR IMAGE SEGMENTATION AN ACCELERATED K-MEANS CLUSTERING ALGORITHM FOR IMAGE SEGMENTATION 1 SEYED MOJTABA TAFAGHOD SADAT ZADEH, 1 ALIREZA MEHRSINA, 2 MINA BASIRAT, 1 Faculty of Computer Science and Information Systems, Universiti

More information

C E N T E R A T H O U S T O N S C H O O L of H E A L T H I N F O R M A T I O N S C I E N C E S. Image Operations I

C E N T E R A T H O U S T O N S C H O O L of H E A L T H I N F O R M A T I O N S C I E N C E S. Image Operations I T H E U N I V E R S I T Y of T E X A S H E A L T H S C I E N C E C E N T E R A T H O U S T O N S C H O O L of H E A L T H I N F O R M A T I O N S C I E N C E S Image Operations I For students of HI 5323

More information

Film Line scratch Detection using Neural Network and Morphological Filter

Film Line scratch Detection using Neural Network and Morphological Filter Film Line scratch Detection using Neural Network and Morphological Filter Kyung-tai Kim and Eun Yi Kim Dept. of advanced technology fusion, Konkuk Univ. Korea {kkt34, eykim}@konkuk.ac.kr Abstract This

More information

Lecture 4. Digital Image Enhancement. 1. Principle of image enhancement 2. Spatial domain transformation. Histogram processing

Lecture 4. Digital Image Enhancement. 1. Principle of image enhancement 2. Spatial domain transformation. Histogram processing Lecture 4 Digital Image Enhancement 1. Principle of image enhancement 2. Spatial domain transformation Basic intensity it tranfomation ti Histogram processing Principle Objective of Enhancement Image enhancement

More information

CONTENT ADAPTIVE SCREEN IMAGE SCALING

CONTENT ADAPTIVE SCREEN IMAGE SCALING CONTENT ADAPTIVE SCREEN IMAGE SCALING Yao Zhai (*), Qifei Wang, Yan Lu, Shipeng Li University of Science and Technology of China, Hefei, Anhui, 37, China Microsoft Research, Beijing, 8, China ABSTRACT

More information

IMPLEMENTATION OF THE CONTRAST ENHANCEMENT AND WEIGHTED GUIDED IMAGE FILTERING ALGORITHM FOR EDGE PRESERVATION FOR BETTER PERCEPTION

IMPLEMENTATION OF THE CONTRAST ENHANCEMENT AND WEIGHTED GUIDED IMAGE FILTERING ALGORITHM FOR EDGE PRESERVATION FOR BETTER PERCEPTION IMPLEMENTATION OF THE CONTRAST ENHANCEMENT AND WEIGHTED GUIDED IMAGE FILTERING ALGORITHM FOR EDGE PRESERVATION FOR BETTER PERCEPTION Chiruvella Suresh Assistant professor, Department of Electronics & Communication

More information

Filtering of impulse noise in digital signals using logical transform

Filtering of impulse noise in digital signals using logical transform Filtering of impulse noise in digital signals using logical transform Ethan E. Danahy* a, Sos S. Agaian** b, Karen A. Panetta*** a a Dept. of Electrical and Computer Eng., Tufts Univ., 6 College Ave.,

More information

2006 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media,

2006 IEEE. Personal use of this material is permitted. Permission from IEEE must be obtained for all other uses, in any current or future media, 6 IEEE Personal use of this material is permitted Permission from IEEE must be obtained for all other uses, in any current or future media, including reprinting/republishing this material for advertising

More information

Image retrieval based on bag of images

Image retrieval based on bag of images University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2009 Image retrieval based on bag of images Jun Zhang University of Wollongong

More information

Image Enhancement. Digital Image Processing, Pratt Chapter 10 (pages ) Part 1: pixel-based operations

Image Enhancement. Digital Image Processing, Pratt Chapter 10 (pages ) Part 1: pixel-based operations Image Enhancement Digital Image Processing, Pratt Chapter 10 (pages 243-261) Part 1: pixel-based operations Image Processing Algorithms Spatial domain Operations are performed in the image domain Image

More information

Color and Contrast Enhancement by Controlled Piecewise Affine Histogram Equalization

Color and Contrast Enhancement by Controlled Piecewise Affine Histogram Equalization 2014/07/01 v0.5 IPOL article class Published in Image Processing On Line on 2012 10 17. Submitted on 2012 00 00, accepted on 2012 00 00. ISSN 2105 1232 c 2012 IPOL & the authors CC BY NC SA This article

More information

Multi-pass approach to adaptive thresholding based image segmentation

Multi-pass approach to adaptive thresholding based image segmentation 1 Multi-pass approach to adaptive thresholding based image segmentation Abstract - Thresholding is still one of the most common approaches to monochrome image segmentation. It often provides sufficient

More information

Adaptive Wavelet Image Denoising Based on the Entropy of Homogenus Regions

Adaptive Wavelet Image Denoising Based on the Entropy of Homogenus Regions International Journal of Electrical and Electronic Science 206; 3(4): 9-25 http://www.aascit.org/journal/ijees ISSN: 2375-2998 Adaptive Wavelet Image Denoising Based on the Entropy of Homogenus Regions

More information

Original grey level r Fig.1

Original grey level r Fig.1 Point Processing: In point processing, we work with single pixels i.e. T is 1 x 1 operator. It means that the new value f(x, y) depends on the operator T and the present f(x, y). Some of the common examples

More information

Random spatial sampling and majority voting based image thresholding

Random spatial sampling and majority voting based image thresholding 1 Random spatial sampling and majority voting based image thresholding Yi Hong Y. Hong is with the City University of Hong Kong. yihong@cityu.edu.hk November 1, 7 2 Abstract This paper presents a novel

More information

SVM-based Filter Using Evidence Theory and Neural Network for Image Denosing

SVM-based Filter Using Evidence Theory and Neural Network for Image Denosing Journal of Software Engineering and Applications 013 6 106-110 doi:10.436/sea.013.63b03 Published Online March 013 (http://www.scirp.org/ournal/sea) SVM-based Filter Using Evidence Theory and Neural Network

More information

Adaptive Local Thresholding for Fluorescence Cell Micrographs

Adaptive Local Thresholding for Fluorescence Cell Micrographs TR-IIS-09-008 Adaptive Local Thresholding for Fluorescence Cell Micrographs Jyh-Ying Peng and Chun-Nan Hsu November 11, 2009 Technical Report No. TR-IIS-09-008 http://www.iis.sinica.edu.tw/page/library/lib/techreport/tr2009/tr09.html

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

An Adaptive Threshold LBP Algorithm for Face Recognition An Adaptive Threshold LBP Algorithm for Face Recognition Xiaoping Jiang 1, Chuyu Guo 1,*, Hua Zhang 1, and Chenghua Li 1 1 College of Electronics and Information Engineering, Hubei Key Laboratory of Intelligent

More information

User-Friendly Sharing System using Polynomials with Different Primes in Two Images

User-Friendly Sharing System using Polynomials with Different Primes in Two Images User-Friendly Sharing System using Polynomials with Different Primes in Two Images Hung P. Vo Department of Engineering and Technology, Tra Vinh University, No. 16 National Road 53, Tra Vinh City, Tra

More information

ADVANCED IMAGE PROCESSING METHODS FOR ULTRASONIC NDE RESEARCH C. H. Chen, University of Massachusetts Dartmouth, N.

ADVANCED IMAGE PROCESSING METHODS FOR ULTRASONIC NDE RESEARCH C. H. Chen, University of Massachusetts Dartmouth, N. ADVANCED IMAGE PROCESSING METHODS FOR ULTRASONIC NDE RESEARCH C. H. Chen, University of Massachusetts Dartmouth, N. Dartmouth, MA USA Abstract: The significant progress in ultrasonic NDE systems has now

More information

Image Processing Lecture 10

Image Processing Lecture 10 Image Restoration Image restoration attempts to reconstruct or recover an image that has been degraded by a degradation phenomenon. Thus, restoration techniques are oriented toward modeling the degradation

More information

Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System

Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Temperature Distribution Measurement Based on ML-EM Method Using Enclosed Acoustic CT System Shinji Ohyama, Masato Mukouyama Graduate School

More information

Global-Local Contrast Enhancement

Global-Local Contrast Enhancement Global-Local Contrast S. Somorjeet Singh N. Gourakishwar Singh Th. Tangkeshwar Singh H. Mamata Devi ABSTRACT Using, low image can be improved in its quality ly. The enhanced output image, with such type

More information

CS443: Digital Imaging and Multimedia Binary Image Analysis. Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University

CS443: Digital Imaging and Multimedia Binary Image Analysis. Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University CS443: Digital Imaging and Multimedia Binary Image Analysis Spring 2008 Ahmed Elgammal Dept. of Computer Science Rutgers University Outlines A Simple Machine Vision System Image segmentation by thresholding

More information

Image Matching Using Run-Length Feature

Image Matching Using Run-Length Feature Image Matching Using Run-Length Feature Yung-Kuan Chan and Chin-Chen Chang Department of Computer Science and Information Engineering National Chung Cheng University, Chiayi, Taiwan, 621, R.O.C. E-mail:{chan,

More information

Bit-Plane Decomposition Steganography Using Wavelet Compressed Video

Bit-Plane Decomposition Steganography Using Wavelet Compressed Video Bit-Plane Decomposition Steganography Using Wavelet Compressed Video Tomonori Furuta, Hideki Noda, Michiharu Niimi, Eiji Kawaguchi Kyushu Institute of Technology, Dept. of Electrical, Electronic and Computer

More information

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian

Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian 4th International Conference on Machinery, Materials and Computing Technology (ICMMCT 2016) Face Recognition Technology Based On Image Processing Chen Xin, Yajuan Li, Zhimin Tian Hebei Engineering and

More information

Computer Vision I - Basics of Image Processing Part 1

Computer Vision I - Basics of Image Processing Part 1 Computer Vision I - Basics of Image Processing Part 1 Carsten Rother 28/10/2014 Computer Vision I: Basics of Image Processing Link to lectures Computer Vision I: Basics of Image Processing 28/10/2014 2

More information

Intensity Transformations and Spatial Filtering

Intensity Transformations and Spatial Filtering 77 Chapter 3 Intensity Transformations and Spatial Filtering Spatial domain refers to the image plane itself, and image processing methods in this category are based on direct manipulation of pixels in

More information

Statistical image models

Statistical image models Chapter 4 Statistical image models 4. Introduction 4.. Visual worlds Figure 4. shows images that belong to different visual worlds. The first world (fig. 4..a) is the world of white noise. It is the world

More information

Modified SPIHT Image Coder For Wireless Communication

Modified SPIHT Image Coder For Wireless Communication Modified SPIHT Image Coder For Wireless Communication M. B. I. REAZ, M. AKTER, F. MOHD-YASIN Faculty of Engineering Multimedia University 63100 Cyberjaya, Selangor Malaysia Abstract: - The Set Partitioning

More information

Optimization of Bit Rate in Medical Image Compression

Optimization of Bit Rate in Medical Image Compression Optimization of Bit Rate in Medical Image Compression Dr.J.Subash Chandra Bose 1, Mrs.Yamini.J 2, P.Pushparaj 3, P.Naveenkumar 4, Arunkumar.M 5, J.Vinothkumar 6 Professor and Head, Department of CSE, Professional

More information

One category of visual tracking. Computer Science SURJ. Michael Fischer

One category of visual tracking. Computer Science SURJ. Michael Fischer Computer Science Visual tracking is used in a wide range of applications such as robotics, industrial auto-control systems, traffic monitoring, and manufacturing. This paper describes a new algorithm for

More information

A Simple Automated Void Defect Detection for Poor Contrast X-ray Images of BGA

A Simple Automated Void Defect Detection for Poor Contrast X-ray Images of BGA Proceedings of the 3rd International Conference on Industrial Application Engineering 2015 A Simple Automated Void Defect Detection for Poor Contrast X-ray Images of BGA Somchai Nuanprasert a,*, Sueki

More information

A Novel Method for Image Enhancement using Median Based Filter

A Novel Method for Image Enhancement using Median Based Filter Proc. of Int. Conf. on Control, Communication and Power Engineering 2010 A Novel Method for Image Enhancement using Median Based Filter Abstract This paper proposes a novel approach for image enhancement

More information

Study on Image Position Algorithm of the PCB Detection

Study on Image Position Algorithm of the PCB Detection odern Applied cience; Vol. 6, No. 8; 01 IN 1913-1844 E-IN 1913-185 Published by Canadian Center of cience and Education tudy on Image Position Algorithm of the PCB Detection Zhou Lv 1, Deng heng 1, Yan

More information

A New Feature Local Binary Patterns (FLBP) Method

A New Feature Local Binary Patterns (FLBP) Method A New Feature Local Binary Patterns (FLBP) Method Jiayu Gu and Chengjun Liu The Department of Computer Science, New Jersey Institute of Technology, Newark, NJ 07102, USA Abstract - This paper presents

More information

Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm

Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm Noise Reduction in Image Sequences using an Effective Fuzzy Algorithm Mahmoud Saeid Khadijeh Saeid Mahmoud Khaleghi Abstract In this paper, we propose a novel spatiotemporal fuzzy based algorithm for noise

More information

An Acceleration Scheme to The Local Directional Pattern

An Acceleration Scheme to The Local Directional Pattern An Acceleration Scheme to The Local Directional Pattern Y.M. Ayami Durban University of Technology Department of Information Technology, Ritson Campus, Durban, South Africa ayamlearning@gmail.com A. Shabat

More information

Enhancement of Sharpness and Contrast Using Adaptive Parameters

Enhancement of Sharpness and Contrast Using Adaptive Parameters International Journal of Computational Engineering Research Vol, 03 Issue, 10 Enhancement of Sharpness and Contrast Using Adaptive Parameters 1, Allabaksh Shaik, 2, Nandyala Ramanjulu, 1, Department of

More information

Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features

Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features Content Based Image Retrieval Using Color Quantizes, EDBTC and LBP Features 1 Kum Sharanamma, 2 Krishnapriya Sharma 1,2 SIR MVIT Abstract- To describe the image features the Local binary pattern (LBP)

More information

Digital Image Analysis and Processing

Digital Image Analysis and Processing Digital Image Analysis and Processing CPE 0907544 Image Enhancement Part I Intensity Transformation Chapter 3 Sections: 3.1 3.3 Dr. Iyad Jafar Outline What is Image Enhancement? Background Intensity Transformation

More information

Visible and Long-Wave Infrared Image Fusion Schemes for Situational. Awareness

Visible and Long-Wave Infrared Image Fusion Schemes for Situational. Awareness Visible and Long-Wave Infrared Image Fusion Schemes for Situational Awareness Multi-Dimensional Digital Signal Processing Literature Survey Nathaniel Walker The University of Texas at Austin nathaniel.walker@baesystems.com

More information

Compression of RADARSAT Data with Block Adaptive Wavelets Abstract: 1. Introduction

Compression of RADARSAT Data with Block Adaptive Wavelets Abstract: 1. Introduction Compression of RADARSAT Data with Block Adaptive Wavelets Ian Cumming and Jing Wang Department of Electrical and Computer Engineering The University of British Columbia 2356 Main Mall, Vancouver, BC, Canada

More information

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image

[2006] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image [6] IEEE. Reprinted, with permission, from [Wenjing Jia, Huaifeng Zhang, Xiangjian He, and Qiang Wu, A Comparison on Histogram Based Image Matching Methods, Video and Signal Based Surveillance, 6. AVSS

More information

An Approach for Real Time Moving Object Extraction based on Edge Region Determination

An Approach for Real Time Moving Object Extraction based on Edge Region Determination An Approach for Real Time Moving Object Extraction based on Edge Region Determination Sabrina Hoque Tuli Department of Computer Science and Engineering, Chittagong University of Engineering and Technology,

More information