Input sensitive thresholding for ancient Hebrew manuscript

Size: px
Start display at page:

Download "Input sensitive thresholding for ancient Hebrew manuscript"

Transcription

1 Pattern Recognition Letters 26 (2005) Input sensitive thresholding for ancient Hebrew manuscript Itay Bar-Yosef * Department of Computer Science, Ben Gurion University, Beer-Sheva 84105, Israel Received 21 April 2004; received in revised form 4 July 2004 Available online 7 December 2004 Abstract In this paper, we describe an input sensitive thresholding algorithm for ancient Hebrew calligraphy documents. Usually, historical document images are of poor quality since the documents have degraded over time due to storage conditions. However, the distribution of noise in one document is not uniform and the characters quality may vary. We develop tools to identify noisy characters and apply more sophisticated tools to process them. First, we use a global thresholding method to obtain an initial binary image. This suffices for noise free characters. Then we evaluate the document characters and invoke an accurate local method only on the noisy characters. Results show that our method detects a very high percent of the noisy characters, and that the local method achieves very accurate results. Ó 2004 Elsevier B.V. All rights reserved. Keywords: Binarization; Old manuscripts; Character segmentation 1. Introduction In general, historical document images are of poor quality because the documents have degraded over time due to storage conditions, and to the quality of the written parchment. As a result, the foreground and background are difficult to separate. The problem is particularly difficult because many documents have varying contrast, smudges, variable background intensity and presence of seeping ink from the other side of the document (see Fig. 1). * Tel.: address: itaybar@cs.bgu.ac.il Several thresholding approaches have been reported in the literature on binarization of text documents with noisy background. In (Don, 1995), presented a noise attribute thresholding method for document image binarization. The method utilized noise attribute features, based on a simple noise model, to overcome the difficulty that some objects do not form prominent peaks in the histogram. Negishi et al. (1999) presented a thresholding algorithm to extract the character bodies from a noisy background. They deal with extremely dirty and considerably large images, where the gray level of the characters overlaps with the background. Liu and Srihari (1997) developed a thresholding algorithm based on texture features /$ - see front matter Ó 2004 Elsevier B.V. All rights reserved. doi: /j.patrec

2 I. Bar-Yosef / Pattern Recognition Letters 26 (2005) Fig. 1. Example of an old Hebrew manuscript. Their proposed algorithm utilized two fundamental attributes of document images: (i) the characters normally occupy separable gray level range in the gray-scale histogram, and (ii) that the text images contain highly structured-stroke units. Tan et al. (2000) established a method for removing interfering strokes from double-sided handwritten documents based on the observation that the edges of the sipping strokes from the reverse side are not as sharp as those on the front side, they adopt an edge detection approach to suppress unwanted background patterns. In (Solihin and Leedham, 1999), the authors proposed a new class of histogram based global thresholding techniques called Integral Ratio (QIR, NIR). The proposed class of techniques was based on a two stage thresholding approach requiring each pixel of a handwritten image to be placed into one of three classes: foreground, background, and a fuzzy area between them. In (Leedham et al., 2002), a comparison between several global methods found that the QIR method performed the best on degraded document images. In our approach, we use the QIR method as a first global phase (see Section 2). The methods described above do not suffice for our data, since it has wide variation in quality even within one document. Although some of the characters are well separated from the background, the sipping ink, the stains and the gray level overlap between other characters and the mentioned noise, make the thresholding task very difficult. Our algorithm is an improvement of the multi-stage binarization method presented in (Bar-Yosef et al., 2004), where first a global method is used and the produced connected components are refined using a local adaptive method. In our data, a substantial amount of characters is in good condition, and some are badly degraded. This led us to develop an input sensitive system, where a global thresholding is applied first, and the quality of the produced components are evaluated by an evaluation procedure that decides which components should be refined. We observe that it is easy to detect the seed body of each character. This leave a fuzzy area around the seed on which we apply our local refinement procedure. Our paper is organized as follows: the global phase is presented in Section 2, the quality evaluation procedure is introduced in Section 3, Section 4 presents the adaptive local method and Section 5 presents experimental results. 2. Global thresholding An important feature of the documents in our research is that the extremely large size of the documents makes the amount of smudge and ink stains very small compared with the relatively good characters, where this noise cannot be noticed in the imageõs histogram. As a consequence, almost any histogram based method which does not tend to over-threshold the documents, will provide reasonable preliminary results. Still, not all the characters are segmented well. Our task is therefore to efficiently detect the characters that should undergo a refining procedure. In Section 3 we describe the discrimination between good and bad characters. Another feature of the image quality is that the character edges are not sharp and blend with the background. This creates a range of gray level values, placed near the histogramõs valley. A substantial part of this range is detected as foreground in global methods, which usually choose a threshold in the histogramõs valley (see Fig. 2). In our case, this often results in merged characters as can be seen in Fig. 3(b). The following step is taken to overcome this problem.

3 1170 I. Bar-Yosef / Pattern Recognition Letters 26 (2005) x Fig. 2. Bi-modal histogram of the image in Fig. 1. f B ¼ 1 if f < T C 0 otherwise Experiments show that the average number of merged characters after this refinement phase is reduced significantly, especially with under-thresholded images (see Fig. 3). In the following step, we ignore small blobs and letter punctuation (in Hebrew these are the vowels which are mostly positioned under the text lines) using a simple line extraction scheme. After this stage, f B Õs connected components are composed of foreground objects, few of them connected to some noise. Denote by CC ={CC 1,CC 2,...,CC N } the set of connected components in f B. 3. Quality evaluation Fig. 3. (a) Original, (b) after global thresholding and (c) after refinement. Let f be a gray scale image of an old Hebrew document. Select a global threshold T f using any global histogram based method, and obtain a binary image f B. f B ¼ 1 if f < T f 0 otherwise Let C B be the set of pixels belonging to the contours of the components in f B. Denote T C as the mean gray scale value of C B. Use T C as a threshold value on f, to refine f B. As we have observed, in every document there exists a set of characters that are segmented correctly by the previous step, denoted by CC seg,a set of characters with some noise attached to each, denoted by CC noise and a third set of merged characters due to a significant amount of noise in that characters area, denoted by CC merge. The purpose of this stage is to distinguish between the three sets: The first task is to obtain the members of CC merge. In every language or script, there are some structural rules which define basic features for a character. The written Hebraic text, used in our experiments, is called squared writing as most of the characters have approximately equal average width and height. Let H CC be the median height of the bounding boxes of the connected components of the predefined set CC, and let W i be the width of the bounding box of CC i. The set CC merge is defined by CC merge ={CC i jw i P H CC*a}, where a is an empirical constant. We show below how to distinguish between CC seg and CC noise. For each connected component, we create a reference image, which contains the low intensity pixels of the character. In a good character we expect only the boundary not to be included in the reference image, where in noisy character the noise is also brighter than the character intensity, thus will not be in the reference image as well. We compute R i, the reference image of CC i,

4 I. Bar-Yosef / Pattern Recognition Letters 26 (2005) Adaptive local method Fig. 4. (a) A character with some noise, (c) a character without noise (orig.) and (b,d) the character minus its reference image (diff.). i = {1,...,N}. Let D i be the distance image produced by applying the Distance Transform on R i within the bounding box of CC i. The distances of the edge pixels of CC i provide information about the quality of the character CC i as follows: uniform distances of the character edges according to D i imply a good character, while non-uniform distances of the edge pixels of CC i, from R i, imply a character with patches of noise. Fig. 4 shows two characters and the difference between the character and its reference image. The quality evaluation procedure is therefore: For each CC i, i =1,...,N: Let m i be the mean gray scale value of pixels belonging to CC i. Let R i be the reference image of CC i using m i as a local threshold: R i ¼ 1 if CC i 6 m i 0 otherwise Let Gstd be the global standard deviation of the distances created by the distance transform for all CC i, i =1,...,N (only the edge pixels). Let Lstd i be CC i Õs standard deviation of the distances created by applying the distance transform on R i. Every component CC i, with Lstd i 6 Gstd is classified as a well segmented character, and added to the set CC seg, the rest are classified as CC noise members. The members of CC noise and CC merge (defined above) will be processed using the adaptive local method presented in the following section. Even when a character is noisy or faded, the seed body of the character is easy to detect. This fact led us to adopt a region growing scheme in which we first detect the seed image of the characters, and then apply a growing process that expands the character to its final form. Since the binarization of the foreground objects is affected only by their local environment, we process information within the bounding box of each connected component of CC noise, CC merge. In the following two steps, we collect the foreground pixels by first finding a seed set of such pixels and then growing the set according to local neighborhood data Creating the seed image The first step in this stage is to derive for each component its seed image. If the component is in CC noise, then its seed image is R i, described in the previous section. Else, the component is in CC merge, then we use a pixel clustering algorithm based on the K-means algorithm (McQueen, 1967). Two clusters are considered, a foreground cluster and a background cluster, according to the gray level. After calculating the foreground and background clusters, we use the average gray level of the foreground cluster as a threshold to generate the seed image consisting of the pixels darker than the threshold The growing process The growing process is an iterative process, in which during each iteration a set of candidate pixels is observed. Each pixel from this set is tested whether it can join the foreground or not. The process is terminated when no pixel is added to the foreground. The algorithm goes as follows. Repeat until the foreground set does not change: Find all candidate pixels. The candidate pixels are background pixels which are 8-connected to the growing foreground. For each candidate pixel p, consider its 7 7 neighborhood: let M f be the average gray scale value of the foreground pixels in this window,

5 1172 I. Bar-Yosef / Pattern Recognition Letters 26 (2005) Figs. 6 and 7 show an input image and the produced binary image. 5. Experimental results and discussion Fig. 5. (a) A character with dark noise around it (original). (b) As can be seen, the dark ink is incorrectly considered as part of the character (binary). M b be the average gray scale value of the background pixels in this window. Assign p to the class whose average is closest to the gray level of p (according to M f and M b ). Fig. 6. Input image. The performance of our approach has been evaluated on a set of 30 Hebrew calligraphy manuscripts from 14th to 16th century 1 similar to the document in Fig. 1. The document size varies from to , where the over-sized documents were split into several images of roughly size, each containing an average of 200 characters, of approximately size. The results were evaluated by visual inspection, where in each document the percentage of correctly segmented characters was calculated (a correct character is a character which is not under or over-thresholded). In addition, we summarize the performance of the quality evaluation procedure (see Section 3): The average percentage of correctly segmented characters is 94%, where in a substantial set of the documents the average percentage reached up to 98%. Most of the problems occurred in documents where the character strokes had almost disappeared, and the accuracy of the adaptive local method was too sensitive to handle the rapid intensity changes. In documents which contained very dark ink stains connected to any character, additional structural rules are needed in order to obtain a noise free character (see Fig. 5 for an example). The set CC seg contained mostly very well segmented characters, and few characters with small patches of noise. 90% of the set CC noise are noisy characters, and the remaining 10% are good characters which were wrongly classified as a CC noise member. This means that from the non-merged characters that were refined using the refinement procedure, 10% did not need to be refined. Fig. 7. Binarized image. 1 The documents are taken from the archive of the School of Library, Archive and Information Studies, The Hebrew University.

6 I. Bar-Yosef / Pattern Recognition Letters 26 (2005) On average, in each document 25% of the components belong to CC merge, 15% belong to CC noise and 60% belong to CC seg. This means that on average, 40% of each documentõs characters, need to be refined. The results presented here show that for any document, a substantial set of its characters are thresholded correctly in the first global stage, and the remaining noisy characters are well identified by the evaluation procedure and are thresholded accurately by the local refinement method. Our algorithm was compared to the multi-stage binarization algorithm presented in (Bar-Yosef et al., 2004), in which first the image was thresholded using the a global method, and then a similar refining method was invoked on each connected component to produce the final accurate binary image. We compared only the results of the set CC seg for each document, which in (Bar-Yosef et al., 2004) was processed with the refining method: In cases where the characters had brighter regions or faded strokes due to intensity degradation, the algorithm presented in this paper performed better since the refining method was too accurate to handle the rapid intensity changes, while the CC seg members were correctly segmented. The computational complexity is strongly reduced since the refining method is very time consuming. 6. Future work We are now working on a generalization of the approach presented in this paper in order to make it robust and adequate to handle any type of text document, regardless of its condition and not restricted to any alphabet. Acknowledgment I would like to thank my advisers Prof. Klara Kedem and Prof. Itshak Dinstein for helping me with this paper. References Bar-Yosef, I., Kedem, K., Dinstien, I., Beit-Arie, M., Angle, E., Classification of Hebrew calligraphic handwrit ing styles: preliminary results. In: Proc. Internat. Workshop on Document Image Analysis for Libraries. pp Don, H.S., A noise attribute thresholding method for document image binarization. In: Proc. 3rd Internat. Conf. on Document Analysis and Recognition, Canada, pp Leedham, G., Varma, S., Patanakar, A., Govindaraju, V., Separating text and background in degraded document images a comparison of global thresholding techniques for multi-stage thresholding. In: Proc. Eighth Internat. Workshop on Frontiers in Handwriting Recognition. pp (thresholding Algorithms for Text/Background Seg). Liu, Y., Srihari, S.N., Document image binarization based on texture features. IEEE Trans. PAMI 19 (5), McQueen, J.B., Some methods of classification and analysis of multivariate observationsproc. 5th Berkeley Symposium in Mathematics, Statistics and Probability, vol. 1. University of California, Berkeley, USA, pp Negishi, H., Kato, J., Hase, H., Watanabe, T., Character extraction from noisy background for an automatic reference system. In: Proc. 5th Internat. Conf. Document Analysis and Recognition, India, pp Solihin, Y., Leedham, C.G., Integral ratio: A new class of global thresholding techniques for handwritten images. IEEE Trans. PAMI 21 (8), , pp Tan, C.L., Cao, R., Shen, P., Wang, Q., Chee, J., Chang, J., Removal of interfering strokes in double-sided document images. In: IEEE Workshop on the Application of Computer Vision, WACV2000, California, 4 6 December, pp

SEPARATING TEXT AND BACKGROUND IN DEGRADED DOCUMENT IMAGES A COMPARISON OF GLOBAL THRESHOLDING TECHNIQUES FOR MULTI-STAGE THRESHOLDING

SEPARATING TEXT AND BACKGROUND IN DEGRADED DOCUMENT IMAGES A COMPARISON OF GLOBAL THRESHOLDING TECHNIQUES FOR MULTI-STAGE THRESHOLDING SEPARATING TEXT AND BACKGROUND IN DEGRADED DOCUMENT IMAGES A COMPARISON OF GLOBAL THRESHOLDING TECHNIQUES FOR MULTI-STAGE THRESHOLDING GRAHAM LEEDHAM 1, SAKET VARMA 2, ANISH PATANKAR 2 and VENU GOVINDARAJU

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 Efficient Character Segmentation Based on VNP Algorithm

An Efficient Character Segmentation Based on VNP Algorithm Research Journal of Applied Sciences, Engineering and Technology 4(24): 5438-5442, 2012 ISSN: 2040-7467 Maxwell Scientific organization, 2012 Submitted: March 18, 2012 Accepted: April 14, 2012 Published:

More information

Case Study in Hebrew Character Searching

Case Study in Hebrew Character Searching Case Study in Hebrew Character Searching Irina Rabaev, Ofer Biller, Jihad El-Sana, Klara Kedem Department of Computer Science Ben-Gurion University Beer-Sheva, Israel rabaev,billero,el-sana,klara@cs.bgu.ac.il

More information

Scene Text Detection Using Machine Learning Classifiers

Scene Text Detection Using Machine Learning Classifiers 601 Scene Text Detection Using Machine Learning Classifiers Nafla C.N. 1, Sneha K. 2, Divya K.P. 3 1 (Department of CSE, RCET, Akkikkvu, Thrissur) 2 (Department of CSE, RCET, Akkikkvu, Thrissur) 3 (Department

More information

A Statistical approach to line segmentation in handwritten documents

A Statistical approach to line segmentation in handwritten documents A Statistical approach to line segmentation in handwritten documents Manivannan Arivazhagan, Harish Srinivasan and Sargur Srihari Center of Excellence for Document Analysis and Recognition (CEDAR) University

More information

Historical Handwritten Document Image Segmentation Using Background Light Intensity Normalization

Historical Handwritten Document Image Segmentation Using Background Light Intensity Normalization Historical Handwritten Document Image Segmentation Using Background Light Intensity Normalization Zhixin Shi and Venu Govindaraju Center of Excellence for Document Analysis and Recognition (CEDAR), State

More information

Robust Phase-Based Features Extracted From Image By A Binarization Technique

Robust Phase-Based Features Extracted From Image By A Binarization Technique IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 18, Issue 4, Ver. IV (Jul.-Aug. 2016), PP 10-14 www.iosrjournals.org Robust Phase-Based Features Extracted From

More information

Digital Image Processing. Prof. P.K. Biswas. Department of Electronics & Electrical Communication Engineering

Digital Image Processing. Prof. P.K. Biswas. Department of Electronics & Electrical Communication Engineering Digital Image Processing Prof. P.K. Biswas Department of Electronics & Electrical Communication Engineering Indian Institute of Technology, Kharagpur Image Segmentation - III Lecture - 31 Hello, welcome

More information

An ICA based Approach for Complex Color Scene Text Binarization

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

More information

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction

N.Priya. Keywords Compass mask, Threshold, Morphological Operators, Statistical Measures, Text extraction Volume, Issue 8, August ISSN: 77 8X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Combined Edge-Based Text

More information

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM

CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM CORRELATION BASED CAR NUMBER PLATE EXTRACTION SYSTEM 1 PHYO THET KHIN, 2 LAI LAI WIN KYI 1,2 Department of Information Technology, Mandalay Technological University The Republic of the Union of Myanmar

More information

A New Algorithm for Detecting Text Line in Handwritten Documents

A New Algorithm for Detecting Text Line in Handwritten Documents A New Algorithm for Detecting Text Line in Handwritten Documents Yi Li 1, Yefeng Zheng 2, David Doermann 1, and Stefan Jaeger 1 1 Laboratory for Language and Media Processing Institute for Advanced Computer

More information

AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE

AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE AN EFFICIENT BINARIZATION TECHNIQUE FOR FINGERPRINT IMAGES S. B. SRIDEVI M.Tech., Department of ECE sbsridevi89@gmail.com 287 ABSTRACT Fingerprint identification is the most prominent method of biometric

More information

Logical Templates for Feature Extraction in Fingerprint Images

Logical Templates for Feature Extraction in Fingerprint Images Logical Templates for Feature Extraction in Fingerprint Images Bir Bhanu, Michael Boshra and Xuejun Tan Center for Research in Intelligent Systems University of Califomia, Riverside, CA 9252 1, USA Email:

More information

Available online at ScienceDirect. Procedia Computer Science 45 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 45 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 45 (2015 ) 205 214 International Conference on Advanced Computing Technologies and Applications (ICACTA- 2015) Automatic

More information

Region-based Segmentation

Region-based Segmentation Region-based Segmentation Image Segmentation Group similar components (such as, pixels in an image, image frames in a video) to obtain a compact representation. Applications: Finding tumors, veins, etc.

More information

Restoring Ink Bleed-Through Degraded Document Images Using a Recursive Unsupervised Classification Technique

Restoring Ink Bleed-Through Degraded Document Images Using a Recursive Unsupervised Classification Technique Restoring Ink Bleed-Through Degraded Document Images Using a Recursive Unsupervised Classification Technique Drira Fadoua, Frank Le Bourgeois, and Hubert Emptoz LIRIS, INSA de LYON, Bâtiment Jules Verne,

More information

Time Stamp Detection and Recognition in Video Frames

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

More information

An Accurate and Efficient System for Segmenting Machine-Printed Text. Yi Lu, Beverly Haist, Laurel Harmon, John Trenkle and Robert Vogt

An Accurate and Efficient System for Segmenting Machine-Printed Text. Yi Lu, Beverly Haist, Laurel Harmon, John Trenkle and Robert Vogt An Accurate and Efficient System for Segmenting Machine-Printed Text Yi Lu, Beverly Haist, Laurel Harmon, John Trenkle and Robert Vogt Environmental Research Institute of Michigan P. O. Box 134001 Ann

More information

Binarization, character extraction, and writer identification of historical Hebrew calligraphy documents

Binarization, character extraction, and writer identification of historical Hebrew calligraphy documents IJDAR (2007) 9:89 99 DOI 10.1007/s10032-007-0041-5 ORIGINAL PAPER Binarization, character extraction, and writer identification of historical Hebrew calligraphy documents Itay Bar-Yosef Isaac Beckman Klara

More information

Automatic thresholding for defect detection

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

More information

Word Matching of handwritten scripts

Word Matching of handwritten scripts Word Matching of handwritten scripts Seminar about ancient document analysis Introduction Contour extraction Contour matching Other methods Conclusion Questions Problem Text recognition in handwritten

More information

Hidden Loop Recovery for Handwriting Recognition

Hidden Loop Recovery for Handwriting Recognition Hidden Loop Recovery for Handwriting Recognition David Doermann Institute of Advanced Computer Studies, University of Maryland, College Park, USA E-mail: doermann@cfar.umd.edu Nathan Intrator School of

More information

Color Image Segmentation

Color Image Segmentation Color Image Segmentation Yining Deng, B. S. Manjunath and Hyundoo Shin* Department of Electrical and Computer Engineering University of California, Santa Barbara, CA 93106-9560 *Samsung Electronics Inc.

More information

Reference Point Detection for Arch Type Fingerprints

Reference Point Detection for Arch Type Fingerprints Reference Point Detection for Arch Type Fingerprints H.K. Lam 1, Z. Hou 1, W.Y. Yau 1, T.P. Chen 1, J. Li 2, and K.Y. Sim 2 1 Computer Vision and Image Understanding Department Institute for Infocomm Research,

More information

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

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

More information

Recognition-based Segmentation of Nom Characters from Body Text Regions of Stele Images Using Area Voronoi Diagram

Recognition-based Segmentation of Nom Characters from Body Text Regions of Stele Images Using Area Voronoi Diagram Author manuscript, published in "International Conference on Computer Analysis of Images and Patterns - CAIP'2009 5702 (2009) 205-212" DOI : 10.1007/978-3-642-03767-2 Recognition-based Segmentation of

More information

Unique Journal of Engineering and Advanced Sciences Available online: Research Article

Unique Journal of Engineering and Advanced Sciences Available online:  Research Article ISSN 2348-375X Unique Journal of Engineering and Advanced Sciences Available online: www.ujconline.net Research Article DETECTION AND RECOGNITION OF THE TEXT THROUGH CONNECTED COMPONENT CLUSTERING AND

More information

Text Line Detection in Corrupted and Damaged Historical Manuscripts

Text Line Detection in Corrupted and Damaged Historical Manuscripts Text Line Detection in Corrupted and Damaged Historical Manuscripts Irina Rabaev, Ofer Biller, Jihad El-Sana, Klara Kedem Department of Computer Science Ben-Gurion University Beer-Sheva, Israel rabaev,billero,el-sana,klara@cs.bgu.ac.il

More information

Writer Recognizer for Offline Text Based on SIFT

Writer Recognizer for Offline Text Based on SIFT 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. 4, Issue. 5, May 2015, pg.1057

More information

A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script

A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script A Survey of Problems of Overlapped Handwritten Characters in Recognition process for Gurmukhi Script Arwinder Kaur 1, Ashok Kumar Bathla 2 1 M. Tech. Student, CE Dept., 2 Assistant Professor, CE Dept.,

More information

Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script

Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script Galaxy Bansal Dharamveer Sharma ABSTRACT Segmentation of handwritten words is a challenging task primarily because of structural features

More information

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

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

More information

Fingerprint Image Enhancement Algorithm and Performance Evaluation

Fingerprint Image Enhancement Algorithm and Performance Evaluation Fingerprint Image Enhancement Algorithm and Performance Evaluation Naja M I, Rajesh R M Tech Student, College of Engineering, Perumon, Perinad, Kerala, India Project Manager, NEST GROUP, Techno Park, TVM,

More information

Slant Correction using Histograms

Slant Correction using Histograms Slant Correction using Histograms Frank de Zeeuw Bachelor s Thesis in Artificial Intelligence Supervised by Axel Brink & Tijn van der Zant July 12, 2006 Abstract Slant is one of the characteristics that

More information

Clutter Noise Removal in Binary Document Images

Clutter Noise Removal in Binary Document Images 2009 10th International Conference on Document Analysis and Recognition Clutter Noise Removal in Binary Document Images Mudit Agrawal and David Doermann Institute of Advanced Computer Studies University

More information

Texture Image Segmentation using FCM

Texture Image Segmentation using FCM Proceedings of 2012 4th International Conference on Machine Learning and Computing IPCSIT vol. 25 (2012) (2012) IACSIT Press, Singapore Texture Image Segmentation using FCM Kanchan S. Deshmukh + M.G.M

More information

Robust line segmentation for handwritten documents

Robust line segmentation for handwritten documents Robust line segmentation for handwritten documents Kamal Kuzhinjedathu, Harish Srinivasan and Sargur Srihari Center of Excellence for Document Analysis and Recognition (CEDAR) University at Buffalo, State

More information

EUSIPCO

EUSIPCO EUSIPCO 2013 1569743917 BINARIZATION OF HISTORICAL DOCUMENTS USING SELF-LEARNING CLASSIFIER BASED ON K-MEANS AND SVM Amina Djema and Youcef Chibani Speech Communication and Signal Processing Laboratory

More information

Computer Analysis of the Dead Sea Scroll Manuscripts

Computer Analysis of the Dead Sea Scroll Manuscripts TEL AVIV UNIVERSITY RAYMOND AND BEVERLY SACKLER FACULTY OF EXACT SCIENCES BLAVATNIK SCHOOL OF COMPUTER SCIENCE Computer Analysis of the Dead Sea Scroll Manuscripts Thesis submitted in partial fulfillment

More information

Indian Multi-Script Full Pin-code String Recognition for Postal Automation

Indian Multi-Script Full Pin-code String Recognition for Postal Automation 2009 10th International Conference on Document Analysis and Recognition Indian Multi-Script Full Pin-code String Recognition for Postal Automation U. Pal 1, R. K. Roy 1, K. Roy 2 and F. Kimura 3 1 Computer

More information

Separation of Overlapping Text from Graphics

Separation of Overlapping Text from Graphics Separation of Overlapping Text from Graphics Ruini Cao, Chew Lim Tan School of Computing, National University of Singapore 3 Science Drive 2, Singapore 117543 Email: {caorn, tancl}@comp.nus.edu.sg Abstract

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

A Real-Time License Plate Localization Method Based on Vertical Edge Analysis

A Real-Time License Plate Localization Method Based on Vertical Edge Analysis Proceedings of the Federated Conference on Computer Science and Information Systems pp. 149 154 ISBN 978-83-60810-51-4 A Real-Time License Plate Localization Method Based on Vertical Edge Analysis Peter

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

GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES

GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES GENERAL AUTOMATED FLAW DETECTION SCHEME FOR NDE X-RAY IMAGES Karl W. Ulmer and John P. Basart Center for Nondestructive Evaluation Department of Electrical and Computer Engineering Iowa State University

More information

Connected Component Analysis and Change Detection for Images

Connected Component Analysis and Change Detection for Images Connected Component Analysis and Change Detection for Images Prasad S.Halgaonkar Department of Computer Engg, MITCOE Pune University, India Abstract Detection of the region of change in images of a particular

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

Critique: Efficient Iris Recognition by Characterizing Key Local Variations

Critique: Efficient Iris Recognition by Characterizing Key Local Variations Critique: Efficient Iris Recognition by Characterizing Key Local Variations Authors: L. Ma, T. Tan, Y. Wang, D. Zhang Published: IEEE Transactions on Image Processing, Vol. 13, No. 6 Critique By: Christopher

More information

A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS

A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS A NOVEL BINARIZATION METHOD FOR QR-CODES UNDER ILL ILLUMINATED LIGHTINGS N.POOMPAVAI 1 Dr. R. BALASUBRAMANIAN 2 1 Research Scholar, JJ College of Arts and Science, Bharathidasan University, Trichy. 2 Research

More information

Handwritten Devanagari Character Recognition Model Using Neural Network

Handwritten Devanagari Character Recognition Model Using Neural Network Handwritten Devanagari Character Recognition Model Using Neural Network Gaurav Jaiswal M.Sc. (Computer Science) Department of Computer Science Banaras Hindu University, Varanasi. India gauravjais88@gmail.com

More information

On-line handwriting recognition using Chain Code representation

On-line handwriting recognition using Chain Code representation On-line handwriting recognition using Chain Code representation Final project by Michal Shemesh shemeshm at cs dot bgu dot ac dot il Introduction Background When one preparing a first draft, concentrating

More information

Motion Detection Algorithm

Motion Detection Algorithm Volume 1, No. 12, February 2013 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Motion Detection

More information

Journal of Industrial Engineering Research

Journal of Industrial Engineering Research IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Mammogram Image Segmentation Using voronoi Diagram Properties Dr. J. Subash

More information

Topic 4 Image Segmentation

Topic 4 Image Segmentation Topic 4 Image Segmentation What is Segmentation? Why? Segmentation important contributing factor to the success of an automated image analysis process What is Image Analysis: Processing images to derive

More information

Binarization of Color Character Strings in Scene Images Using K-means Clustering and Support Vector Machines

Binarization of Color Character Strings in Scene Images Using K-means Clustering and Support Vector Machines 2011 International Conference on Document Analysis and Recognition Binarization of Color Character Strings in Scene Images Using K-means Clustering and Support Vector Machines Toru Wakahara Kohei Kita

More information

Mobile Camera Based Calculator

Mobile Camera Based Calculator Mobile Camera Based Calculator Liwei Wang Jingyi Dai Li Du Department of Electrical Engineering Department of Electrical Engineering Department of Electrical Engineering Stanford University Stanford University

More information

Histogram and watershed based segmentation of color images

Histogram and watershed based segmentation of color images Histogram and watershed based segmentation of color images O. Lezoray H. Cardot LUSAC EA 2607 IUT Saint-Lô, 120 rue de l'exode, 50000 Saint-Lô, FRANCE Abstract A novel method for color image segmentation

More information

Engineering Problem and Goal

Engineering Problem and Goal Engineering Problem and Goal Engineering Problem: Traditional active contour models can not detect edges or convex regions in noisy images. Engineering Goal: The goal of this project is to design an algorithm

More information

Computer Vision & Digital Image Processing. Image segmentation: thresholding

Computer Vision & Digital Image Processing. Image segmentation: thresholding Computer Vision & Digital Image Processing Image Segmentation: Thresholding Dr. D. J. Jackson Lecture 18-1 Image segmentation: thresholding Suppose an image f(y) is composed of several light objects on

More information

Automatic Shadow Removal by Illuminance in HSV Color Space

Automatic Shadow Removal by Illuminance in HSV Color Space Computer Science and Information Technology 3(3): 70-75, 2015 DOI: 10.13189/csit.2015.030303 http://www.hrpub.org Automatic Shadow Removal by Illuminance in HSV Color Space Wenbo Huang 1, KyoungYeon Kim

More information

OPTIMIZING A VIDEO PREPROCESSOR FOR OCR. MR IBM Systems Dev Rochester, elopment Division Minnesota

OPTIMIZING A VIDEO PREPROCESSOR FOR OCR. MR IBM Systems Dev Rochester, elopment Division Minnesota OPTIMIZING A VIDEO PREPROCESSOR FOR OCR MR IBM Systems Dev Rochester, elopment Division Minnesota Summary This paper describes how optimal video preprocessor performance can be achieved using a software

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

A New iterative triclass thresholding technique for Image Segmentation

A New iterative triclass thresholding technique for Image Segmentation A New iterative triclass thresholding technique for Image Segmentation M.M.Raghavendra Asst Prof, Department of ECE Brindavan Institute of Technology & Science Kurnool, India E-mail: mmraghavendraece@gmail.com

More information

Word Slant Estimation using Non-Horizontal Character Parts and Core-Region Information

Word Slant Estimation using Non-Horizontal Character Parts and Core-Region Information 2012 10th IAPR International Workshop on Document Analysis Systems Word Slant using Non-Horizontal Character Parts and Core-Region Information A. Papandreou and B. Gatos Computational Intelligence Laboratory,

More information

ISSN Vol.03,Issue.02, June-2015, Pages:

ISSN Vol.03,Issue.02, June-2015, Pages: WWW.IJITECH.ORG ISSN 2321-8665 Vol.03,Issue.02, June-2015, Pages:0077-0082 Evaluation of Ancient Documents and Images by using Phase Based Binarization K. SRUJANA 1, D. C. VINOD R KUMAR 2 1 PG Scholar,

More information

Transition Region-Based Thresholding using Maximum Entropy and Morphological Operations

Transition Region-Based Thresholding using Maximum Entropy and Morphological Operations Transition Region-Based Thresholding using Maximum Entropy and Morphological Operations M.Chandrakala 1, P. Durga Devi 2 Abstract Thresholding method based on transition region is a new approach for image

More information

Enhanced Image. Improved Dam point Labelling

Enhanced Image. Improved Dam point Labelling 3rd International Conference on Multimedia Technology(ICMT 2013) Video Text Extraction Based on Stroke Width and Color Xiaodong Huang, 1 Qin Wang, Kehua Liu, Lishang Zhu Abstract. Video text can be used

More information

A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis

A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis A System to Retrieve Text/Symbols from Color Maps using Connected Component and Skeleton Analysis Partha Pratim Roy 1, Eduard Vazquez 1, Josep Lladós 1, Ramon Baldrich 1, and Umapada Pal 2 1 Computer Vision

More information

Image segmentation. Stefano Ferrari. Università degli Studi di Milano Methods for Image Processing. academic year

Image segmentation. Stefano Ferrari. Università degli Studi di Milano Methods for Image Processing. academic year Image segmentation Stefano Ferrari Università degli Studi di Milano stefano.ferrari@unimi.it Methods for Image Processing academic year 2017 2018 Segmentation by thresholding Thresholding is the simplest

More information

Keywords: Thresholding, Morphological operations, Image filtering, Adaptive histogram equalization, Ceramic tile.

Keywords: Thresholding, Morphological operations, Image filtering, Adaptive histogram equalization, Ceramic tile. Volume 3, Issue 7, July 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Blobs and Cracks

More information

Random spatial sampling and majority voting based image thresholding

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

More information

Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes

Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes 2009 10th International Conference on Document Analysis and Recognition Fine Classification of Unconstrained Handwritten Persian/Arabic Numerals by Removing Confusion amongst Similar Classes Alireza Alaei

More information

SOME stereo image-matching methods require a user-selected

SOME stereo image-matching methods require a user-selected IEEE GEOSCIENCE AND REMOTE SENSING LETTERS, VOL. 3, NO. 2, APRIL 2006 207 Seed Point Selection Method for Triangle Constrained Image Matching Propagation Qing Zhu, Bo Wu, and Zhi-Xiang Xu Abstract In order

More information

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation

A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation A System for Joining and Recognition of Broken Bangla Numerals for Indian Postal Automation K. Roy, U. Pal and B. B. Chaudhuri CVPR Unit; Indian Statistical Institute, Kolkata-108; India umapada@isical.ac.in

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

Adaptive Local Thresholding for Fluorescence Cell Micrographs

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

More information

Textural Features for Image Database Retrieval

Textural Features for Image Database Retrieval Textural Features for Image Database Retrieval Selim Aksoy and Robert M. Haralick Intelligent Systems Laboratory Department of Electrical Engineering University of Washington Seattle, WA 98195-2500 {aksoy,haralick}@@isl.ee.washington.edu

More information

Image Segmentation Based on. Modified Tsallis Entropy

Image Segmentation Based on. Modified Tsallis Entropy Contemporary Engineering Sciences, Vol. 7, 2014, no. 11, 523-529 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2014.4439 Image Segmentation Based on Modified Tsallis Entropy V. Vaithiyanathan

More information

Segmentation of Images

Segmentation of Images Segmentation of Images SEGMENTATION If an image has been preprocessed appropriately to remove noise and artifacts, segmentation is often the key step in interpreting the image. Image segmentation is a

More information

Triangular Mesh Segmentation Based On Surface Normal

Triangular Mesh Segmentation Based On Surface Normal ACCV2002: The 5th Asian Conference on Computer Vision, 23--25 January 2002, Melbourne, Australia. Triangular Mesh Segmentation Based On Surface Normal Dong Hwan Kim School of Electrical Eng. Seoul Nat

More information

Comparative Study of Hand Gesture Recognition Techniques

Comparative Study of Hand Gesture Recognition Techniques Reg. No.:20140316 DOI:V2I4P16 Comparative Study of Hand Gesture Recognition Techniques Ann Abraham Babu Information Technology Department University of Mumbai Pillai Institute of Information Technology

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

Medical images, segmentation and analysis

Medical images, segmentation and analysis Medical images, segmentation and analysis ImageLab group http://imagelab.ing.unimo.it Università degli Studi di Modena e Reggio Emilia Medical Images Macroscopic Dermoscopic ELM enhance the features of

More information

International Journal of Advance Research in Engineering, Science & Technology

International Journal of Advance Research in Engineering, Science & Technology Impact Factor (SJIF): 4.542 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 4, Issue 4, April-2017 A Simple Effective Algorithm

More information

Identifying and Reading Visual Code Markers

Identifying and Reading Visual Code Markers O. Feinstein, EE368 Digital Image Processing Final Report 1 Identifying and Reading Visual Code Markers Oren Feinstein, Electrical Engineering Department, Stanford University Abstract A visual code marker

More information

Available online at ScienceDirect. Procedia Computer Science 96 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 96 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 96 (2016 ) 1409 1417 20th International Conference on Knowledge Based and Intelligent Information and Engineering Systems,

More information

INTELLIGENT transportation systems have a significant

INTELLIGENT transportation systems have a significant INTL JOURNAL OF ELECTRONICS AND TELECOMMUNICATIONS, 205, VOL. 6, NO. 4, PP. 35 356 Manuscript received October 4, 205; revised November, 205. DOI: 0.55/eletel-205-0046 Efficient Two-Step Approach for Automatic

More information

I. INTRODUCTION. Figure-1 Basic block of text analysis

I. INTRODUCTION. Figure-1 Basic block of text analysis ISSN: 2349-7637 (Online) (RHIMRJ) Research Paper Available online at: www.rhimrj.com Detection and Localization of Texts from Natural Scene Images: A Hybrid Approach Priyanka Muchhadiya Post Graduate Fellow,

More information

Moving Object Segmentation Method Based on Motion Information Classification by X-means and Spatial Region Segmentation

Moving Object Segmentation Method Based on Motion Information Classification by X-means and Spatial Region Segmentation IJCSNS International Journal of Computer Science and Network Security, VOL.13 No.11, November 2013 1 Moving Object Segmentation Method Based on Motion Information Classification by X-means and Spatial

More information

MURDOCH RESEARCH REPOSITORY.

MURDOCH RESEARCH REPOSITORY. MURDOCH RESEARCH REPOSITORY http://researchrepository.murdoch.edu.au This is the author's final version of the work, as accepted for publication following peer review but without the publisher's layout

More information

Including the Size of Regions in Image Segmentation by Region Based Graph

Including the Size of Regions in Image Segmentation by Region Based Graph International Journal of Emerging Engineering Research and Technology Volume 3, Issue 4, April 2015, PP 81-85 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) Including the Size of Regions in Image Segmentation

More information

Color-Texture Segmentation of Medical Images Based on Local Contrast Information

Color-Texture Segmentation of Medical Images Based on Local Contrast Information Color-Texture Segmentation of Medical Images Based on Local Contrast Information Yu-Chou Chang Department of ECEn, Brigham Young University, Provo, Utah, 84602 USA ycchang@et.byu.edu Dah-Jye Lee Department

More information

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

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

More information

CS6716 Pattern Recognition

CS6716 Pattern Recognition CS6716 Pattern Recognition Prototype Methods Aaron Bobick School of Interactive Computing Administrivia Problem 2b was extended to March 25. Done? PS3 will be out this real soon (tonight) due April 10.

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

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

Object Extraction Using Image Segmentation and Adaptive Constraint Propagation

Object Extraction Using Image Segmentation and Adaptive Constraint Propagation Object Extraction Using Image Segmentation and Adaptive Constraint Propagation 1 Rajeshwary Patel, 2 Swarndeep Saket 1 Student, 2 Assistant Professor 1 2 Department of Computer Engineering, 1 2 L. J. Institutes

More information

An Adaptive Threshold LBP Algorithm for Face Recognition

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

More information