IMAGE THRESHOLDING OF HISTORICAL DOCUMENTS: APPLICATION TO THE JOAQUIM NABUCO S FILE

Size: px
Start display at page:

Download "IMAGE THRESHOLDING OF HISTORICAL DOCUMENTS: APPLICATION TO THE JOAQUIM NABUCO S FILE"

Transcription

1 IMAGE THRESHOLDING OF HISTORICAL DOCUMENTS: APPLICATION TO THE JOAQUIM NABUCO S FILE Carlos A.B.Mello 1, Ángel Sanchez 2, Adriano L.I.Oliveira 3 Abstract This paper presents a study on thresholding algorithms applied to images of historical documents. Thresholding methods are used to create monochromatic images. The generation of bi-level images of this kind of documents increases the compression rate and make them more easily available for Internet download. We also introduce a new thresholding algorithm which achieves high quality monochromatic images in some extreme situations. 1. Introduction This paper describes some advances achieved in the ProHist Project [25] which aims to define new algorithms for image processing of historical documents. The project is a cooperation between University of Pernambuco, Brazil, and University Rey Juan Carlos, Spain. The aim is to preserve some old documents and to develop different Image Processing tools to make easier the diffusion of historical documents. Currently, the project is being developed using three databases. One of them is composed by documents from the end of the nineteenth century and beginning of the twentieth century. This particular archive contains letters, documents and postcards of Joaquim Nabuco held by the Joaquim Nabuco Foundation. More than 6,500 documents and 30,000 pages are part of this documental patrimony which is analyzed in this work. Joaquim Nabuco (b.1861-d.1910) was one of the most important persons of Brazilian s history as he was statesman, writer, diplomat, and one of the key figures in the campaign for freeing black slaves in Brazil. He was also Brazilian ambassador to London. Fig. 1 presents some sample documents (in greyscale) from the complete file. One of the most difficult situations to deal is shown in Fig. 1-right as we have a document written on both sides of the paper and the ink has transposed from one side to the other provoking a very hard interference. Human visual system can separate both sides but this is not a simple task for computing systems. Fig. 2 presents a zooming into a document with back-to-front interference and the result after the application of a common thresholding algorithm. As one can see, the information is completely lost in the bi-level version. For preservation purposes, the documents are digitized in true colour at 200 dpi resolution and stored in JPEG format with 1% of loss. This was considered by the Joaquim Nabuco Foundation 1 Computing Systems Department, University of Pernambuco, Brazil, cabm@dsc.upe.br 2 ESCET, Rey Juan Carlos University, Madrid, Spain, angel.sanchez@urjc.es 3 Computing Systems Department, University of Pernambuco, Brazil, adriano@dsc.upe.br

2 document specialists a good quality/compression rate relation. Thus, those digitized images are stored in DVD s for preservation means. Even in JPEG, each image occupies in average 400 Kb. Fig. 1. Samples from Joaquim Nabuco s file: (left) a type written document and (right) a handwritten letter. Fig. 2. (left) Zoom into a sample document written on both sides of the paper and (right) its bi-level version generated by an image processing commercial tool with its default settings. For diffusion purposes, one possible solution is the generation of black-and-white images. This decreases the size of the files and also allows the use of specific compression algorithms. Different thresholding algorithms were tested in order to produce high quality monochromatic images. It is the process to convert an image from true colour or greyscale to monochromatic (also called as bilevel). This is the first step in several image processing applications as for Optical Character Recognition (OCR) or for compression schemes. A threshold intensity (or cut-off) value is defined and the colours above it are converted to white while the colours below it are converted to black. Most part of image processing commercial software tools contain thresholding algorithms implemented in it. The major problem is to define the correct cut-off value appropriate in each specific document. It is unacceptable to manually search for this value for each image. Several adaptive algorithms try to solve the thresholding problem. This paper presents an analysis of the use of some well-known thresholding algorithms when applied to different kind of images of historical documents. We also propose a new algorithm that is specifically suited to this type of images. 2. Proposed Thresholding Algorithm There are several algorithms in literature for thresholding purposes [17]. We present here the results of the application of some of them in the document of Fig.1 top-right (the one with back-to-front interference). The algorithms presented are: thresholding by mean grey level [17], percentage of

3 black pixels [17], two peaks [17], iterative selection [19], Pun [18], Kapur et al [6], Johannsen [5], Li-Lee [11], Wu-Lu [22], Renyi [20], Brink [8], Minimum Thresholding [9], Fisher [1], Kittler and Illingworth algorithm [24], Otsu [16], C Means [4], Huang [3], Yager [23], and Ye-Danielsson [2]. Fig. 3 presents the above mentioned algorithms applied to the sample document of Fig. 1-right. It can be observed that the performance of some algorithms was very poor as some images are completely black or white, indicating a very high misclassification rate. Even the best images present noise due to the ink by both sides of the paper. This justifies the need to create a new thresholding algorithm for these specific documents. Fig. 3. Application of thresholding algorithms in the document of Fig. 1-right with back-to-front interference. Our approach considers the entropy feature. Entropy [21] is a measure of the information content. In Information Theory, it is assumed that if there are n possible symbols s i which occur with probabilities p(s i ), the entropy H associated with the source S of symbols is: H( S) = n i= 0 p[ s ]log( p[ i s i where H(S) can be measured in bits/symbols. Although the logarithmic base is not defined, authors in references [7] and [10] analyze that changes in this base do not affect the concept of entropy as it was explored in [13]. First, the new thresholding algorithm scans the image in search for the most frequent greyscale value t. As we are working with images of letters and documents, it is correct to suppose that this colour belongs to the paper. This value is used as an initial threshold for the evaluation of two measures Hb and Hw as: Hb = t i= 0 p[ i]log( p[ i]) and Hw = p[ i]log( p[ i]) (1) where p[i] is the probability of pixel i with colour colour[i] is in the image. This logarithmic base is taken as the area of the image. Hb and Hw can be seen as projections of the entropy H. 255 ]) i= t + 1 Using the values of Hw and Hb, the entropy, H, of the image is evaluated as their sum:

4 H = Hw+ Hb. (2) Based on the value of H, three classes of documents were identified. We define two multiplicative factors, as follows: H 0.25 (documents with few parts of text or very faded ink), then mw = 2 and mb = 3; 0.25 < H < 0.30 (the most common cases), then mw = 1 and mb = 2.6; H 0.30 (documents with many black areas), then mw = mb = 1. These values of mw and mb were found empirically after several experiments where the hit rate of OCR tools [14] in typed documents defined the correct values of the parameters. Next, a threshold value th is defined as: th = mw. Hw + mb. Hb. (3) The image is scanned again and each pixel i with colour greylevel[i] is turned to white if: ( greylevel[ i]/ 256) th. (4) Otherwise, its original colour remains the same (to generate a new greyscale image but with a white background) or it is turned to black (thus generating a bi-level image). This is called the segmentation condition. Fig. 4-left presents the bi-level image generated by the new algorithm for the document showed in Fig. 2-left. One can see that some noise still remains. The threshold value th defined by the proposed entropy-based algorithm is not always the best value. In order to adjust this value, a receiver operating characteristic (ROC) curve from Detection Theory [15] is used. This is generally used in medical analysis or in computer biometrics where some tests can generate true positives (TP), false positives (FP), true negatives (TN) and false negatives (FN) answers. For thresholding applications, these principles can be easily adapted as one can see the TP as the ink pixels correctly classified as object, FP represents background elements classified as object, and so on. A receiver operating characteristic (ROC) curve shows the relationship between probability of detection (PD) and probability of false alarm (PFA) for different threshold values. The probability of detection is the probability of correctly detecting an intruder user. The probability of false alarm is the probability of declaring a user to be an intruder when he/she is a registered user. The detection threshold is systematically changed to examine the performance of the model for different thresholds. The use of different threshold values will produce different classifiers with respective PD and PF parameters. By plotting PD x PFA for different threshold values, we obtain the ROC curves. The new proposed algorithm starts with the application of the previous entropy-based algorithm. The initial threshold value th is used to define a binary matrix M with the same size of the input image. Each cell of this matrix is set to true if the corresponding pixel in the input image IM is equal to th. This produces the PD versus PFA curve (or ROC curve) according to the Algorithm 1. For historical images, the ROC curve defined by this algorithm is a step like function which has its maximum values equal to 1 for both axes. Different threshold values define different ROC curves. Fig. 4-right presents the result of the ROC correction applied to the document of Fig. 2-left. Fig. 5 presents the PD versus PFA curve for the sample image of Fig. 2-left. For this document, we have th = 104 and PFA is equal to 1 when PD is The final image can be seen in Fig. 7-left.

5 Algorithm 1: Computation of PD and PDA vectors. n 1 i=1..nrow j=1..ncol (IM(i,j)=th); //number of true elements in M n 0 i=1..nrow j=1..ncol (IM(i,j)th); //number of false elements in M for t = 0 to 255 PD(t) i=1..nrow j=1..ncol (IM(i,j)>t and M(i,j))/n 1 ; PFA(t) i=1..nrow j=1..ncol (IM(i,j)>t and M(i,j))/n 0 ; end for Fig. 4. Thresholded image of Fig. 2-left generated by the new algorithm (left) without ROC correction and (right) with it. Fig. 5. PD versus PFA curve. For th=104, PD = 0.758, and PFA = 1. As PD is less than 0.9, the value of th must be decreased. It was observed in the handwritten documents that the percentage of ink is about 10% of the complete image area. Therefore, the correct ROC curve must grow to 1 when PD values about 0.9. For this, different values of parameter th must be used. This creates different types of M matrices leading to new PD versus PFA curves. If the curve grows to 1 with PD less than 0.9, then the initial th must decrease; otherwise, it must increase. Fig. 6 presents some resulting images for different th and PD values which turns PFA equals to 1, starting from the initial th=104, and PD= Obviously, the minimum value of th is 0 and its maximum value is Results It is presented in Fig. 7 the result of the application of the algorithm in the document of Fig. 1-right without and with the correction by ROC curves. For a quantitative evaluation of we generated a bilevel image of document of Fig. 1-right where the pixels of the background were turned to white manually. All the noise was eliminated creating a clean image of the document (called reference image). This is the correct final image that we would be looking for with the application of the thresholding algorithms. This allows us to analyze the performance of all the thresholding algorithms tested before (Fig. 3). For the evaluation of the algorithms, we compare pixel-by-pixel the reference image with the images generated by the algorithms, evaluating the values of TP, TN, FP and FN rates. It is common to express these values in terms of precision, recall and accuracy [12]. However, these measures are not suitable for our analysis. They consider that an image with

6 no pixel classified as ink (a completely white image) has a high precision rate as most part of the document is really white (the paper). This makes difficult a correct analysis of the process. A variation defined in [12] consider the measure of precision and recall based on the number of words detected but this makes necessary a manual counting of the words which has a high cost. Fig. 6. Bi-level images generated by different threshold values (th) and the corresponding PD value for which PFA turns equal to 1: (left) th = 104, PD = 0.758, (center-left) th = 90, PD = , (center-right) th = 80, PD = and (right) th = 70, PD = Fig. 7. (left) Document of Fig. 1-left in more details and its bi-level image generated by the new algorithm (center) without (th = 83) and (right) with ROC correction (th = 68). Table 1 lists the values found allowing a better comparison between the algorithms. The images analyzed are the ones presented in Fig. 3. We are looking for the algorithm that achieved the best TP and TN rate (i.e., the algorithm that had a better classification for the ink and the paper). The conclusion is taken based on the average between TP and TN rates (called Average Hit Rate in Table 1). The best average indicates the best algorithm. For example, Johannsen algorithm achieved a TP rate of 100%. But this happened because the image generated was completely black. So the black pixels were all correctly classified. However, the classification of the white pixels (paper) is very low, indicating a very high error rate. The best performance in average was found in our new proposal; it had the higher average hit rate analysing both ink and paper classification. 4. Conclusions This paper introduced an entropy-based thresholding algorithm for images of historical documents. The algorithm defines an initial threshold value which is adjusted by the use of ROC curves. This adjustment generates a new threshold value thus producing better quality bi-level images. The method is quite suitable when applied to documents written on both sides of the paper, presenting back-to-front interference. By visual inspection, the binary images are far better than the ones

7 produced by others well-known algorithms. Using an analysis of the TP and TN rates we can compare the performance of our method with other classical thresholding algorithms. Table 1. Comparison of the algorithms applied to the image of Fig. 1-left using precision, recall and accuracy Algorithm TP rate TN rate FP rate FN rate Average Hit rate Brink 100% 2.98% 0% 97,01% 51.49% Fisher 99.78% 92,65% 0.2% 7.34% 96.25% C Means 99.75% 93.56% 0.25% 6.44% 96.66% Huang 99.78% 92.66% 0.21% 7.33% 96.22% Yager 100% 3.13% 0% 96.86% 51.56% Iterative Selection 99.80% 92.34% 0.20% 7.65% 96.07% Johannsen 100% 2.99% 0% 97.01% 51.50% Kapur 99.85% 90.99% 0.15% 9.01% 90.92% Kittler 0% 100% 100% 0% 50% Li-Lee 100% 2.80% 0% 97.19% 51.40% Mean Gray Level 99.99% 74,03% 0.01% 25.97% 87.01% Minimum Error 99.35% 97.42% 0.65% % Otsu 99.78% 92.66% 0.21% 7.33% 96.22% Percentage of Black 97.96% 98.74% 2.04% 1.26% 98.35% Pun 100% 53.25% 0% 46.75% 76.62% Renyi 100% 48.12% 0% 51.88% 74.06% Two Peaks 100% 39.75% 0% 60.25% 69.88% Wu-Lu 99.51% 96.41% 0.48% 3.59% 97.96% Ye-Danielsson 99.80% 92.34% 0.20% 7.65% 96.07% New Algorithm without ROC 99.52% 96.41% 0.48% 3.58% 97.96% New Algorithm with ROC 99.01% 98.62% 0.98% 1.38% 98.82% The monochromatic images can be used to make files of thousand of historical documents more easily accessible even through mobile devices which have slower connections. The compression rate is about 15:1 when compared the storage of the greyscale image in JPEG and the bi-level version in GIF. As future work, we propose a detailed quantitative analysis of the developed thresholding algorithm using other different digitized historical documents. Due to the achieved compression rates of about 15:1 with this algorithm, an interesting future application of this work would also be to make accessible thousands of historical documents using mobile devices like PDAs. Acknowledgments This research is partially sponsored by CNPq, FACEPE, UPE and Agencia Española de Cooperación Internacional (AECI) contract no. A/2948/ References [1] CHANG, M.S. et al., Improved binarization algorithm for document image by histogram and edge detection, in: Intern. Conf.on Document Analysis and Recognition, pp , Canada, [2] GLASBYE, C.A., An Analysis of Histogram-Based Thresholding Algorithm, in: Graphical Models and Image Processing, 55(6), , Nov [3] HUANG, L.K. and WANG, M.J., Image Thresholding by Minimizing the Measures of Fuzziness, in: Pattern Recognition, 28(1), pp , Jan, 1995.

8 [4] JAWAHAR, C., BISWAS, P. and RAY, K., Investigations on Fuzzy Thresholding Based on Fuzzy Clustering, in: Pattern Recognition, 30(10), pp , Oct, [5] JOHANNSEN, G. and BILLE, J., A Threshold Selection Method using Information Measures, in: Proceedings, 6th Int. Conf. Pattern Recognition, Munich, Germany, pp , [6] KAPUR, J.N. et al. A New Method for Gray-Level Picture Thresholding using the Entropy of the Histogram, in: Computer Vision, Graphics and Image Processing, 29(3), [7] KAPUR, J. N., Measures of Information and their Applications, John Wiley and Sons, [8] KATZ, S.W. and BRINK, A.D., Segmentation of Chromosome Images, in: IEEE COMSIG93, pp 85-90, [9] KITTLER, J. and ILLINGWORTH, J. Minimum Error Thresholding, in: Pattern Recognition, 19(1), pp 41-47, [10] KULLBACK, S. Information Theory and Statistics.Dover Publications, Inc [11] LI, C.H. and LE, C.K., Minimum Cross Entropy Thresholding, in: Pattern Recognition, v.26 (4), pp , [12] TAN, C.L., CAO, R. and SHEN, P. Restoration of archival documents using a wavelet technique, in: IEEE Transactions on Pattern Analysis and Machine Intelligence, 2002, pp [13] MELLO, C.A.B. A New Entropy and Logarithmic Based Binarization Algorithm for Grayscale Images, in: IASTED VIIP 2004, Hawaii, USA, [14] MELLO, C.A.B. and LINS, R.D. A Comparative Study on OCR Tools, in: Vision Interface 99, Canada, [15] MCMILLAN, N.A., CREELMAN, C.D. Detection Theory. LEA Publishing, [16] OTSU, N. A threshold selection method from gray-level histogram, in: Trans on Syst., Man, and Cybernetics, vol 8, 62-66, [17] PARKER, J.R. Algorithms for Image Processing and Computer Vision, John Wiley and Sons, [18] PUN, T., Entropic Thresholding, A New Approach, in: C.Graphics and Image Proc., vol. 16, pp , [19] RIDLER, T.W. and CALVARD, S., Picture Thresholding Using an Iterative Selection Method, in: IEEE Trans. on Systems, Man and Cybernetics, Vol.SMC-8, 8: , 1978 [20] SAHOO, P. et al. Threshold Selection using Renyi s Entropy, in: Pattern recognition V. 30, No 1, pp 71-84, 1997 [21] SHANNON, C., A Mathematical Theory of Communication, in: Bell System Technology Journal, v. 27, pp , , [22] WU, L., MA, S., LU, H., An Effective Entropic thresholding for Ultrasonic Images, in: ICPR98, pp , [23] YAGER, R.R., On the Measures of Fuzziness and Negation.Part.1: Membership in the Unit Interval, in: Int Journal of General Systems, Vol. 5, pp , [24] YAN, H. Unified Formulation of a Class of Image Thresholding Techniques, Pattern Recognition, V. 29, pp , [25] PROHIST PROJECT:

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

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

A Function-Based Image Binarization based on Histogram

A Function-Based Image Binarization based on Histogram International Research Journal of Applied and Basic Sciences 2015 Available online at www.irjabs.com ISSN 2251-838X / Vol, 9 (3): 418-426 Science Explorer Publications A Function-Based Image Binarization

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

Package autothresholdr

Package autothresholdr Type Package Package autothresholdr January 23, 2018 Title An R Port of the 'ImageJ' Plugin 'Auto Threshold' Version 1.1.0 Maintainer Rory Nolan Provides the 'ImageJ' 'Auto Threshold'

More information

Input sensitive thresholding for ancient Hebrew manuscript

Input sensitive thresholding for ancient Hebrew manuscript Pattern Recognition Letters 26 (2005) 1168 1173 www.elsevier.com/locate/patrec Input sensitive thresholding for ancient Hebrew manuscript Itay Bar-Yosef * Department of Computer Science, Ben Gurion University,

More information

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

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

More information

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

A Novel q-parameter Automation in Tsallis Entropy for Image Segmentation

A Novel q-parameter Automation in Tsallis Entropy for Image Segmentation A Novel q-parameter Automation in Tsallis Entropy for Image Segmentation M Seetharama Prasad KL University Vijayawada- 522202 P Radha Krishna KL University Vijayawada- 522202 ABSTRACT Image Thresholding

More information

Multi-pass approach to adaptive thresholding based image segmentation

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

More information

Enhanced Bleed Through Removal Using Normalized Picture Information Based Measures Sahil Mahaldar, Serene Banerjee

Enhanced Bleed Through Removal Using Normalized Picture Information Based Measures Sahil Mahaldar, Serene Banerjee Enhanced Bleed Through Removal Using Normalized Picture Information Based Measures Sahil Mahaldar, Serene Banerjee HP Laboratories HPL-2009-159 Keyword(s): bleed through, document cleanup Abstract: Back-to-front

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

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

A Model-based Line Detection Algorithm in Documents

A Model-based Line Detection Algorithm in Documents A Model-based Line Detection Algorithm in Documents Yefeng Zheng, Huiping Li, David Doermann Laboratory for Language and Media Processing Institute for Advanced Computer Studies University of Maryland,

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 Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques

An Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques An Objective Evaluation Methodology for Handwritten Image Document Binarization Techniques K. Ntirogiannis, B. Gatos and I. Pratikakis Computational Intelligence Laboratory, Institute of Informatics and

More information

International Journal of Electrical, Electronics ISSN No. (Online): and Computer Engineering 3(2): 85-90(2014)

International Journal of Electrical, Electronics ISSN No. (Online): and Computer Engineering 3(2): 85-90(2014) I J E E E C International Journal of Electrical, Electronics ISSN No. (Online): 2277-2626 Computer Engineering 3(2): 85-90(2014) Robust Approach to Recognize Localize Text from Natural Scene Images Khushbu

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

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

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

More information

A derivative based algorithm for image thresholding

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

More information

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

Multicriteria Image Thresholding Based on Multiobjective Particle Swarm Optimization

Multicriteria Image Thresholding Based on Multiobjective Particle Swarm Optimization Applied Mathematical Sciences, Vol. 8, 2014, no. 3, 131-137 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.3138 Multicriteria Image Thresholding Based on Multiobjective Particle Swarm

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

Pattern recognition (4)

Pattern recognition (4) Pattern recognition (4) 1 Things we have discussed until now Statistical pattern recognition Building simple classifiers Supervised classification Minimum distance classifier Bayesian classifier (1D and

More information

Dynamic skin detection in color images for sign language recognition

Dynamic skin detection in color images for sign language recognition Dynamic skin detection in color images for sign language recognition Michal Kawulok Institute of Computer Science, Silesian University of Technology, Akademicka 16, 44-100 Gliwice, Poland michal.kawulok@polsl.pl

More information

Recognition of Gurmukhi Text from Sign Board Images Captured from Mobile Camera

Recognition of Gurmukhi Text from Sign Board Images Captured from Mobile Camera International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 17 (2014), pp. 1839-1845 International Research Publications House http://www. irphouse.com Recognition of

More information

FUZZY SET THEORETIC APPROACH TO IMAGE THRESHOLDING

FUZZY SET THEORETIC APPROACH TO IMAGE THRESHOLDING FUZZY SET THEORETIC APPROACH TO IMAGE THRESHOLDING Ambar Dutta 1, Avijit Kar 2 and B. N. Chatterji 3 1 Department of Computer Engineering, Birla Institute of Technology, Mesra, Kolkata Campus, India adutta@bitmesra.ac.in

More information

Restoration of Noisy Document Images with an Efficient Bi-Level Adaptive Thresholding

Restoration of Noisy Document Images with an Efficient Bi-Level Adaptive Thresholding Restoration of Noisy Document Images with an Efficient Bi-Level Adaptive Thresholding Abhijit Mitra Abstract An effective approach for extracting document images from a As an example, Otsu s celebrated

More information

Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation

Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation Robust Descriptive Statistics Based PSO Algorithm for Image Segmentation Ripandeep Kaur 1, Manpreet Kaur 2 1, 2 Punjab Technical University, Chandigarh Engineering College, Landran, Punjab, India Abstract:

More information

[Programming Assignment] (1)

[Programming Assignment] (1) http://crcv.ucf.edu/people/faculty/bagci/ [Programming Assignment] (1) Computer Vision Dr. Ulas Bagci (Fall) 2015 University of Central Florida (UCF) Coding Standard and General Requirements Code for all

More information

CHAPTER II LITERATURE SURVEY

CHAPTER II LITERATURE SURVEY CHAPTER II LITERATURE SURVEY 2.1 Introduction An image is considered as a set of points or pixels distributed over a two dimensional finite space. Segmentation, in precise form, can be considered as the

More information

Offline Signature verification and recognition using ART 1

Offline Signature verification and recognition using ART 1 Offline Signature verification and recognition using ART 1 R. Sukanya K.Malathy M.E Infant Jesus College of Engineering And Technology Abstract: The main objective of this project is signature verification

More information

I accurate and reliable navigation of vision-based IV. The main purpose of image segmentation is to separate the

I accurate and reliable navigation of vision-based IV. The main purpose of image segmentation is to separate the An Improved Otsu Image Segmentation Algorithm for Path Mark Detection under Variable Illumination JIN Li-Sheng TIAN Lei WANG Rong-ben GUO Lie CHU Jiang-wei ( Transportation College of Jilin University,

More information

An Object Detection System using Image Reconstruction with PCA

An Object Detection System using Image Reconstruction with PCA An Object Detection System using Image Reconstruction with PCA Luis Malagón-Borja and Olac Fuentes Instituto Nacional de Astrofísica Óptica y Electrónica, Puebla, 72840 Mexico jmb@ccc.inaoep.mx, fuentes@inaoep.mx

More information

I. INTRODUCTION. Image Acquisition. Denoising in Wavelet Domain. Enhancement. Binarization. Thinning. Feature Extraction. Matching

I. INTRODUCTION. Image Acquisition. Denoising in Wavelet Domain. Enhancement. Binarization. Thinning. Feature Extraction. Matching A Comparative Analysis on Fingerprint Binarization Techniques K Sasirekha Department of Computer Science Periyar University Salem, Tamilnadu Ksasirekha7@gmail.com K Thangavel Department of Computer Science

More information

Document Image Binarization Using Post Processing Method

Document Image Binarization Using Post Processing Method Document Image Binarization Using Post Processing Method E. Balamurugan Department of Computer Applications Sathyamangalam, Tamilnadu, India E-mail: rethinbs@gmail.com K. Sangeetha Department of Computer

More information

arxiv:cs/ v1 [cs.cv] 9 Mar 2006

arxiv:cs/ v1 [cs.cv] 9 Mar 2006 Locally Adaptive Block Thresholding Method with Continuity Constraint arxiv:cs/0603041v1 [cs.cv] 9 Mar 2006 S. Hemachander a, A. Verma b, S. Arora c, Prasanta K. Panigrahi b1 a University of Buffalo, NY,

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

Handwritten Script Recognition at Block Level

Handwritten Script Recognition at Block Level Chapter 4 Handwritten Script Recognition at Block Level -------------------------------------------------------------------------------------------------------------------------- Optical character recognition

More information

ADAPTIVE DOCUMENT IMAGE THRESHOLDING USING IFOREGROUND AND BACKGROUND CLUSTERING

ADAPTIVE DOCUMENT IMAGE THRESHOLDING USING IFOREGROUND AND BACKGROUND CLUSTERING ADAPTIVE DOCUMENT IMAGE THRESHOLDING USING IFOREGROUND AND BACKGROUND CLUSTERING Andreas E. Savakis Eastman Kodak Company 901 Elmgrove Rd. Rochester, New York 14653 savakis @ kodak.com ABSTRACT Two algorithms

More information

Experimentation on the use of Chromaticity Features, Local Binary Pattern and Discrete Cosine Transform in Colour Texture Analysis

Experimentation on the use of Chromaticity Features, Local Binary Pattern and Discrete Cosine Transform in Colour Texture Analysis Experimentation on the use of Chromaticity Features, Local Binary Pattern and Discrete Cosine Transform in Colour Texture Analysis N.Padmapriya, Ovidiu Ghita, and Paul.F.Whelan Vision Systems Laboratory,

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

MICROARRAY IMAGE SEGMENTATION USING CLUSTERING METHODS

MICROARRAY IMAGE SEGMENTATION USING CLUSTERING METHODS Mathematical and Computational Applications, Vol. 5, No. 2, pp. 240-247, 200. Association for Scientific Research MICROARRAY IMAGE SEGMENTATION USING CLUSTERING METHODS Volkan Uslan and Đhsan Ömür Bucak

More information

Keywords:- Fingerprint Identification, Hong s Enhancement, Euclidian Distance, Artificial Neural Network, Segmentation, Enhancement.

Keywords:- Fingerprint Identification, Hong s Enhancement, Euclidian Distance, Artificial Neural Network, Segmentation, Enhancement. Volume 5, Issue 8, August 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Embedded Algorithm

More information

Siti Norul Huda Sheikh Abdullah

Siti Norul Huda Sheikh Abdullah Siti Norul Huda Sheikh Abdullah mimi@ftsm.ukm.my 90 % is 90 % is standard license plates 10% is in special format Definitions: Car plate recognition, plate number recognition, vision plate, automatic

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

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

Hybrid Approach for MRI Human Head Scans Classification using HTT based SFTA Texture Feature Extraction Technique

Hybrid Approach for MRI Human Head Scans Classification using HTT based SFTA Texture Feature Extraction Technique Volume 118 No. 17 2018, 691-701 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Hybrid Approach for MRI Human Head Scans Classification using HTT

More information

Morphological Change Detection Algorithms for Surveillance Applications

Morphological Change Detection Algorithms for Surveillance Applications Morphological Change Detection Algorithms for Surveillance Applications Elena Stringa Joint Research Centre Institute for Systems, Informatics and Safety TP 270, Ispra (VA), Italy elena.stringa@jrc.it

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

Prototype Selection for Handwritten Connected Digits Classification

Prototype Selection for Handwritten Connected Digits Classification 2009 0th International Conference on Document Analysis and Recognition Prototype Selection for Handwritten Connected Digits Classification Cristiano de Santana Pereira and George D. C. Cavalcanti 2 Federal

More information

ESTIMATION OF APPROPRIATE PARAMETER VALUES FOR DOCUMENT BINARIZATION TECHNIQUES

ESTIMATION OF APPROPRIATE PARAMETER VALUES FOR DOCUMENT BINARIZATION TECHNIQUES International Journal of Robotics and Automation, Vol. 24, No. 1, 2009 ESTIMATION OF APPROPRIATE PARAMETER VALUES FOR DOCUMENT BINARIZATION TECHNIQUES E. Badekas and N. Papamarkos Abstract Most of the

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

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

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

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

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

Texture Classification by Combining Local Binary Pattern Features and a Self-Organizing Map

Texture Classification by Combining Local Binary Pattern Features and a Self-Organizing Map Texture Classification by Combining Local Binary Pattern Features and a Self-Organizing Map Markus Turtinen, Topi Mäenpää, and Matti Pietikäinen Machine Vision Group, P.O.Box 4500, FIN-90014 University

More information

Optimizing the Deblocking Algorithm for. H.264 Decoder Implementation

Optimizing the Deblocking Algorithm for. H.264 Decoder Implementation Optimizing the Deblocking Algorithm for H.264 Decoder Implementation Ken Kin-Hung Lam Abstract In the emerging H.264 video coding standard, a deblocking/loop filter is required for improving the visual

More information

A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value

A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value Sensors & Transducers 13 by IFSA http://www.sensorsportal.com A Kind of Fast Image Edge Detection Algorithm Based on Dynamic Threshold Value Jiaiao He, Liya Hou, Weiyi Zhang School of Mechanical Engineering,

More information

Extracting Characters From Books Based On The OCR Technology

Extracting Characters From Books Based On The OCR Technology 2016 International Conference on Engineering and Advanced Technology (ICEAT-16) Extracting Characters From Books Based On The OCR Technology Mingkai Zhang1, a, Xiaoyi Bao1, b,xin Wang1, c, Jifeng Ding1,

More information

Scanner Parameter Estimation Using Bilevel Scans of Star Charts

Scanner Parameter Estimation Using Bilevel Scans of Star Charts ICDAR, Seattle WA September Scanner Parameter Estimation Using Bilevel Scans of Star Charts Elisa H. Barney Smith Electrical and Computer Engineering Department Boise State University, Boise, Idaho 8375

More information

Image segmentation based on gray-level spatial correlation maximum between-cluster variance

Image segmentation based on gray-level spatial correlation maximum between-cluster variance International Symposium on Computers & Informatics (ISCI 05) Image segmentation based on gray-level spatial correlation maximum between-cluster variance Fu Zeng,a, He Jianfeng,b*, Xiang Yan,Cui Rui, Yi

More information

Coarse-to-Fine Search Technique to Detect Circles in Images

Coarse-to-Fine Search Technique to Detect Circles in Images Int J Adv Manuf Technol (1999) 15:96 102 1999 Springer-Verlag London Limited Coarse-to-Fine Search Technique to Detect Circles in Images M. Atiquzzaman Department of Electrical and Computer Engineering,

More information

Hybrid Algorithm for Edge Detection using Fuzzy Inference System

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

More information

Image Compression With Haar Discrete Wavelet Transform

Image Compression With Haar Discrete Wavelet Transform Image Compression With Haar Discrete Wavelet Transform Cory Cox ME 535: Computational Techniques in Mech. Eng. Figure 1 : An example of the 2D discrete wavelet transform that is used in JPEG2000. Source:

More information

SSRG International Journal of Computer Science and Engineering (SSRG-IJCSE) volume1 issue7 September 2014

SSRG International Journal of Computer Science and Engineering (SSRG-IJCSE) volume1 issue7 September 2014 SSRG International Journal of Computer Science and Engineering (SSRG-IJCSE) volume issue7 September 24 A Thresholding Method for Color Image Binarization Kalavathi P Department of Computer Science and

More information

Image Inpainting Using Sparsity of the Transform Domain

Image Inpainting Using Sparsity of the Transform Domain Image Inpainting Using Sparsity of the Transform Domain H. Hosseini*, N.B. Marvasti, Student Member, IEEE, F. Marvasti, Senior Member, IEEE Advanced Communication Research Institute (ACRI) Department of

More information

Improving the Discrimination Capability with an Adaptive Synthetic Discriminant Function Filter

Improving the Discrimination Capability with an Adaptive Synthetic Discriminant Function Filter Improving the Discrimination Capability with an Adaptive Synthetic Discriminant Function Filter 83 J. Ángel González-Fraga 1, Víctor H. Díaz-Ramírez 1, Vitaly Kober 1, and Josué Álvarez-Borrego 2 1 Department

More information

Global Journal of Engineering Science and Research Management

Global Journal of Engineering Science and Research Management ADVANCED K-MEANS ALGORITHM FOR BRAIN TUMOR DETECTION USING NAIVE BAYES CLASSIFIER Veena Bai K*, Dr. Niharika Kumar * MTech CSE, Department of Computer Science and Engineering, B.N.M. Institute of Technology,

More information

Image retrieval based on bag of images

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

More information

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

Temperature Calculation of Pellet Rotary Kiln Based on Texture

Temperature Calculation of Pellet Rotary Kiln Based on Texture Intelligent Control and Automation, 2017, 8, 67-74 http://www.scirp.org/journal/ica ISSN Online: 2153-0661 ISSN Print: 2153-0653 Temperature Calculation of Pellet Rotary Kiln Based on Texture Chunli Lin,

More information

Classification Part 4

Classification Part 4 Classification Part 4 Dr. Sanjay Ranka Professor Computer and Information Science and Engineering University of Florida, Gainesville Model Evaluation Metrics for Performance Evaluation How to evaluate

More information

A Clustering-Based Method for. Brain Tumor Segmentation

A Clustering-Based Method for. Brain Tumor Segmentation Contemporary Engineering Sciences, Vol. 9, 2016, no. 15, 743-754 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ces.2016.6564 A Clustering-Based Method for Brain Tumor Segmentation Idanis Diaz

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

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

A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation

A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation A Fast Personal Palm print Authentication based on 3D-Multi Wavelet Transformation * A. H. M. Al-Helali, * W. A. Mahmmoud, and * H. A. Ali * Al- Isra Private University Email: adnan_hadi@yahoo.com Abstract:

More information

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

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

More information

Hidden Object Reconstruction From Acoustic Slices

Hidden Object Reconstruction From Acoustic Slices Hidden Object Reconstruction From Acoustic Slices J.R. Parker Emad N. Attia Laboratory for Computer Vision Department of Computer Science Abstract A method for reconstructing 3D models from crosssectional

More information

Image Segmentation using Gaussian Mixture Models

Image Segmentation using Gaussian Mixture Models Image Segmentation using Gaussian Mixture Models Rahman Farnoosh, Gholamhossein Yari and Behnam Zarpak Department of Applied Mathematics, University of Science and Technology, 16844, Narmak,Tehran, Iran

More information

Pattern Recognition Letters

Pattern Recognition Letters Pattern Recognition Letters 31 (2010) 1403 1411 Contents lists available at ScienceDirect Pattern Recognition Letters journal homepage: www.elsevier.com/locate/patrec Fast and robust skew estimation 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

Weka ( )

Weka (  ) Weka ( http://www.cs.waikato.ac.nz/ml/weka/ ) The phases in which classifier s design can be divided are reflected in WEKA s Explorer structure: Data pre-processing (filtering) and representation Supervised

More information

Automatic Detection of Change in Address Blocks for Reply Forms Processing

Automatic Detection of Change in Address Blocks for Reply Forms Processing Automatic Detection of Change in Address Blocks for Reply Forms Processing K R Karthick, S Marshall and A J Gray Abstract In this paper, an automatic method to detect the presence of on-line erasures/scribbles/corrections/over-writing

More information

Performance Improvement in Binarization for Fingerprint Recognition

Performance Improvement in Binarization for Fingerprint Recognition IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 3, Ver. II (May.-June. 2017), PP 68-74 www.iosrjournals.org Performance Improvement in Binarization

More information

Linear Discriminant Analysis in Ottoman Alphabet Character Recognition

Linear Discriminant Analysis in Ottoman Alphabet Character Recognition Linear Discriminant Analysis in Ottoman Alphabet Character Recognition ZEYNEB KURT, H. IREM TURKMEN, M. ELIF KARSLIGIL Department of Computer Engineering, Yildiz Technical University, 34349 Besiktas /

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

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2

An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng 1, WU Wei 2 International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 015) An algorithm of lips secondary positioning and feature extraction based on YCbCr color space SHEN Xian-geng

More information

INTERNATIONAL RESEARCH JOURNAL OF MULTIDISCIPLINARY STUDIES

INTERNATIONAL RESEARCH JOURNAL OF MULTIDISCIPLINARY STUDIES STUDIES & SPPP's, Karmayogi Engineering College, Pandharpur Organize National Conference Special Issue March 2016 Neuro-Fuzzy System based Handwritten Marathi System Numerals Recognition 1 Jayashri H Patil(Madane),

More information

Joint Compression and Restoration of Documents with Bleed-through

Joint Compression and Restoration of Documents with Bleed-through Joint Compression and Restoration of Documents with Bleed-through Eric Dubois and Patrick Dano School of Information Technology and Engineering, University of Ottawa, Ottawa, ON Canada K1N 6N5 Abstract

More information

Combining Gabor Features: Summing vs.voting in Human Face Recognition *

Combining Gabor Features: Summing vs.voting in Human Face Recognition * Combining Gabor Features: Summing vs.voting in Human Face Recognition * Xiaoyan Mu and Mohamad H. Hassoun Department of Electrical and Computer Engineering Wayne State University Detroit, MI 4822 muxiaoyan@wayne.edu

More information

A Novel Image Transform Based on Potential field Source Reverse for Image Analysis

A Novel Image Transform Based on Potential field Source Reverse for Image Analysis A Novel Image Transform Based on Potential field Source Reverse for Image Analysis X. D. ZHUANG 1,2 and N. E. MASTORAKIS 1,3 1. WSEAS Headquarters, Agiou Ioannou Theologou 17-23, 15773, Zografou, Athens,

More information

DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM

DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM DATA EMBEDDING IN TEXT FOR A COPIER SYSTEM Anoop K. Bhattacharjya and Hakan Ancin Epson Palo Alto Laboratory 3145 Porter Drive, Suite 104 Palo Alto, CA 94304 e-mail: {anoop, ancin}@erd.epson.com Abstract

More information

Evaluation of document binarization using eigen value decomposition

Evaluation of document binarization using eigen value decomposition Evaluation of document binarization using eigen value decomposition Deepak Kumar, M N Anil Prasad and A G Ramakrishnan Medical Intelligence and Language Engineering Laboratory Department of Electrical

More information

Image Bi-Level Thresholding Based on Gray Level-Local Variance Histogram

Image Bi-Level Thresholding Based on Gray Level-Local Variance Histogram entropy Article Image Bi-Level Thresholding Based on Gray Level-Local Variance Histogram Xiulian Zheng 1,, Hong Ye 1, and Yinggan Tang 2, *, 1 Department of Electric Automation Technology, College of Electrical

More information

Robot localization method based on visual features and their geometric relationship

Robot localization method based on visual features and their geometric relationship , pp.46-50 http://dx.doi.org/10.14257/astl.2015.85.11 Robot localization method based on visual features and their geometric relationship Sangyun Lee 1, Changkyung Eem 2, and Hyunki Hong 3 1 Department

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

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

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

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

More information