Perfectly Flat Histogram Equalization

Size: px
Start display at page:

Download "Perfectly Flat Histogram Equalization"

Transcription

1 Perfectly Flat Histogram Equalization Jacob Levman, Javad Alirezaie, Gul Khan Department of Electrical and Computer Engineering, Ryerson University jlevman jalireza Abstract In this paper, we present a novel technique for histogram equalization. Histogram equalization (or flattening) is the process of redistributing an input image s grey level values to produce an output image easily analyzed by the human eye. Histogram equalization is primarily utilized in image enhancement. Most of the existing approaches to histogram flattening employ a simple transformation function that defines the resultant grey level value for any given input. We propose a multi-stage histogram equalization algorithm that guarantees a perfectly flat output histogram. Our algorithm consists of three stages, each of which creates an intermediate image. Results have shown that our approach to histogram equalization can result in excellent image enhancement. The benefits of such an algorithm are particularly important in medical applications such as x-ray images. Keywords: Image processing; histogram equalization. 1. INTRODUCTION Medical image analysis and advanced image interpretation techniques are heavily dependent on effective histogram equalization capabilities. Low contrast images are very common in medical applications and greatly benefit from histogram equalization. Histogram flattening is the process by which an algorithm redistributes grey level values so as to better define contrast differences to the user. Histogram flattening aids doctors in interpreting medical images, thus facilitating the diagnosis of ailments. Many approaches to histogram equalization have been developed. One common approach is to use the image s histogram cumulative distribution function (CDF) as a grey level transformation function [1]. This is effectively the discrete integral of the function that represents the histogram. Kim et al. present an approach that is based on the piecewise linear approximation of the CDF [5]. Another technique is a subset of histogram matching. Histogram matching is the process by which one forces an image s histogram to resemble any predefined function. This can be performed by using a transfer function that is comprised of the inverse CDF of the desired histogram and the CDF of the input histogram [3]. If a probability density function is chosen which corresponds to a flattened image, then the histogram matching problem is also an equalization task. Many of the recent developments in histogram flattening involve local histogram equalization. In local histogram flattening, an image is divided into sub-blocks and each sub-block is subjected to a separate histogram equalization process [4, 8, 9]. This method does tend to provide good solutions, but the algorithms can be complicated. Additionally, these algorithms do not ensure that the overall image will be equalized. Stark has proposed a histogram equalization technique that takes user inputs in order to produce various outputs that range from full histogram equalization to no changes at all [7]. Munteanu and Rosa approached this image enhancement problem with genetic algorithms [6]. Our approach involves three distinct phases, each of which produces an intermediate image. After each stage is performed, the intermediate image s histogram is at least as flat as the previous image s histogram. After the final stage the histogram is always perfectly flat. The first phase is concerned with eliminating any spikes in the histogram that are extremely large. The second phase is a form of histogram matching. The final phase is concerned with smoothing the histogram. It is this last stage that guarantees that the image s histogram will appear perfectly flat. Int. Conf. Signal Processing, Pattern Recognition and Applications, June 30-July 2, 2003 pp , Rhodes Greece

2 2. HISTOGRAM FLATTENING The first phase of the algorithm redistributes any major peaks that are found in the input image s histogram. Let target be the desired number of pixels at any given grey level in order to make a perfectly flat histogram. A grey level is eligible for first phase redistribution if there are greater than threshold*target pixels at that given grey level. Threshold is set to 16 by default, but can be set to other values by the user. It should be noted that most standard images (photographs of people or landscapes) will not have any grey levels with a histogram reading this high. However, it commonly applies to medical images such as x-rays. It would typically represent the background black area of the image where no real information is stored. These pixel values are redistributed across all grey levels according to the following equation: pixel ( m, n) = n * 255 / midp (maxp n) * 255 / midp midp = half of the width of the image maxp = the width of the image if n midp otherwise This stage has the effect of creating a gradient from white in the center to black on the left and right sides of the image. For an illustration of this effect on the background please see figure 3. The second phase of the algorithm is a form of histogram matching. The target function is a perfectly flat histogram that only uses 64 out of the total 256 possible grey levels. Thus the target histogram s value at any grey level is defined as: 4 * tgt hist ( p) = 0 if ( p / 4) is in {0,1,2,...} otherwise tgt = image height * image width / 256 This algorithm must construct the transfer function to define the mappings of input to output grey levels. In order to do this, it first constructs the histogram cumulative distribution functions (CDFs) for both the input image and the target histogram. This algorithm selects the transfer function that will minimize the following equation: tgtcdf ( Trans ( r)) incdf ( r) tgtcdf = the CDF of the target histogram incdf = the CDF of the input image Trans( ) = the resultant transfer function r = the set of all grey levels This equation requires the transfer function to be monotonic. The algorithm also requires that the tgtcdf value not be greater than the incdf value by more than half of the distance between the histogram values at r. This section of the algorithm is based on previously developed methods [2]. The final stage of equalization is concerned with smoothing the histogram. Essentially, this algorithm traverses the histogram. Let curcount be the current count of pixels at a given location. If curcount is larger than target, then the algorithm selects curcount-target pixels randomly and moves them to the next grey level location. The selection process prioritizes those pixels originally located at this grey level ahead of those that have been previously moved to the given location. If curcount is smaller than target, then the algorithm selects target-curcount pixels from the closest grey level value that has a pixel count and grey level greater than the current value. To better illustrate this algorithm the pseudocode is provided in figure 1. for(m = number = histogram[m] if(number < target) moverandpixels(m + 1, m, target - number) else 0, m < 256, m + + ) moverandpixels(m, m + 1, number - target) end for Figure 1: Phase 3 Algorithm Here the moverandpixels function moves the number of pixels in the third parameter from the grey level specified by the first parameter to the grey level specified by the second parameter. If there are not enough pixels in the first parameter, the function will move on to the next grey level to complete the operation. Please note that this will never occur in the second call to the function

3 3. RESULTS AND DISCUSSION In histogram equalization it is beneficial to produce output images that are easily analyzed by the human eye. In figure 2 we present the low contrast input medical image of a spine; its histogram is shown in figure 5. Our algorithm produces a visually appealing version of the spine, and is presented in figure 3. The output image s flat histogram is shown in figure 6. We compare our approach with the well-known method of using an image s histogram CDF as the image transfer function. As is common with many histogram equalization techniques, this approach gives the image a washed out look. The output of such an algorithm is given in figure 4 and its resultant histogram is provided in figure 7. All of the algorithms were implemented and tested on a P-II 450 computer in C++. Figure 3: Output Image Our Algorithm Figure 2: Input Image Figure 4: Output Image Comparison

4 Figure 5: Input Histogram Figure 8: Input Image Figure 6: Output Histogram Figure 7: Output Histogram Comparison It is evident from the results that our algorithm performs well with respect to creating a clear contrast enhanced image. This algorithm has been applied to a variety of images and has performed very well. The spine was selected because it shows the effectiveness that such an algorithm has on medical imaging. A medical image of a human skull is provided in figure 8. This example is presented to further illustrate the benefits this algorithm provides to medical imaging. Figure 9 shows the output generated by applying our approach to histogram equalization. Once again, in figure 10, we compare our approach to the common equalization technique outlined above. Figure 9: Output Image Our Algorithm

5 into a 64 grey level flattened image. The smoothing stage is concerned with forcing a perfectly flat shape on the histogram. This approach can greatly improve image contrast, particularly in medical imaging. The example output has shown this algorithm s efficacy. Acknowledgements This research is supported by a grant from NSERC Canada. References Figure 10: Output Image - Comparison Although it is evident from the results displayed that this approach can provide significant benefits for the interpretation of medical images, it should be noted that the algorithm has a tendency to introduce small amounts of distortion in low information areas of the images. This is particularly prevalent in the base of the neck in figure 9. One of the main deficiencies of this algorithm would seem to be its lack of reversibility. Most histogram equalization techniques simply utilize a transfer function for grey level conversion. It is generally thought that since a transfer function is being used, its inverse can be calculated which could then be applied to the output image to restore the original. This concept only applies properly to continuous functions. In a discrete system, a transfer function will typically map two different pixel values to the same location. No discrete inverse transfer function can reverse this effect as there is no information to discern which grey levels were the origins of each output pixel. Admittedly, this lack of reversibility is a minor issue when compared to that of our algorithm; however, most every histogram equalization technique is at least in part irreversible. 4. CONCLUSIONS We propose a novel approach to histogram equalization where the output images are guaranteed to have perfectly flat histograms. The algorithm consists of three main stages: histogram spike redistribution, histogram matching, and histogram smoothing. The spike redistribution stage is concerned with eliminating any abnormally large peaks from the histogram. The matching phase attempts to transform the histogram [1] K. R. Castleman, Digital Image Processing, pp , Prentice Hall, Upper Saddle River, NJ, [2] Documentation > Image Processing Toolbox, /toolbox/images/histeq.shtml, March 1, [3] R. C. Gonzalez, R. E. Woods, Digital Image Processing, pp , Prentice Hall, Upper Saddle River, NJ, [4] Joung-Youn Kim, Lee-Sup Kim, Seung-Ho Hwang, An advanced contrast enhancement using partially overlapped sub-block histogram equalization, IEEE Transactions on Circuits and Systems for Video Technology, pp , April [5] Sang-Yeon Kim, Dongil Han, Seung-Jong Choi, Jong-Seok Park, Image contrast enhancement based on the piecewise-linear approximation of CDF, IEEE Transactions on Consumer Electronics, pp , Aug [6] C. Munteanu, A. Rosa, Towards automatic image enhancement using genetic algorithms, Proceedings of the 2000 Congress on Evolutionary Computation, pp vol. 2, July [7] J. A. Stark, Adaptive image contrast enhancement using generalizations of histogram equalization, IEEE Transactions on Image Processing, pp , May [8] Yu Wang, Qian Chen, Baeomin Zhang, Image enhancement based on equal area dualistic subimage histogram equalization method, IEEE Transactions on Consumer Electronics, pp , Feb [9] Hung-Shung Wong, Jung-Hua Wang, Contrast enhancement based on divided histogram manipulation, IEEE International Conference on Systems, Man, and Cybernetics, pp vol.2, Oct

Character Segmentation and Recognition Algorithm of Text Region in Steel Images

Character Segmentation and Recognition Algorithm of Text Region in Steel Images Character Segmentation and Recognition Algorithm of Text Region in Steel Images Keunhwi Koo, Jong Pil Yun, SungHoo Choi, JongHyun Choi, Doo Chul Choi, Sang Woo Kim Division of Electrical and Computer Engineering

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

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

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

Introduction to Digital Image Processing

Introduction to Digital Image Processing Introduction to Digital Image Processing Ranga Rodrigo June 9, 29 Outline Contents Introduction 2 Point Operations 2 Histogram Processing 5 Introduction We can process images either in spatial domain or

More information

Reversible Data Hiding VIA Optimal Code for Image

Reversible Data Hiding VIA Optimal Code for Image Vol. 3, Issue. 3, May - June 2013 pp-1661-1665 ISSN: 2249-6645 Reversible Data Hiding VIA Optimal Code for Image Senthil Rani D. #, Gnana Kumari R. * # PG-Scholar, M.E-CSE, Coimbatore Institute of Engineering

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

Auto-focusing Technique in a Projector-Camera System

Auto-focusing Technique in a Projector-Camera System 2008 10th Intl. Conf. on Control, Automation, Robotics and Vision Hanoi, Vietnam, 17 20 December 2008 Auto-focusing Technique in a Projector-Camera System Lam Bui Quang, Daesik Kim and Sukhan Lee School

More information

Image Segmentation Based on Watershed and Edge Detection Techniques

Image Segmentation Based on Watershed and Edge Detection Techniques 0 The International Arab Journal of Information Technology, Vol., No., April 00 Image Segmentation Based on Watershed and Edge Detection Techniques Nassir Salman Computer Science Department, Zarqa Private

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

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION

MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION MULTI ORIENTATION PERFORMANCE OF FEATURE EXTRACTION FOR HUMAN HEAD RECOGNITION Panca Mudjirahardjo, Rahmadwati, Nanang Sulistiyanto and R. Arief Setyawan Department of Electrical Engineering, Faculty of

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

An Information Hiding Scheme Based on Pixel- Value-Ordering and Prediction-Error Expansion with Reversibility

An Information Hiding Scheme Based on Pixel- Value-Ordering and Prediction-Error Expansion with Reversibility An Information Hiding Scheme Based on Pixel- Value-Ordering Prediction-Error Expansion with Reversibility Ching-Chiuan Lin Department of Information Management Overseas Chinese University Taichung, Taiwan

More information

Preserving brightness in histogram equalization based contrast enhancement techniques

Preserving brightness in histogram equalization based contrast enhancement techniques Digital Signal Processing 14 (2004) 413 428 www.elsevier.com/locate/dsp Preserving brightness in histogram equalization based contrast enhancement techniques Soong-Der Chen a,, Abd. Rahman Ramli b a College

More information

Image Error Concealment Based on Watermarking

Image Error Concealment Based on Watermarking Image Error Concealment Based on Watermarking Shinfeng D. Lin, Shih-Chieh Shie and Jie-Wei Chen Department of Computer Science and Information Engineering,National Dong Hwa Universuty, Hualien, Taiwan,

More information

Computation Method for Evaluation of Surface Fine Structure by Highlight Lines

Computation Method for Evaluation of Surface Fine Structure by Highlight Lines Computation Method for Evaluation of Surface Fine Structure by Highlight Lines György Gyurecz 1, Dr. Gábor Renner 2 1 Institute of Machine Design and Safety Engineering, Óbuda University 2 Computer and

More information

A derivative based algorithm for image thresholding

A derivative based algorithm for image thresholding A derivative based algorithm for image thresholding André Ricardo Backes arbackes@yahoo.com.br Bruno Augusto Nassif Travençolo travencolo@gmail.com Mauricio Cunha Escarpinati escarpinati@gmail.com Faculdade

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

Fast Wavelet-based Macro-block Selection Algorithm for H.264 Video Codec

Fast Wavelet-based Macro-block Selection Algorithm for H.264 Video Codec Proceedings of the International MultiConference of Engineers and Computer Scientists 8 Vol I IMECS 8, 19-1 March, 8, Hong Kong Fast Wavelet-based Macro-block Selection Algorithm for H.64 Video Codec Shi-Huang

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Intensity Transformations (Histogram Processing) Christophoros Nikou cnikou@cs.uoi.gr University of Ioannina - Department of Computer Science and Engineering 2 Contents Over the

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

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

Semi-Automatic Global Contrast Enhancement

Semi-Automatic Global Contrast Enhancement Semi-Automatic Global Contrast Enhancement S. Somorjeet Singh Department of Computer Science Manipur University, Canchipur ABSTRACT Since local contrast enhancement is not sufficient for a detailed visibility

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

Segmentation of Mushroom and Cap Width Measurement Using Modified K-Means Clustering Algorithm

Segmentation of Mushroom and Cap Width Measurement Using Modified K-Means Clustering Algorithm Segmentation of Mushroom and Cap Width Measurement Using Modified K-Means Clustering Algorithm Eser SERT, Ibrahim Taner OKUMUS Computer Engineering Department, Engineering and Architecture Faculty, Kahramanmaras

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

CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN

CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN CHAPTER 3 IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN CHAPTER 3: IMAGE ENHANCEMENT IN THE SPATIAL DOMAIN Principal objective: to process an image so that the result is more suitable than the original image

More information

OCR For Handwritten Marathi Script

OCR For Handwritten Marathi Script International Journal of Scientific & Engineering Research Volume 3, Issue 8, August-2012 1 OCR For Handwritten Marathi Script Mrs.Vinaya. S. Tapkir 1, Mrs.Sushma.D.Shelke 2 1 Maharashtra Academy Of Engineering,

More information

Lecture 4 Image Enhancement in Spatial Domain

Lecture 4 Image Enhancement in Spatial Domain Digital Image Processing Lecture 4 Image Enhancement in Spatial Domain Fall 2010 2 domains Spatial Domain : (image plane) Techniques are based on direct manipulation of pixels in an image Frequency Domain

More information

Automatic Segmentation of Semantic Classes in Raster Map Images

Automatic Segmentation of Semantic Classes in Raster Map Images Automatic Segmentation of Semantic Classes in Raster Map Images Thomas C. Henderson, Trevor Linton, Sergey Potupchik and Andrei Ostanin School of Computing, University of Utah, Salt Lake City, UT 84112

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

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

A New Fast Motion Estimation Algorithm. - Literature Survey. Instructor: Brian L. Evans. Authors: Yue Chen, Yu Wang, Ying Lu.

A New Fast Motion Estimation Algorithm. - Literature Survey. Instructor: Brian L. Evans. Authors: Yue Chen, Yu Wang, Ying Lu. A New Fast Motion Estimation Algorithm - Literature Survey Instructor: Brian L. Evans Authors: Yue Chen, Yu Wang, Ying Lu Date: 10/19/1998 A New Fast Motion Estimation Algorithm 1. Abstract Video compression

More information

A NEW FEATURE BASED IMAGE REGISTRATION ALGORITHM INTRODUCTION

A NEW FEATURE BASED IMAGE REGISTRATION ALGORITHM INTRODUCTION A NEW FEATURE BASED IMAGE REGISTRATION ALGORITHM Karthik Krish Stuart Heinrich Wesley E. Snyder Halil Cakir Siamak Khorram North Carolina State University Raleigh, 27695 kkrish@ncsu.edu sbheinri@ncsu.edu

More information

Review on Image Segmentation Techniques and its Types

Review on Image Segmentation Techniques and its Types 1 Review on Image Segmentation Techniques and its Types Ritu Sharma 1, Rajesh Sharma 2 Research Scholar 1 Assistant Professor 2 CT Group of Institutions, Jalandhar. 1 rits_243@yahoo.in, 2 rajeshsharma1234@gmail.com

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

Implementation and Advanced Results on the Non-Interrupted Skeletonization Algorithm

Implementation and Advanced Results on the Non-Interrupted Skeletonization Algorithm Implementation and Advanced Results on the n-interrupted Skeletonization Algorithm Khalid Saeed, Mariusz Rybnik, Marek Tabedzki Computer Engineering Department Faculty of Computer Science Bialystok University

More information

Image Enhancement: To improve the quality of images

Image Enhancement: To improve the quality of images Image Enhancement: To improve the quality of images Examples: Noise reduction (to improve SNR or subjective quality) Change contrast, brightness, color etc. Image smoothing Image sharpening Modify image

More information

AUTOMATIC LOGO EXTRACTION FROM DOCUMENT IMAGES

AUTOMATIC LOGO EXTRACTION FROM DOCUMENT IMAGES AUTOMATIC LOGO EXTRACTION FROM DOCUMENT IMAGES Umesh D. Dixit 1 and M. S. Shirdhonkar 2 1 Department of Electronics & Communication Engineering, B.L.D.E.A s CET, Bijapur. 2 Department of Computer Science

More information

AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE

AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE AUTOMATED THRESHOLD DETECTION FOR OBJECT SEGMENTATION IN COLOUR IMAGE Md. Akhtaruzzaman, Amir A. Shafie and Md. Raisuddin Khan Department of Mechatronics Engineering, Kulliyyah of Engineering, International

More information

Chapter 3: Intensity Transformations and Spatial Filtering

Chapter 3: Intensity Transformations and Spatial Filtering Chapter 3: Intensity Transformations and Spatial Filtering 3.1 Background 3.2 Some basic intensity transformation functions 3.3 Histogram processing 3.4 Fundamentals of spatial filtering 3.5 Smoothing

More information

Digital Image Processing, 2nd ed. Digital Image Processing, 2nd ed. The principal objective of enhancement

Digital Image Processing, 2nd ed. Digital Image Processing, 2nd ed. The principal objective of enhancement Chapter 3 Image Enhancement in the Spatial Domain The principal objective of enhancement to process an image so that the result is more suitable than the original image for a specific application. Enhancement

More information

III. VERVIEW OF THE METHODS

III. VERVIEW OF THE METHODS An Analytical Study of SIFT and SURF in Image Registration Vivek Kumar Gupta, Kanchan Cecil Department of Electronics & Telecommunication, Jabalpur engineering college, Jabalpur, India comparing the distance

More information

Image Classification Using Wavelet Coefficients in Low-pass Bands

Image Classification Using Wavelet Coefficients in Low-pass Bands Proceedings of International Joint Conference on Neural Networks, Orlando, Florida, USA, August -7, 007 Image Classification Using Wavelet Coefficients in Low-pass Bands Weibao Zou, Member, IEEE, and Yan

More information

Layout Segmentation of Scanned Newspaper Documents

Layout Segmentation of Scanned Newspaper Documents , pp-05-10 Layout Segmentation of Scanned Newspaper Documents A.Bandyopadhyay, A. Ganguly and U.Pal CVPR Unit, Indian Statistical Institute 203 B T Road, Kolkata, India. Abstract: Layout segmentation algorithms

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

Statistical Image Compression using Fast Fourier Coefficients

Statistical Image Compression using Fast Fourier Coefficients Statistical Image Compression using Fast Fourier Coefficients M. Kanaka Reddy Research Scholar Dept.of Statistics Osmania University Hyderabad-500007 V. V. Haragopal Professor Dept.of Statistics Osmania

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

Optical Character Recognition (OCR) for Printed Devnagari Script Using Artificial Neural Network

Optical Character Recognition (OCR) for Printed Devnagari Script Using Artificial Neural Network International Journal of Computer Science & Communication Vol. 1, No. 1, January-June 2010, pp. 91-95 Optical Character Recognition (OCR) for Printed Devnagari Script Using Artificial Neural Network Raghuraj

More information

IMAGE DIGITIZATION BY WAVELET COEFFICIENT WITH HISTOGRAM SHAPING AND SPECIFICATION

IMAGE DIGITIZATION BY WAVELET COEFFICIENT WITH HISTOGRAM SHAPING AND SPECIFICATION IMAGE DIGITIZATION BY WAVELET COEFFICIENT WITH HISTOGRAM SHAPING AND SPECIFICATION Shivam Sharma 1, Mr. Lalit Singh 2 1,2 M.Tech Scholor, 2 Assistant Professor GRDIMT, Dehradun (India) ABSTRACT Many applications

More information

Global Thresholding Techniques to Classify Dead Cells in Diffusion Weighted Magnetic Resonant Images

Global Thresholding Techniques to Classify Dead Cells in Diffusion Weighted Magnetic Resonant Images Global Thresholding Techniques to Classify Dead Cells in Diffusion Weighted Magnetic Resonant Images Ravi S 1, A. M. Khan 2 1 Research Student, Department of Electronics, Mangalore University, Karnataka

More information

PRINCIPAL COMPONENT ANALYSIS IMAGE DENOISING USING LOCAL PIXEL GROUPING

PRINCIPAL COMPONENT ANALYSIS IMAGE DENOISING USING LOCAL PIXEL GROUPING PRINCIPAL COMPONENT ANALYSIS IMAGE DENOISING USING LOCAL PIXEL GROUPING Divesh Kumar 1 and Dheeraj Kalra 2 1 Department of Electronics & Communication Engineering, IET, GLA University, Mathura 2 Department

More information

Based on Regression Diagnostics

Based on Regression Diagnostics Automatic Detection of Region-Mura Defects in TFT-LCD Based on Regression Diagnostics Yu-Chiang Chuang 1 and Shu-Kai S. Fan 2 Department of Industrial Engineering and Management, Yuan Ze University, Tao

More information

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm

EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm EE368 Project Report CD Cover Recognition Using Modified SIFT Algorithm Group 1: Mina A. Makar Stanford University mamakar@stanford.edu Abstract In this report, we investigate the application of the Scale-Invariant

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

Use of Shape Deformation to Seamlessly Stitch Historical Document Images

Use of Shape Deformation to Seamlessly Stitch Historical Document Images Use of Shape Deformation to Seamlessly Stitch Historical Document Images Wei Liu Wei Fan Li Chen Jun Sun Satoshi Naoi In China, efforts are being made to preserve historical documents in the form of digital

More information

An Efficient way of Number Plate Alphabets and Numbers Extraction for Security Purpose

An Efficient way of Number Plate Alphabets and Numbers Extraction for Security Purpose IOSR Journal of Electrical and Electronics Engineering (IOSR-JEEE) e-issn: 2278-1676,p-ISSN: 2320-3331, Volume 9, Issue 2 Ver. V (Mar Apr. 2014), PP 63-67 An Efficient way of Number Plate Alphabets and

More information

COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING

COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING International Journal of Computer Engineering and Applications, Volume X, Issue VII, July 16 www.ijcea.com ISSN 2321-3469 COMPARATIVE STUDY OF HISTOGRAM SHIFTING ALGORITHMS FOR DIGITAL WATERMARKING Geeta

More information

Stereo Vision Image Processing Strategy for Moving Object Detecting

Stereo Vision Image Processing Strategy for Moving Object Detecting Stereo Vision Image Processing Strategy for Moving Object Detecting SHIUH-JER HUANG, FU-REN YING Department of Mechanical Engineering National Taiwan University of Science and Technology No. 43, Keelung

More information

Kinematic Analysis of Lumbar Spine Undergoing Extension and Dynamic Neural Foramina Cross Section Measurement

Kinematic Analysis of Lumbar Spine Undergoing Extension and Dynamic Neural Foramina Cross Section Measurement Copyright c 2008 ICCES ICCES, vol.7, no.2, pp.57-62 Kinematic Analysis of Lumbar Spine Undergoing Extension and Dynamic Neural Foramina Cross Section Measurement Yongjie Zhang 1,BoyleC.Cheng 2,ChanghoOh

More information

A new approach to reference point location in fingerprint recognition

A new approach to reference point location in fingerprint recognition A new approach to reference point location in fingerprint recognition Piotr Porwik a) and Lukasz Wieclaw b) Institute of Informatics, Silesian University 41 200 Sosnowiec ul. Bedzinska 39, Poland a) porwik@us.edu.pl

More information

Extraction and recognition of the thoracic organs based on 3D CT images and its application

Extraction and recognition of the thoracic organs based on 3D CT images and its application 1 Extraction and recognition of the thoracic organs based on 3D CT images and its application Xiangrong Zhou, PhD a, Takeshi Hara, PhD b, Hiroshi Fujita, PhD b, Yoshihiro Ida, RT c, Kazuhiro Katada, MD

More information

2D Grey-Level Convex Hull Computation: A Discrete 3D Approach

2D Grey-Level Convex Hull Computation: A Discrete 3D Approach 2D Grey-Level Convex Hull Computation: A Discrete 3D Approach Ingela Nyström 1, Gunilla Borgefors 2, and Gabriella Sanniti di Baja 3 1 Centre for Image Analysis, Uppsala University Uppsala, Sweden ingela@cb.uu.se

More information

IMAGE ENHANCEMENT USING FUZZY TECHNIQUE: SURVEY AND OVERVIEW

IMAGE ENHANCEMENT USING FUZZY TECHNIQUE: SURVEY AND OVERVIEW IMAGE ENHANCEMENT USING FUZZY TECHNIQUE: SURVEY AND OVERVIEW Pushpa Devi Patel 1, Prof. Vijay Kumar Trivedi 2, Dr. Sadhna Mishra 3 1 M.Tech Scholar, LNCT Bhopal, (India) 2 Asst. Prof. LNCT Bhopal, (India)

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

Iterative Removing Salt and Pepper Noise based on Neighbourhood Information

Iterative Removing Salt and Pepper Noise based on Neighbourhood Information Iterative Removing Salt and Pepper Noise based on Neighbourhood Information Liu Chun College of Computer Science and Information Technology Daqing Normal University Daqing, China Sun Bishen Twenty-seventh

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

Hybrid Algorithm for Edge Detection using Fuzzy Inference System

Hybrid Algorithm for Edge Detection using Fuzzy Inference System Hybrid Algorithm for Edge Detection using Fuzzy Inference System Mohammed Y. Kamil College of Sciences AL Mustansiriyah University Baghdad, Iraq ABSTRACT This paper presents a novel edge detection algorithm

More information

Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using 2D Fourier Image Reconstruction

Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using 2D Fourier Image Reconstruction Defect Inspection of Liquid-Crystal-Display (LCD) Panels in Repetitive Pattern Images Using D Fourier Image Reconstruction Du-Ming Tsai, and Yan-Hsin Tseng Department of Industrial Engineering and Management

More information

Design of Miniaturized Optical Image Stabilization and Autofocusing Camera Module for Cellphones

Design of Miniaturized Optical Image Stabilization and Autofocusing Camera Module for Cellphones Sensors and Materials, Vol. 29, No. 7 (2017) 989 995 MYU Tokyo 989 S & M 1390 Design of Miniaturized Optical Image Stabilization and Autofocusing Camera Module for Cellphones Yu-Hao Chang, Chieh-Jung Lu,

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK A REVIEW ON ILLUMINATION COMPENSATION AND ILLUMINATION INVARIANT TRACKING METHODS

More information

EE795: Computer Vision and Intelligent Systems

EE795: Computer Vision and Intelligent Systems EE795: Computer Vision and Intelligent Systems Spring 2012 TTh 17:30-18:45 WRI C225 Lecture 04 130131 http://www.ee.unlv.edu/~b1morris/ecg795/ 2 Outline Review Histogram Equalization Image Filtering Linear

More information

A SXGA 3D Display Processor with Reduced Rendering Data and Enhanced Precision

A SXGA 3D Display Processor with Reduced Rendering Data and Enhanced Precision A SXGA 3D Display Processor with Reduced Rendering Data and Enhanced Precision Seok-Hoon Kim KAIST, Daejeon, Republic of Korea I. INTRODUCTION Recently, there has been tremendous progress in 3D graphics

More information

Data Hiding in Binary Text Documents 1. Q. Mei, E. K. Wong, and N. Memon

Data Hiding in Binary Text Documents 1. Q. Mei, E. K. Wong, and N. Memon Data Hiding in Binary Text Documents 1 Q. Mei, E. K. Wong, and N. Memon Department of Computer and Information Science Polytechnic University 5 Metrotech Center, Brooklyn, NY 11201 ABSTRACT With the proliferation

More information

System Verification of Hardware Optimization Based on Edge Detection

System Verification of Hardware Optimization Based on Edge Detection Circuits and Systems, 2013, 4, 293-298 http://dx.doi.org/10.4236/cs.2013.43040 Published Online July 2013 (http://www.scirp.org/journal/cs) System Verification of Hardware Optimization Based on Edge Detection

More information

Modified Directional Weighted Median Filter

Modified Directional Weighted Median Filter Modified Directional Weighted Median Filter Ayyaz Hussain 1, Muhammad Asim Khan 2, Zia Ul-Qayyum 2 1 Faculty of Basic and Applied Sciences, Department of Computer Science, Islamic International University

More information

Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator

Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator Segmentation and Modeling of the Spinal Cord for Reality-based Surgical Simulator Li X.C.,, Chui C. K.,, and Ong S. H.,* Dept. of Electrical and Computer Engineering Dept. of Mechanical Engineering, National

More information

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries

Improving Latent Fingerprint Matching Performance by Orientation Field Estimation using Localized Dictionaries Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 11, November 2014,

More information

Sampling and Reconstruction

Sampling and Reconstruction Sampling and Reconstruction Sampling and Reconstruction Sampling and Spatial Resolution Spatial Aliasing Problem: Spatial aliasing is insufficient sampling of data along the space axis, which occurs because

More information

Image Compression Algorithm and JPEG Standard

Image Compression Algorithm and JPEG Standard International Journal of Scientific and Research Publications, Volume 7, Issue 12, December 2017 150 Image Compression Algorithm and JPEG Standard Suman Kunwar sumn2u@gmail.com Summary. The interest in

More information

Detecting Digital Image Forgeries By Multi-illuminant Estimators

Detecting Digital Image Forgeries By Multi-illuminant Estimators Research Paper Volume 2 Issue 8 April 2015 International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 Detecting Digital Image Forgeries By Multi-illuminant Estimators Paper ID

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

Digital Image Processing

Digital Image Processing Digital Image Processing Intensity Transformations (Point Processing) Christophoros Nikou cnikou@cs.uoi.gr University of Ioannina - Department of Computer Science and Engineering 2 Intensity Transformations

More information

Extensions of One-Dimensional Gray-level Nonlinear Image Processing Filters to Three-Dimensional Color Space

Extensions of One-Dimensional Gray-level Nonlinear Image Processing Filters to Three-Dimensional Color Space Extensions of One-Dimensional Gray-level Nonlinear Image Processing Filters to Three-Dimensional Color Space Orlando HERNANDEZ and Richard KNOWLES Department Electrical and Computer Engineering, The College

More information

Reversible Image Data Hiding with Local Adaptive Contrast Enhancement

Reversible Image Data Hiding with Local Adaptive Contrast Enhancement Reversible Image Data Hiding with Local Adaptive Contrast Enhancement Ruiqi Jiang, Weiming Zhang, Jiajia Xu, Nenghai Yu and Xiaocheng Hu Abstract Recently, a novel reversible data hiding scheme is proposed

More information

Image Compression: An Artificial Neural Network Approach

Image Compression: An Artificial Neural Network Approach Image Compression: An Artificial Neural Network Approach Anjana B 1, Mrs Shreeja R 2 1 Department of Computer Science and Engineering, Calicut University, Kuttippuram 2 Department of Computer Science and

More information

Reversible Blind Watermarking for Medical Images Based on Wavelet Histogram Shifting

Reversible Blind Watermarking for Medical Images Based on Wavelet Histogram Shifting Reversible Blind Watermarking for Medical Images Based on Wavelet Histogram Shifting Hêmin Golpîra 1, Habibollah Danyali 1, 2 1- Department of Electrical Engineering, University of Kurdistan, Sanandaj,

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Part 2: Image Enhancement in the Spatial Domain AASS Learning Systems Lab, Dep. Teknik Room T1209 (Fr, 11-12 o'clock) achim.lilienthal@oru.se Course Book Chapter 3 2011-04-06 Contents

More information

Automatically Extracting Manmade Objects from Pan-Sharpened High-Resolution Satellite Imagery Using a Fuzzy Segmentation Method

Automatically Extracting Manmade Objects from Pan-Sharpened High-Resolution Satellite Imagery Using a Fuzzy Segmentation Method Automatically Extracting Manmade Obects from Pan-Sharpened High-Resolution Satellite Imagery Using a Fuzzy Segmentation Method Yu Li, Jonathan Li and Michael A. Chapman Geomatics Engineering Program, Department

More information

A 3-D Virtual SPIHT for Scalable Very Low Bit-Rate Embedded Video Compression

A 3-D Virtual SPIHT for Scalable Very Low Bit-Rate Embedded Video Compression A 3-D Virtual SPIHT for Scalable Very Low Bit-Rate Embedded Video Compression Habibollah Danyali and Alfred Mertins University of Wollongong School of Electrical, Computer and Telecommunications Engineering

More information

COPYRIGHT PROTECTION OF PALETTE IMAGES BY A ROBUST LOSSLESS VISIBLE WATERMARKING TECHNIQUE *

COPYRIGHT PROTECTION OF PALETTE IMAGES BY A ROBUST LOSSLESS VISIBLE WATERMARKING TECHNIQUE * COPYRIGHT PROTECTION OF PALETTE IMAGES BY A ROBUST LOSSLESS VISIBLE WATERMARKING TECHNIQUE * Pei-Pei Chen ( 陳佩貝 ) 1 and Wen-Hsiang Tsai ( 蔡文祥 ) 1, 2 1 Dept. of Computer Science, National Chiao Tung University,

More information

An Edge Based Adaptive Interpolation Algorithm for Image Scaling

An Edge Based Adaptive Interpolation Algorithm for Image Scaling An Edge Based Adaptive Interpolation Algorithm for Image Scaling Wanli Chen, Hongjian Shi Department of Electrical and Electronic Engineering Southern University of Science and Technology, Shenzhen, Guangdong,

More information

A Novel Field-source Reverse Transform for Image Structure Representation and Analysis

A Novel Field-source Reverse Transform for Image Structure Representation and Analysis A Novel Field-source Reverse Transform for Image Structure Representation and Analysis X. D. ZHUANG 1,2 and N. E. MASTORAKIS 1,3 1. WSEAS Headquarters, Agiou Ioannou Theologou 17-23, 15773, Zografou, Athens,

More information

A BTC-COMPRESSED DOMAIN INFORMATION HIDING METHOD BASED ON HISTOGRAM MODIFICATION AND VISUAL CRYPTOGRAPHY. Hang-Yu Fan and Zhe-Ming Lu

A BTC-COMPRESSED DOMAIN INFORMATION HIDING METHOD BASED ON HISTOGRAM MODIFICATION AND VISUAL CRYPTOGRAPHY. Hang-Yu Fan and Zhe-Ming Lu International Journal of Innovative Computing, Information and Control ICIC International c 2016 ISSN 1349-4198 Volume 12, Number 2, April 2016 pp. 395 405 A BTC-COMPRESSED DOMAIN INFORMATION HIDING METHOD

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

An Application of Canny Edge Detection Algorithm to Rail Thermal Image Fault Detection

An Application of Canny Edge Detection Algorithm to Rail Thermal Image Fault Detection Journal of Computer and Communications, 2015, *, ** Published Online **** 2015 in SciRes. http://www.scirp.org/journal/jcc http://dx.doi.org/10.4236/jcc.2015.***** An Application of Canny Edge Detection

More information

Improved Reversible Data Hiding in Encrypted Images Based on Reserving Room After Encryption and Pixel Prediction

Improved Reversible Data Hiding in Encrypted Images Based on Reserving Room After Encryption and Pixel Prediction Improved Reversible Data Hiding in Encrypted Images Based on Reserving Room After Encryption and Pixel Prediction Ioan Catalin Dragoi, Henri-George Coanda and Dinu Coltuc Electrical Engineering Dept. Valahia

More information

A NEW IMAGE CODE RECOGNIZABLE AT A DISTANCE

A NEW IMAGE CODE RECOGNIZABLE AT A DISTANCE A NEW IMAGE CODE RECOGNIZABLE AT A DISTANCE 1 HYEON YEONG CHOI, 2 WON-KEE HONG, 3 JAEPIL KO * 1,3 Department of Computer Engineering, KIT, Korea 2 School of Information and Comm. Engineering, Daegu Univ.,

More information

A Study of Medical Image Analysis System

A Study of Medical Image Analysis System Indian Journal of Science and Technology, Vol 8(25), DOI: 10.17485/ijst/2015/v8i25/80492, October 2015 ISSN (Print) : 0974-6846 ISSN (Online) : 0974-5645 A Study of Medical Image Analysis System Kim Tae-Eun

More information