Implementation of global and local thresholding algorithms in image segmentation of coloured prints

Size: px
Start display at page:

Download "Implementation of global and local thresholding algorithms in image segmentation of coloured prints"

Transcription

1 Implementation of global and local thresholding algorithms in image segmentation of coloured prints Miha Lazar, Aleš Hladnik Chair of Information and Graphic Arts Technology, Department of Textiles, Faculty of Natural Sciences and Engineering, University of Ljubljana, Snežniška 5, SI-1000 Ljubljana; Abstract Segmentation of a digital image whose histogram does not allow for clear and easy differentiation between the features of interest and the background pixels, requires the use of an advanced thresholding algorithm. In our study two local, i.e. adaptive, thresholding procedures with various sizes of small picture regions (windows) were implemented on an image of a lab handsheet made of repulped coloured prints in order to accurately identify the location and the number of residual toner particles. One of the applied algorithms was based on the information maximization of the thresholded image while the other was a modified Niblack's method. Results of the study suggest that the latter method outperforms the former one when using a large window size. Information maximization algorithm typically fails to detect some lighter and coloured areas of objects of interest. Key words: image processing, image binarization, local thresholding 1. Introduction Segmentation of a digital image into two regions one containing objects of interest and the other consisting of background pixels is a crucial step in various image processing applications. In pulp and paper research, to evaluate performance of a printed paper recycling process (e.g. flotation deinking), it is necessary first to separate ink particles and other impurities from the unprinted areas, i.e. paper itself. This process, known as thresholding can be described as follows (Young et al., 2008): If a[m,n] < a[m,n] = object = 1 Else a[m,n] = background = 0 (1) where parameter normally denotes brightness threshold applied to the image a[m,n]. Here we are interested in dark objects on a light background. Digital images of a printed paper surface are typically acquired with a flat-bed scanner and are usually 8- bit monochrome images having 256 different grey levels ranging from 0 (black, particles and other impurities) to 255 (white, paper). For images that exhibit a pronounced bimodal grey level distribution one peak represents grey levels of ink and dirt particles, and the other of the unprinted background pixels setting the right threshold does not present a problem: it is located at the local minimum between both peaks (Antoine et al., 2001). Often, however, difference between the ink peak and the paper peak is not well-defined and the image histogram is characterized by an unimodal, rather than a bimodal curve shape. This happens, for instance, when there is a low contrast between an ink (e.g. yellow) and the paper. Here instead of simply setting one global threshold for the total image, a more sophisticated algorithm has to be implemented. One possibility is the use of a local (adaptive, dynamic) thresholding method where the threshold changes dynamically over the image, i.e. its values are computed locally for small region windows. Objective of our research was to evaluate applicability of the two more advanced algorithms for digital image segmentation: an approach based on the digital image information maximization and an adaptive, locally-based thresholding technique, as described below. 2. Methods In our study we investigated a 2.1 x 2.1 cm 32-bit RGB colour picture (Figure 1, left) of a laboratory handsheet made of repulped prints scanned at 300 dpi. Paper was originally printed on a digital offset 1

2 printing machine Indigo E-Print at 600V printing drum voltage so the handsheet contained coloured ink (toner) particles of various sizes and shapes. Relatively large areas of the residual particles are typical of this printing technique; their elimination in paper recycling process using conventional flotation deinking procedure has proven to be an extremely difficult task (Hladnik et al., 2006). To compare various thresholding algorithms implemented in our study and to monitor the effect of image type, we examined another digital image that was produced by scanning part of a black-and-white text document using uneven light illumination (Figure 1, right). Our goal in this example was to obtain a well thresholded, readable text inspite of the present top-right to bottom-left decrease in background brightness. Figure 1. Images examined in the study: lab handsheet made of repulped print (left) and text document with illumination gradient (right). Two thresholding techniques for image segmentation were applied. First one is the so called information maximization (IM) algorithm (Kapur et al., 1985) where the threshold t max maximizes the information of the thresholded image according to the formula: t max arg Max H0( t) H1( t) tg N (2) where H 0 and H 1 are defined as follows: P P H ( o t) and N 1 Pi Pi H 1( t) log (3) it 11 P ( t) 1 P ( t) t i i log i0 Psum ( t) Psum ( t) P i is related to the probability distribution of the relative frequencies P as described in the original article (Kapur et al., 1985). This procedure can also be used for determination of a threshold within a smaller picture region window (local IM). Here a window of a chosen size moves from pixel to pixel in the image so that for each of them an optimum threshold value for its nearest neighbourhood can be obtained. The second applied method was a modified local, i.e. adaptive thresholding algorithm that was originally developed by Niblack (Niblack, 1986). He suggested to compute the threshold from the data on local mean and local standard deviation over a certain region n x n window size (WS) around each pixel location. The local threshold T at a pixel (i, is calculated as: T(i, = m(i, + k v(i, (4) 2 sum sum

3 where m(i, and v(i, are the local sample mean and variance, respectively. Parameter k controls the effect of standard deviation due to objects features and while it can be a constant value for segmentation of, for example, document images, for grey level images having a lot of variations in grey levels it should vary according to their grey level distributions. Therefore Rais (Rais et al., 2004) proposed the following formula for calculating the value of the weight k: k = 0.3 ( m g( i, g( i, m l ( i, l ( i, (5) max(( m g( i, g( i,, m l ( i, l ( i, ) where σ g (i, is the global standard deviation of the total image and σ l (i, is the local standard deviation calculated for each window. The above described algorithms were implemented on a personal computer using the MATLAB software package. Description of our work is presented in Figure 2. First, the original RGB image (Figure 1, left) was converted into an 8-bit greyscale (GS) one according to the following weighted formula: Grey = Red Green Blue (6) This GS image was binarized using both global IM as well as local Rais' thresholding (RT) algorithm. In the latter one, we experimented with various WSs ranging from 31 to 251 pixels. Alternatively, we performed CMYK split of the original image to produce separate C, M, Y and K 8-bit images, on which both thresholding techniques as with the GS image were applied. The four acquired thresholded C, M, Y and K images were in the end combined into a composite CMYK binary image. Finally, as it is possible to vary WS also in the case of the IM algorithm, we tested a number of WSs on GS as well as on CMYK-split images (dotted rectangles in Figure 2) to see how altering this parameter affects thresholding efficiency and, consequently, detection of coloured pixels found in the original image. The initial text document picture (Figure 1, right) was already acquired as an 8-bit GS image, so here only left part of the scheme was performed, i.e. without CMYK split images. 3

4 Grayscale (GS) conversion Original image CMYK split GS image Cyan Magenta Yellow Black Information maximization (IM) Rais' thresholding (RT) IM RT IM global RT WS1 RT WS2... IM RT WS1 RT WS2... global IM WS1 IM WS2... IM WS1 IM WS2 IM local IM local Figure 2. Scheme of experimental work. 4

5 3. Results and discussion RT and IM thresholded, i.e. binary, images of the text document image using various WSs are shown in Figures 3 and 4, respectively, while the corresponding results for the repulped print handsheet image are displayed in Figures 5 to 8. Several researchers reported that the local thresholding techniques were particularly successful in binarizing document images (Rais et al., 2004). Our experiments with the text image (Figure 1, right) confirmed these claims. When RT algorithm with a small WS e.g. 31 pixels was used (Figure 3), uneven background illumination was removed to a large extent. With increasingly bigger WSs, however, more and more letters in the bottom-left part of the image merged with the dark background present in the original picture and were therefore unreadable. With the other applied algorithm IM the observed effect of WS was quite the opposite (Figure 4): here best results were obtained with larger WSs. As demonstrated in the right-most picture, global IM thresholding proved ineffective in properly segmenting the image. Figure 3. Text document image results: binary images obtained with RT algorithm using various WS: 31 (left), 141(middle) and 251 (right) pixels. Figure 4. Text document image results: binary images obtained with IM algorithm using various WS: 3 (left), 25, 57 pixels and IM global (right). Interpretation of results obtained with implementing the two above mentioned thresholding techniques on the repulped print handsheet picture (Figure 1, left) was, as could be expected, not as straightforward as with the text document picture. Partial overlapping of toner particles of various colours, presence of small objects belonging to paper, i.e. background, and not to particles of our interest; these and other peculiarities made successful segmentation of the original image more difficult and also called for final human judgement regarding the applicability of the particular algorithm. RT algorithm applied on GS image (Figure 5) and using small WS (e.g. 31 pixels) generated many artifacts, i.e. particles not present in the original picture. Increasing the WS lead to progressively better results and with WS = 251, i.e, when the window size equaled the image size (250 pixels), the detection of the majority of features of interest was very good. In other words, although RT is a local thresholding method, smaller WSs did not produce satisfactory results. RT is an extremely locally sensitive algorithm, so it detects even the slightest differences in GS values, i.e. intensity variations in digital images. 5

6 When using IM thresholding technique on GS image (Figure 6), smallest WS again resulted in generating spurious particle pixels while with larger WS the situation improved siginficantly in this respect, although the total number of successfully recognized and binarized object pixels was too low. On the other hand, with small WS (e.g. 14 or 25 pixels) the algorithm was successful in recognizing certain coloured residual particles (e.g. yellow) that remained undetected when using bigger WS. It therefore seems that certain trade-off in terms of WS is necessary, i.e. WS optimum should be somewhere between 14 and 57 pixels. Global IM (right-most image) exhibits further too pronounced reduction in the number of recognized toner particles. As depicted in Figure 2, the original picture was also split into four separate C, M, Y and K channels and thresholded separately in an attempt to properly binarize and detect coloured image areas, i.e. toner particles. After performing the RT or IM thresholding, the resulting images were again combined into a composite CMYK image. With RT thresholding (Figure 7) detection of coloured (yellow) and brighter particles was, as expected, very good. Excellent performance was again demonstrated when choosing the biggest possible WS, i.e. 251 pixels (right-most image). Similar discussion applies as in the case of combination GS image-rt procedure (see above). Performance of IM thresholding on CMYK split image (Figure 8) was similar, i.e. less than optimum, to that on GS image (Figure 6). The difference is that in the case of CMYK separation of channels the resulting binary images contained, at least to some degree, pixels of yellow toner particles that were present in the original picture. It can be summarized that when comparing the original, repulped print handsheet image with the thresholded, binary images, the most complete and accurate detection of coloured features toner particles provides RT technique with a very large WS (251 pixels) applied either on the CMYK split or GS image. IM algorithm is less appropriate as it fails to detect some lighter and coloured areas of objects of interest, although its performance on CMYK split image is still acceptable. Figure 5. Repulped print handsheet GS image results: binary images obtained with RT algorithm using various WS: 31 (left), 141 (middle) and 251 (right) pixels Figure 6. Repulped print handsheet GS image results: binary images obtained with IM algorithm using various WS: 3 (left), 25, 57 pixels and IM global (right) 6

7 Figure 7. Repulped print handsheet CMYK split image results: binary images obtained with RT algorithm using various WS: 31 (left), 141 (middle) and 251 (right) pixels Figure 8. Repulped print handsheet CMYK split image results: binary images obtained with IM algorithm using various WS: 3 (left), 25, 57 pixels and IM global (right) 4. Conclusions It is a well-known fact that the same thresholding method can be successfully implemented in one application, but may not work well for another one. As the results of our study indicate, adaptive, i.e. local thresholding techniques proved to be a promising way to accurately segment a digital image such as printed paper prints into two regions: one containing toner or ink particles together with other impurities and the other consisting of background paper pixels. In the future we will, apart from testing and studying other thresholding procedures, focus on further optimization and automation of the presented methods, for instance in terms of speed so that a larger picture area can be analyzed in a shorter time period. Literature Antoine C., Lloyd M.D., Antoine J.: A robust thresholding algorithm for halftone dots. Journal of Pulp and Paper Science, Vol. 27, No. 8, P Hladnik A., Bolanča-Mirković I., Bolanča Z.: Characteristics of recycled fibres from digital prints using solid and liquid toner. Prooceedings of 2nd International Symposium on Novelties in Graphics, Ljubljana, Slovenia, June Kapur J.N., Sahoo P.K., Wong A.K.C.: A new method for grey level picture thresholding using the entropy of the histogram. Computer Vision, Graphics and Image Processing, Vol. 4, P Niblack W.: An introduction to digital image processing. Englewood Cliffs, N.J.: Prentice Hall, P Rais N.B., Hanif M.S., Taj I.A.: Adaptive thresholding technique for document image analysis. INMIC P Young I.T., Gerbrands J.J., van Vliet L.J: Image processing fundamentals Segmentation: Thresholding. WEB: 7

8 Acknowledgement The authors would like to thank Prof. Dr. Zdenka Bolanča from the Faculty of Graphic Arts, University of Zagreb, for providing digital sample images that were used in the study. 8

NDT-A COMPARISON BETWEN TWO IMAGE ANALYSIS SOFTWARE TOOLS

NDT-A COMPARISON BETWEN TWO IMAGE ANALYSIS SOFTWARE TOOLS Česká společnost pro nedestruktivní zkoušení materiálu 38. mezinárodní konference DEFEKTOSKOPIE 2008 Brno, 4. 6. 11. 2008 NDT-A COMPARISON BETWEN TWO IMAGE ANALYSIS SOFTWARE TOOLS Ivana BOLANCA MIRKOVIC*,

More information

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition

Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Preprocessing and Segregating Offline Gujarati Handwritten Datasheet for Character Recognition Hetal R. Thaker Atmiya Institute of Technology & science, Kalawad Road, Rajkot Gujarat, India C. K. Kumbharana,

More information

COLOR LASER PRINTER IDENTIFICATION USING PHOTOGRAPHED HALFTONE IMAGES. Do-Guk Kim, Heung-Kyu Lee

COLOR LASER PRINTER IDENTIFICATION USING PHOTOGRAPHED HALFTONE IMAGES. Do-Guk Kim, Heung-Kyu Lee COLOR LASER PRINTER IDENTIFICATION USING PHOTOGRAPHED HALFTONE IMAGES Do-Guk Kim, Heung-Kyu Lee Graduate School of Information Security, KAIST Department of Computer Science, KAIST ABSTRACT Due to the

More information

An Online Image Segmentation Method for Foreign Fiber Detection in Lint

An Online Image Segmentation Method for Foreign Fiber Detection in Lint An Online Image Segmentation Method for Foreign Fiber Detection in Lint Daohong Kan *, Daoliang Li, Wenzhu Yang, and Xin Zhang College of Information & Electrical Engineering, China Agricultural University,

More information

An Improved Binarization Method for Degraded Document Seema Pardhi 1, Dr. G. U. Kharat 2

An Improved Binarization Method for Degraded Document Seema Pardhi 1, Dr. G. U. Kharat 2 An Improved Binarization Method for Degraded Document Seema Pardhi 1, Dr. G. U. Kharat 2 1, Student, SPCOE, Department of E&TC Engineering, Dumbarwadi, Otur 2, Professor, SPCOE, Department of E&TC Engineering,

More information

Reference Free Image Quality Evaluation

Reference Free Image Quality Evaluation Reference Free Image Quality Evaluation for Photos and Digital Film Restoration Majed CHAMBAH Université de Reims Champagne-Ardenne, France 1 Overview Introduction Defects affecting films and Digital film

More information

NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT:

NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT: IJCE January-June 2012, Volume 4, Number 1 pp. 59 67 NON UNIFORM BACKGROUND REMOVAL FOR PARTICLE ANALYSIS BASED ON MORPHOLOGICAL STRUCTURING ELEMENT: A COMPARATIVE STUDY Prabhdeep Singh1 & A. K. Garg2

More information

SINCE2011 Singapore International NDT Conference & Exhibition, 3-4 November 2011

SINCE2011 Singapore International NDT Conference & Exhibition, 3-4 November 2011 SINCE2011 Singapore International NDT Conference & Exhibition, 3-4 November 2011 Automated Defect Recognition Software for Radiographic and Magnetic Particle Inspection B. Stephen Wong 1, Xin Wang 2*,

More information

Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram

Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram 5 Comparison of Two Pixel based Segmentation Algorithms of Color Images by Histogram Dr. Goutam Chatterjee, Professor, Dept of ECE, KPR Institute of Technology, Ghatkesar, Hyderabad, India ABSTRACT The

More information

ABSTRACT 1.INTRODUCTION

ABSTRACT 1.INTRODUCTION INFLUENCE OF THE RENEWABLE RAW MATERIAL IN OFFSET INKS ON THE CHARACTERISTICS OF THE RECYCLED FIBERS Ivana Bolanca Mirkovic, Zdenka Bolanca University of Zagreb, Faculty of Graphic Arts Zagreb, Croatia

More information

Colour analysis of inhomogeneous stains on textile using flatbed scanning and image analysis

Colour analysis of inhomogeneous stains on textile using flatbed scanning and image analysis Colour analysis of inhomogeneous stains on textile using flatbed scanning and image analysis Gerard van Dalen; Aat Don, Jegor Veldt, Erik Krijnen and Michiel Gribnau, Unilever Research & Development; P.O.

More information

5. SilverFast Tools Tools SilverFast Manual. 5. SilverFast Tools Image Auto-Adjust (Auto-Gradation) 114

5. SilverFast Tools Tools SilverFast Manual. 5. SilverFast Tools Image Auto-Adjust (Auto-Gradation) 114 Chapter 5 Tools 5. SilverFast Tools 5. SilverFast Tools 106 5.1 Image Auto-Adjust (Auto-Gradation) 114 5.2 Highlight / Shadow Tool 123 5.3 The Histogram 133 5.4 Gradation Dialogue 147 5.5 Global Colour

More information

Contrast adaptive binarization of low quality document images

Contrast adaptive binarization of low quality document images Contrast adaptive binarization of low quality document images Meng-Ling Feng a) and Yap-Peng Tan b) School of Electrical and Electronic Engineering, Nanyang Technological University, Nanyang Avenue, Singapore

More information

Colour Profiling Using Multiple Colour Spaces

Colour Profiling Using Multiple Colour Spaces Colour Profiling Using Multiple Colour Spaces Nicola Duffy and Gerard Lacey Computer Vision and Robotics Group, Trinity College, Dublin.Ireland duffynn@cs.tcd.ie Abstract This paper presents an original

More information

Computer Graphics. Si Lu. Fall er_graphics.htm 10/02/2015

Computer Graphics. Si Lu. Fall er_graphics.htm 10/02/2015 Computer Graphics Si Lu Fall 2017 http://www.cs.pdx.edu/~lusi/cs447/cs447_547_comput er_graphics.htm 10/02/2015 1 Announcements Free Textbook: Linear Algebra By Jim Hefferon http://joshua.smcvt.edu/linalg.html/

More information

printing A guide to newsprint printing

printing A guide to newsprint printing A guide to newsprint A guide to newsprint Introduction Our aim in producing this guide is to help you modify your files to meet our paper and requirements, so you can receive the best print result possible.

More information

Quantitative Analysis of Local Adaptive Thresholding Techniques

Quantitative Analysis of Local Adaptive Thresholding Techniques Quantitative Analysis of Local Adaptive Thresholding Techniques M. Chandrakala Assistant Professor, Department of ECE, MGIT, Hyderabad, Telangana, India ABSTRACT: Thresholding is a simple but effective

More information

printing An designer s guide to newsprint printing

printing An designer s guide to newsprint printing 7 Toptips printing An designer s guide to newsprint printing The Meeting Place of Intelligent Business Introduction Our aim in producing this guide is to help you modify your files to meet our paper and

More information

Special Print Quality Problems of Ink Jet Printers

Special Print Quality Problems of Ink Jet Printers Special Print Quality Problems of Ink Jet Printers LUDWIK BUCZYNSKI Warsaw University of Technology, Mechatronic Department, Warsaw, Poland Abstract Rapid development of Ink Jet print technologies has

More information

Binarization of Color Document Images via Luminance and Saturation Color Features

Binarization of Color Document Images via Luminance and Saturation Color Features 434 IEEE TRANSACTIONS ON IMAGE PROCESSING, VOL. 11, NO. 4, APRIL 2002 Binarization of Color Document Images via Luminance and Saturation Color Features Chun-Ming Tsai and Hsi-Jian Lee Abstract This paper

More information

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods

An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods 19 An Efficient Color Image Segmentation using Edge Detection and Thresholding Methods T.Arunachalam* Post Graduate Student, P.G. Dept. of Computer Science, Govt Arts College, Melur - 625 106 Email-Arunac682@gmail.com

More information

ECC419 IMAGE PROCESSING

ECC419 IMAGE PROCESSING ECC419 IMAGE PROCESSING INTRODUCTION Image Processing Image processing is a subclass of signal processing concerned specifically with pictures. Digital Image Processing, process digital images by means

More information

PHOTOSHOP. pixel based image editing software (pixel=picture element) several small dots or pixels make up an image.

PHOTOSHOP. pixel based image editing software (pixel=picture element) several small dots or pixels make up an image. Photoshop PHOTOSHOP pixel based image editing software (pixel=picture element) several small dots or pixels make up an image. RESOLUTION measurement of the total number of pixels displayed determines the

More information

This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output.

This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Page 1 of 7 Color quality guide This Color Quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Quality Menu Selections available

More information

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors

Sampling Rate = Resolution Quantization Level = Color Depth = Bit Depth = Number of Colors ITEC2110 FALL 2011 TEST 2 REVIEW Chapters 2-3: Images I. Concepts Graphics A. Bitmaps and Vector Representations Logical vs. Physical Pixels - Images are modeled internally as an array of pixel values

More information

Automatic Locating the Centromere on Human Chromosome Pictures

Automatic Locating the Centromere on Human Chromosome Pictures Automatic Locating the Centromere on Human Chromosome Pictures M. Moradi Electrical and Computer Engineering Department, Faculty of Engineering, University of Tehran, Tehran, Iran moradi@iranbme.net S.

More information

Substrate Correction in ISO

Substrate Correction in ISO (Presented at the TAGA Conference, March 6-9, 2011, Pittsburgh, PA) Substrate Correction in ISO 12647-2 *Robert Chung and **Quanhui Tian Keywords: ISO 12647-2, solid, substrate, substrate-corrected aims,

More information

Multilevel Rendering of Document Images

Multilevel Rendering of Document Images Multilevel Rendering of Document Images ANDREAS SAVAKIS Department of Computer Engineering Rochester Institute of Technology Rochester, New York, 14623 USA http://www.rit.edu/~axseec Abstract: Rendering

More information

Image Compression Based on Multilevel Adaptive Thresholding using Meta-Data Heuristics

Image Compression Based on Multilevel Adaptive Thresholding using Meta-Data Heuristics Cloud Publications International Journal of Advanced Remote Sensing and GIS 2017, Volume 6, Issue 1, pp. 1988-1993 ISSN 2320 0243, doi:10.23953/cloud.ijarsg.29 Research Article Open Access Image Compression

More information

Chapter 6. [6]Preprocessing

Chapter 6. [6]Preprocessing Chapter 6 [6]Preprocessing As mentioned in chapter 4, the first stage in the HCR pipeline is preprocessing of the image. We have seen in earlier chapters why this is very important and at the same time

More information

Implementation of Colored Visual Cryptography for Generating Digital and Physical Shares

Implementation of Colored Visual Cryptography for Generating Digital and Physical Shares Implementation of Colored Visual Cryptography for Generating Digital and Physical Shares Ahmad Zaky 13512076 1 Program Studi Teknik Informatika Sekolah Teknik Elektro dan Informatika Institut Teknologi

More information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information

Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Malaysian Car Number Plate Detection System Based on Template Matching and Colour Information Mohd Firdaus Zakaria, Shahrel A. Suandi Intelligent Biometric Group, School of Electrical and Electronics Engineering,

More information

Image Extraction using Image Mining Technique

Image Extraction using Image Mining Technique IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 9 (September. 2013), V2 PP 36-42 Image Extraction using Image Mining Technique Prof. Samir Kumar Bandyopadhyay,

More information

Keywords: Image segmentation, pixels, threshold, histograms, MATLAB

Keywords: Image segmentation, pixels, threshold, histograms, MATLAB Volume 6, Issue 3, March 2016 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Analysis of Various

More information

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University

Images and Graphics. 4. Images and Graphics - Copyright Denis Hamelin - Ryerson University Images and Graphics Images and Graphics Graphics and images are non-textual information that can be displayed and printed. Graphics (vector graphics) are an assemblage of lines, curves or circles with

More information

Image Rendering for Digital Fax

Image Rendering for Digital Fax Rendering for Digital Fax Guotong Feng a, Michael G. Fuchs b and Charles A. Bouman a a Purdue University, West Lafayette, IN b Hewlett-Packard Company, Boise, ID ABSTRACT Conventional halftoning methods

More information

INFLUENCE OF THE RENDERING METHODS ON DEVIATIONS IN PROOF PRINTING

INFLUENCE OF THE RENDERING METHODS ON DEVIATIONS IN PROOF PRINTING 30. September 2. October 2009, Senj, Croatia Technical paper INFLUENCE OF THE RENDERING METHODS ON DEVIATIONS IN PROOF PRINTING Puškarić M., Jurić N., Majnarić I. University of Zagreb, Faculty of Graphic

More information

Image processing for gesture recognition: from theory to practice. Michela Goffredo University Roma TRE

Image processing for gesture recognition: from theory to practice. Michela Goffredo University Roma TRE Image processing for gesture recognition: from theory to practice 2 Michela Goffredo University Roma TRE goffredo@uniroma3.it Image processing At this point we have all of the basics at our disposal. We

More information

An Algorithm and Implementation for Image Segmentation

An Algorithm and Implementation for Image Segmentation , pp.125-132 http://dx.doi.org/10.14257/ijsip.2016.9.3.11 An Algorithm and Implementation for Image Segmentation Li Haitao 1 and Li Shengpu 2 1 College of Computer and Information Technology, Shangqiu

More information

Displacement Measurement of Burr Arch-Truss Under Dynamic Loading Based on Image Processing Technology

Displacement Measurement of Burr Arch-Truss Under Dynamic Loading Based on Image Processing Technology 6 th International Conference on Advances in Experimental Structural Engineering 11 th International Workshop on Advanced Smart Materials and Smart Structures Technology August 1-2, 2015, University of

More information

Segmentation of Liver CT Images

Segmentation of Liver CT Images Segmentation of Liver CT Images M.A.Alagdar 1, M.E.Morsy 2, M.M.Elzalabany 3 1,2,3 Electronics And Communications Department-.Faculty Of Engineering Mansoura University, Egypt. Abstract In this paper we

More information

Images and Displays. Lecture Steve Marschner 1

Images and Displays. Lecture Steve Marschner 1 Images and Displays Lecture 2 2008 Steve Marschner 1 Introduction Computer graphics: The study of creating, manipulating, and using visual images in the computer. What is an image? A photographic print?

More information

A New Approximation Algorithm for Output Device Profile Based on the Relationship between CMYK Ink Values and Colorimetric Values

A New Approximation Algorithm for Output Device Profile Based on the Relationship between CMYK Ink Values and Colorimetric Values A New Approximation Algorithm for Output Device Profile Based on the Relationship between CMYK Ink Values and Colorimetric Values Yoshihiko Azuma, Kazuyoshi Takahashi,Michitaka Nonaka and Mitsuo Kaji Tokyo

More information

Digital Image Processing

Digital Image Processing Digital Image Processing Lecture # 5 Image Enhancement in Spatial Domain- I ALI JAVED Lecturer SOFTWARE ENGINEERING DEPARTMENT U.E.T TAXILA Email:: ali.javed@uettaxila.edu.pk Office Room #:: 7 Presentation

More information

CCD Automatic Gain Algorithm Design of Noncontact Measurement System Based on High-speed Circuit Breaker

CCD Automatic Gain Algorithm Design of Noncontact Measurement System Based on High-speed Circuit Breaker 2016 3 rd International Conference on Engineering Technology and Application (ICETA 2016) ISBN: 978-1-60595-383-0 CCD Automatic Gain Algorithm Design of Noncontact Measurement System Based on High-speed

More information

Pixel Classification Algorithms for Noise Removal and Signal Preservation in Low-Pass Filtering for Contrast Enhancement

Pixel Classification Algorithms for Noise Removal and Signal Preservation in Low-Pass Filtering for Contrast Enhancement Pixel Classification Algorithms for Noise Removal and Signal Preservation in Low-Pass Filtering for Contrast Enhancement Chunyan Wang and Sha Gong Department of Electrical and Computer engineering, Concordia

More information

Low Noise Color Error Diffusion using the 8-Color Planes

Low Noise Color Error Diffusion using the 8-Color Planes Low Noise Color Error Diffusion using the 8-Color Planes Hidemasa Nakai, Koji Nakano Abstract Digital color halftoning is a process to convert a continuous-tone color image into an image with a limited

More information

Chapter 11. Preparing a Document for Prepress and Printing Delmar, Cengage Learning

Chapter 11. Preparing a Document for Prepress and Printing Delmar, Cengage Learning Chapter 11 Preparing a Document for Prepress and Printing 2011 Delmar, Cengage Learning Objectives Explore color theory and resolution issues Work in CMYK mode Specify spot colors Create crop marks Create

More information

Digital Art Requirements for Submission

Digital Art Requirements for Submission Requirements for Submission Contents 1. Overview What Is Digital Art? Types of Digital Art: Scans and Computer-Based Drawings 3 3 3 2. Image Resolution for Continuous-Tone Scans Continuous-Tone or Bi-tonal?

More information

Adobe Photoshop PS2, Part 3

Adobe Photoshop PS2, Part 3 Adobe Photoshop PS2, Part 3 Basic Photo Corrections This guide steps you through the process of acquiring, resizing, and retouching a photo intended for posting on the Web as well as for a print layout.

More information

Target detection in side-scan sonar images: expert fusion reduces false alarms

Target detection in side-scan sonar images: expert fusion reduces false alarms Target detection in side-scan sonar images: expert fusion reduces false alarms Nicola Neretti, Nathan Intrator and Quyen Huynh Abstract We integrate several key components of a pattern recognition system

More information

Checkerboard Tracker for Camera Calibration. Andrew DeKelaita EE368

Checkerboard Tracker for Camera Calibration. Andrew DeKelaita EE368 Checkerboard Tracker for Camera Calibration Abstract Andrew DeKelaita EE368 The checkerboard extraction process is an important pre-preprocessing step in camera calibration. This project attempts to implement

More information

INSTITUTIONEN FÖR SYSTEMTEKNIK LULEÅ TEKNISKA UNIVERSITET

INSTITUTIONEN FÖR SYSTEMTEKNIK LULEÅ TEKNISKA UNIVERSITET INSTITUTIONEN FÖR SYSTEMTEKNIK LULEÅ TEKNISKA UNIVERSITET Some color images on this slide Last Lecture 2D filtering frequency domain The magnitude of the 2D DFT gives the amplitudes of the sinusoids and

More information

ScanGear CS-U 5.3 for CanoScan FB630U/FB636U Color Image Scanner User s Guide

ScanGear CS-U 5.3 for CanoScan FB630U/FB636U Color Image Scanner User s Guide ScanGear CS-U 5.3 for CanoScan FB630U/FB636U Color Image Scanner User s Guide Copyright Notice 1999 Canon Inc. This manual is copyrighted with all rights reserved. Under the copyright laws, this manual

More information

Deinking of Inkjet Printed Paper. PTS Deinking Symposium April 27-29, 2010

Deinking of Inkjet Printed Paper. PTS Deinking Symposium April 27-29, 2010 Deinking of Inkjet Printed Paper PTS Deinking Symposium April 27-29, 2010 Overview for Today o Who is the DPDA o Dye Based Ink Investigation and Results o Comment on Lab Methods vs Commercial Conditions

More information

Raster (Bitmap) Graphic File Formats & Standards

Raster (Bitmap) Graphic File Formats & Standards Raster (Bitmap) Graphic File Formats & Standards Contents Raster (Bitmap) Images Digital Or Printed Images Resolution Colour Depth Alpha Channel Palettes Antialiasing Compression Colour Models RGB Colour

More information

Coreldraw Crash Course

Coreldraw Crash Course Coreldraw Crash Course Yannick Kremer Vrije Universiteit Amsterdam, February 27, 2007 Outline - Introduction to the basics of digital imaging - Bitmaps - Vectors - Colour: RGB vs CMYK - What can you do

More information

CS 565 Computer Vision. Nazar Khan PUCIT Lecture 4: Colour

CS 565 Computer Vision. Nazar Khan PUCIT Lecture 4: Colour CS 565 Computer Vision Nazar Khan PUCIT Lecture 4: Colour Topics to be covered Motivation for Studying Colour Physical Background Biological Background Technical Colour Spaces Motivation Colour science

More information

Addressing the colorimetric redundancy in 11-ink color separation

Addressing the colorimetric redundancy in 11-ink color separation https://doi.org/1.2352/issn.247-1173.217.18.color-58 217, Society for Imaging Science and Technology Addressing the colorimetric redundancy in 11-ink color separation Daniel Nyström, Paula Zitinski Elias

More information

Prof. Feng Liu. Fall /02/2018

Prof. Feng Liu. Fall /02/2018 Prof. Feng Liu Fall 2018 http://www.cs.pdx.edu/~fliu/courses/cs447/ 10/02/2018 1 Announcements Free Textbook: Linear Algebra By Jim Hefferon http://joshua.smcvt.edu/linalg.html/ Homework 1 due in class

More information

The relationship between Image Resolution and Print Size

The relationship between Image Resolution and Print Size The relationship between Image Resolution and Print Size This tutorial deals specifically with images produced from digital imaging devices, not film cameras. Make Up of an Image. Images from digital cameras

More information

INGEDE Project Deinkability Survey 2017

INGEDE Project Deinkability Survey 2017 INGEDE Project 15317 Deinkability Survey 2017 INGEDE Symposium 28.02.2018, Munich Dr.-Ing. Hans-Joachim Putz Paper Technology and Mechanical Process Engineering (PMV) Technische Universität Darmstadt Alexanderstraße

More information

Virtual Restoration of old photographic prints. Prof. Filippo Stanco

Virtual Restoration of old photographic prints. Prof. Filippo Stanco Virtual Restoration of old photographic prints Prof. Filippo Stanco Many photographic prints of commercial / historical value are being converted into digital form. This allows: Easy ubiquitous fruition:

More information

Thresholding Technique for Document Images using a Digital Camera

Thresholding Technique for Document Images using a Digital Camera I&T's 2 PIC Conference I&T's 2 PIC Conference Copyright 2, I&T Thresholding Technique for Document Images using a Digital Camera adao Takahashi Research and Development Group, Ricoh Co., Ltd. Yokohama,

More information

Exercise questions for Machine vision

Exercise questions for Machine vision Exercise questions for Machine vision This is a collection of exercise questions. These questions are all examination alike which means that similar questions may appear at the written exam. I ve divided

More information

Digital Images. Back to top-level. Digital Images. Back to top-level Representing Images. Dr. Hayden Kwok-Hay So ENGG st semester, 2010

Digital Images. Back to top-level. Digital Images. Back to top-level Representing Images. Dr. Hayden Kwok-Hay So ENGG st semester, 2010 0.9.4 Back to top-level High Level Digital Images ENGG05 st This week Semester, 00 Dr. Hayden Kwok-Hay So Department of Electrical and Electronic Engineering Low Level Applications Image & Video Processing

More information

Seiki Miyashita, Miyuki Shibata, Akio Minoura, Yutaka Kataoka Otani University, Kyoto, Japan

Seiki Miyashita, Miyuki Shibata, Akio Minoura, Yutaka Kataoka Otani University, Kyoto, Japan Research Project of Making Multimedia Data Base with Proven Quality as Primary Samples High Fidelity Digital Image Data of Tibetan Tripitaka Beijing Edition: Photo Taking Process Seiki Miyashita, Miyuki

More information

Digital Enhancement of Palm Leaf Manuscript Images using Normalization Techniques

Digital Enhancement of Palm Leaf Manuscript Images using Normalization Techniques Digital Enhancement of Palm Leaf Manuscript Images using Normalization Techniques Zhixin Shi, Srirangaraj Setlur and Venu Govindaraju Center of Excellence for Document Analysis and Recognition (CEDAR)

More information

ImageJ, A Useful Tool for Image Processing and Analysis Joel B. Sheffield

ImageJ, A Useful Tool for Image Processing and Analysis Joel B. Sheffield ImageJ, A Useful Tool for Image Processing and Analysis Joel B. Sheffield Temple University Dedicated to the memory of Dan H. Moore (1909-2008) Presented at the 2008 meeting of the Microscopy and Microanalytical

More information

Image Optimization for Print and Web

Image Optimization for Print and Web There are two distinct types of computer graphics: vector images and raster images. Vector Images Vector images are graphics that are rendered through a series of mathematical equations. These graphics

More information

For a long time I limited myself to one color as a form of discipline. Pablo Picasso. Color Image Processing

For a long time I limited myself to one color as a form of discipline. Pablo Picasso. Color Image Processing For a long time I limited myself to one color as a form of discipline. Pablo Picasso Color Image Processing 1 Preview Motive - Color is a powerful descriptor that often simplifies object identification

More information

8. Statistical properties of grayscale images

8. Statistical properties of grayscale images Image Processing aboratory 8: Statistical properties of grayscale images 1 8. Statistical properties of grayscale images 8.1. Introduction This laboratory wor presents the main statistic features that

More information

A new seal verification for Chinese color seal

A new seal verification for Chinese color seal Edith Cowan University Research Online ECU Publications 2011 2011 A new seal verification for Chinese color seal Zhihu Huang Jinsong Leng Edith Cowan University 10.4028/www.scientific.net/AMM.58-60.2558

More information

Fig Color spectrum seen by passing white light through a prism.

Fig Color spectrum seen by passing white light through a prism. 1. Explain about color fundamentals. Color of an object is determined by the nature of the light reflected from it. When a beam of sunlight passes through a glass prism, the emerging beam of light is not

More information

Creating Digital Artwork

Creating Digital Artwork 5Steps to Creating Digital Artwork (For more detailed instructions, please click here) Introduction to Digital Artwork Authors often choose to include digital artwork as part of a submission to a medical

More information

HIGH-QUALITY COLOUR REPRODUCTION ON JACQUARD SILK TEXTILE FROM DIGITAL COLOUR IMAGES

HIGH-QUALITY COLOUR REPRODUCTION ON JACQUARD SILK TEXTILE FROM DIGITAL COLOUR IMAGES AUTEX Research Journal, Vol. 3, No4, December 2003 AUTEX HIGH-QUALITY COLOUR REPRODUCTION ON JACQUARD SILK TEXTILE FROM DIGITAL COLOUR IMAGES Keiji Osaki International Christian University, Department

More information

Color is the factory default setting. The printer driver is capable of overriding this setting. Adjust the color output on the printed page.

Color is the factory default setting. The printer driver is capable of overriding this setting. Adjust the color output on the printed page. Page 1 of 6 Color quality guide The Color quality guide helps users understand how operations available on the printer can be used to adjust and customize color output. Quality menu Use Print Mode Color

More information

Printing Devices. Lecture 10. Older Printing Devices. Ink Jet Printer. Thermal-Bubble Ink Jet Printer. Plotter. Dot Matrix Printer

Printing Devices. Lecture 10. Older Printing Devices. Ink Jet Printer. Thermal-Bubble Ink Jet Printer. Plotter. Dot Matrix Printer Lecture 10 Older Printing Devices Printing Devices Ink Jet Printers Laser Printers Thermal Printers Dye Sublimation Halftoning Dithering Error Diffusion Plotter Dot Matrix Printer pin motion ink covered

More information

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION

INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION International Journal of Computer Science and Communication Vol. 2, No. 2, July-December 2011, pp. 593-599 INDIAN VEHICLE LICENSE PLATE EXTRACTION AND SEGMENTATION Chetan Sharma 1 and Amandeep Kaur 2 1

More information

Color and More. Color basics

Color and More. Color basics Color and More In this lesson, you'll evaluate an image in terms of its overall tonal range (lightness, darkness, and contrast), its overall balance of color, and its overall appearance for areas that

More information

Colored Rubber Stamp Removal from Document Images

Colored Rubber Stamp Removal from Document Images Colored Rubber Stamp Removal from Document Images Soumyadeep Dey, Jayanta Mukherjee, Shamik Sural, and Partha Bhowmick Indian Institute of Technology, Kharagpur {soumyadeepdey@sit,jay@cse,shamik@sit,pb@cse}.iitkgp.ernet.in

More information

Capturing and Editing Digital Images *

Capturing and Editing Digital Images * Digital Media The material in this handout is excerpted from Digital Media Curriculum Primer a work written by Dr. Yue-Ling Wong (ylwong@wfu.edu), Department of Computer Science and Department of Art,

More information

A Basic Guide to Photoshop Adjustment Layers

A Basic Guide to Photoshop Adjustment Layers A Basic Guide to Photoshop Adjustment Layers Photoshop has a Panel named Adjustments, based on the Adjustment Layers of previous versions. These adjustments can be used for non-destructive editing, can

More information

Thresholding and segmentation concerns in spray imaging

Thresholding and segmentation concerns in spray imaging Thresholding and segmentation concerns in spray imaging D. Sedarsky * Applied Mechanics Department Chalmers University of Technology SE-412 96 Gothenburg, Sweden Abstract Continuing advances in fast digital

More information

Additive Color Synthesis

Additive Color Synthesis Color Systems Defining Colors for Digital Image Processing Various models exist that attempt to describe color numerically. An ideal model should be able to record all theoretically visible colors in the

More information

Computer Vision. Howie Choset Introduction to Robotics

Computer Vision. Howie Choset   Introduction to Robotics Computer Vision Howie Choset http://www.cs.cmu.edu.edu/~choset Introduction to Robotics http://generalrobotics.org What is vision? What is computer vision? Edge Detection Edge Detection Interest points

More information

Apply Colour Sequences to Enhance Filter Results. Operations. What Do I Need? Filter

Apply Colour Sequences to Enhance Filter Results. Operations. What Do I Need? Filter Apply Colour Sequences to Enhance Filter Results Operations What Do I Need? Filter Single band images from the SPOT and Landsat platforms can sometimes appear flat (i.e., they are low contrast images).

More information

International Conference on Computer, Communication, Control and Information Technology (C 3 IT 2009) Paper Code: DSIP-024

International Conference on Computer, Communication, Control and Information Technology (C 3 IT 2009) Paper Code: DSIP-024 Paper Code: DSIP-024 Oral 270 A NOVEL SCHEME FOR BINARIZATION OF VEHICLE IMAGES USING HIERARCHICAL HISTOGRAM EQUALIZATION TECHNIQUE Satadal Saha 1, Subhadip Basu 2 *, Mita Nasipuri 2, Dipak Kumar Basu

More information

Stamp Colors. Towards a Stamp-Oriented Color Guide: Objectifying Classification by Color. John M. Cibulskis, Ph.D. November 18-19, 2015

Stamp Colors. Towards a Stamp-Oriented Color Guide: Objectifying Classification by Color. John M. Cibulskis, Ph.D. November 18-19, 2015 Stamp Colors Towards a Stamp-Oriented Color Guide: Objectifying Classification by Color John M. Cibulskis, Ph.D. November 18-19, 2015 Two Views of Color Varieties The Color is the Thing: Different inks

More information

The Impact of Third-Party Inks on Image Quality

The Impact of Third-Party Inks on Image Quality The Impact of Third-Party Inks on Image Quality Glenn Menin, PC Magazine Labs, New York, New York USA Kate Johnson, ImageXpert Inc., Nashua, New Hampshire, USA Abstract While costs of inkjet printers have

More information

Performance of Combined Error Correction and Error Detection for very Short Block Length Codes

Performance of Combined Error Correction and Error Detection for very Short Block Length Codes Performance of Combined Error Correction and Error Detection for very Short Block Length Codes Matthias Breuninger and Joachim Speidel Institute of Telecommunications, University of Stuttgart Pfaffenwaldring

More information

[More* et al., 5(8): August, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116

[More* et al., 5(8): August, 2016] ISSN: IC Value: 3.00 Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY AN IMPROVED HYBRID BINARIZATION TECHNIQUE FOR DEGRADED DOCUMENT DIGITIZATION Prachi K. More*, Devidas D. Dighe Department of E

More information

Towards a New Age Graphic Design DIGITAL PRINTING

Towards a New Age Graphic Design DIGITAL PRINTING 90 Chapter 08 Towards a New Age Graphic Design DIGITAL IMAGING and PRINTING Graphic designers work with visual images, either for print media or for digital media. With the advent of computers, most of

More information

OTSU Guided Adaptive Binarization of CAPTCHA Image using Gamma Correction

OTSU Guided Adaptive Binarization of CAPTCHA Image using Gamma Correction 2016 23rd International Conference on Pattern Recognition (ICPR) Cancún Center, Cancún, México, December 4-8, 2016 OTSU Guided Adaptive Binarization of CAPTCHA Image using Gamma Correction Cunzhao Shi,

More information

The Impact of Third-Party Inks on Image Quality

The Impact of Third-Party Inks on Image Quality The Impact of Third-Party Inks on Image Quality Glenn Menin, PC Magazine Labs, New York, New York Kate Johnson, ImageXpert Inc., Nashua, New Hampshire Abstract While costs of inkjet printers have plummeted

More information

CHAPTER 4 LOCATING THE CENTER OF THE OPTIC DISC AND MACULA

CHAPTER 4 LOCATING THE CENTER OF THE OPTIC DISC AND MACULA 90 CHAPTER 4 LOCATING THE CENTER OF THE OPTIC DISC AND MACULA The objective in this chapter is to locate the centre and boundary of OD and macula in retinal images. In Diabetic Retinopathy, location of

More information

Local Adaptive Contrast Enhancement for Color Images

Local Adaptive Contrast Enhancement for Color Images Local Adaptive Contrast for Color Images Judith Dijk, Richard J.M. den Hollander, John G.M. Schavemaker and Klamer Schutte TNO Defence, Security and Safety P.O. Box 96864, 2509 JG The Hague, The Netherlands

More information

Color Reproduction. Chapter 6

Color Reproduction. Chapter 6 Chapter 6 Color Reproduction Take a digital camera and click a picture of a scene. This is the color reproduction of the original scene. The success of a color reproduction lies in how close the reproduced

More information

Colorimetry vs. Densitometry in the Selection of Ink-jet Colorants

Colorimetry vs. Densitometry in the Selection of Ink-jet Colorants Colorimetry vs. Densitometry in the Selection of Ink-jet Colorants E. Baumann, M. Fryberg, R. Hofmann, and M. Meissner ILFORD Imaging Switzerland GmbH Marly, Switzerland Abstract The gamut performance

More information

Packaging Design with Hidden Near Infrared Colour Separation

Packaging Design with Hidden Near Infrared Colour Separation ISSN 1330-3651 (Print), ISSN 1848-6339 (Online) https://doi.org/10.17559/tv-20170705114921 Preliminary communication Packaging Design with Hidden Near Infrared Colour Separation Jana ŽILJAK, Denis JUREČIĆ,

More information