HANDWRITTEN ENGLISH WORD RECOGNITION USING HMM, BAUM-WELCH AND GENETIC ALGORITHM

Size: px
Start display at page:

Download "HANDWRITTEN ENGLISH WORD RECOGNITION USING HMM, BAUM-WELCH AND GENETIC ALGORITHM"

Transcription

1 International Journal of Computer Engineering & Technology (IJCET) Volume 9, Issue 4, July-August 2018, pp , Article ID: IJCET_09_04_019 Available online at Journal Impact Factor (2016): (Calculated by GISI) ISSN Print: and ISSN Online: IAEME Publication HANDWRITTEN ENGLISH WORD RECOGNITION USING HMM, BAUM-WELCH AND GENETIC ALGORITHM Atma Prakash Singh Department of CSE Maharishi University of Information and Technology, Luck now Ravindra Nath Department of CSE, University Institute of Engineering and Technology, CSJMU, Kanpur Santosh Kumar Department of CSE Maharishi University of Information and Technology, Luck now ABSTRACT We face one problem in in the field of image processing and pattern recognition of computer science, a challenge of correct detection or recognition of the handwritten word. Word recognition talk about the identification of the word which is written by a human being. Most of the researchers are trying to solve recognition problems. We also try to give one solution in this paper to handwritten word recognition, we consider English alphabets of both type and also consider numeric numbers as (A-Z, a-z or 0-9). In this paper we use three approaches Hidden Markov Model (HMM), Baum-Welch and Genetic Algorithm (GA) to identify features of each character and compare with its testing set of characters. we also use stages of handwritten word recognition system that are: read a scanned image of hand written word as HELLO CAN. We take CAN word image, now we converting this CAN word image into binary matrix form (0 and 1), resizing each character of word into the character binary matrix into size of (n x m where n and m may be same), and thinning of an image to get a clear skeleton of each character. Then in this paper identify each character using three algorithms namely: Forward Algorithm, Baum Welch and Genetic Algorithm. The results obtained from each of the algorithm are compared separately and at the end the accuracy of these algorithms are compared separately. Key words: HMM (Hidden Markov Model), GA (Genetic Algorithm), Baum Welch Method (BWM), Handwritten Character Recognition (HC). Cite this Article: Atma Prakash Singh, Ravindra Nath, Santosh Kumar, Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm. International Journal of Computer Engineering and Technology, 9(4), 2018, pp editor@iaeme.com

2 Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm 1. INTRODUCTION A typical handwritten characters recognition system consists of several steps, namely: preprocessing, segmentation, feature extraction, and classification. Several types of decision methods, including statistical methods, neural networks, structural matching (on trees, chains, etc.) and stochastic processing (Markov chains, etc.) have been used along with different types of features. Many recent approaches mix several of these techniques together in order to obtain improved reliability, despite wide variation in handwriting. In this paper, we analyzed the use of Hidden Markov Models (HMMs) for English Language handwritten word recognition. HMMs have been widely used in the field of speech recognition [29] and more recently in handwriting and handwritten character recognition [30] [31]. While most of these word recognition applications concentrate on cursive handwriting and there have been attempts where HMMs were used on individually handwritten characters [32]. We can bifurcate recognition process into two parts: preliminary classification and recognition using HMMs. Firstly, structural properties of the handwritten characters are used to pre-classify an unknown word into a subset of its candidate characters. Then, the nominee characters are added to examined using HMMs. 2. PROCESS OF WORD RECOGNITION Recognition of any thing is comprising an observation with well-defined character /word or image having a meaning. Pattern recognition is inferring a meaning from observation. Designation of pattern recognition system is establishing a mapping from measurement space into the space of potential meanings, whereby the different meanings are represented in this space as discrete target points. The basic modules in pattern recognition are preprocessing, feature extraction and selection, classifier design and optimization Pre-Processing Preprocessing converts the image of a scanned word into a form suitable for subsequent processing. The pre-processing is a series of operations performed on the scanned input image. It usually consists of binarization, normalization, thinning and skeletonizing [15]. Any image processing application suffers from noise like isolated pixels. This noise gives rise to ambiguous features which results in poor recognition rate or accuracy. Hence we take the data set which is noiseless. Binarization process converts a gray scale image into a binary image [16]. After that Thinning is performed to thin the contours of the alphabets in the words. Then skeletonization is used gets the skeleton of character image so that strokes could be conspicuous [2] Flow Chart of Segmentation Process In the segmentation process, an image of English language word is decomposed into subimages of individual English alphabet characters. The following block diagram explains the step of segmentation in the recognition process: editor@iaeme.com

3 Atma Prakash Singh, Ravindra Nath, Santosh Kumar Figure 1 Flow Chart of Segmentation Process 2.3. Implementing the Segmentation Process For splitting the word image into segmented characters, we apply the process of segmentation. Here, we are first dealing with those word images, in which, characters are not linked with each other. These characters are separated by delimiters (spaces) between them. The image of such a scanned input word is shown below: Figure 2 Scanned Input Word Images Above images shows clearly, that the letters are separated by sufficient space between them. Hence we can distinct these individual characters easily. The image of sample word is first binarized and then resized into a 32x32 matrix. Considering the spaces between characters in the original image, we separate these characters by those columns which contain all zeros. Below are the images describing the above process on the English word CAN: editor@iaeme.com

4 Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm Figure 3 Segmentation matrix of word CAN 3. HMM WITH FORWARD ALGORITHM CLASSIFIER In previous chapter we have stated how we can segment an English language word into indivisible English alphabets by considering the example of word CAN. Now taking the same example ahead, we pass the segmented images of indivisible characters C, A, N to the Forward algorithm stated in earlier chapter to calculate the value of P(O λ) (probability of the observation sequence (O) by the models (λ)). We match these P(O λ) value with the range of P(O λ) value of each character which we calculated in earlier chapter using the Forward algorithm and initially developed HMM models. Now, if these values lie in the specified range then we can say that the input character matches with the specified character [3,5]. The range of each character calculated from our HMM Model using the Forward algorithm is given below: Table 1 Range calculated for each English alphabet using Forward algorithm A B C D E F G H I J K L M N editor@iaeme.com

5 Atma Prakash Singh, Ravindra Nath, Santosh Kumar O P Q R S T U V W X Y Z The values of P(O λ) calculated for each segmented character from the input word CAN using the HMM Models and Forward algorithm are given below [18]. Thus from the above result we can conclude that the individual character C matches with character C itself but also with other characters (A, B, I, J, K, X, Y) also. The character A matches with character A itself but also with other Characters (H, I, J, M, W, Y) also and the character N matches with character N itself but also with other Characters (A, H, I, J, M, W, Y) also. Table 2 Results obtained by testing the segmented characters C, A, N C Matching with C A Matching with A N Matching with N 1 A Yes Yes Yes 2 B Yes No No 3 C Yes No No 4 D No No No 5 E No No No 6 F No No No 7 G No No No 8 H No Yes Yes 9 I Yes Yes Yes 10 J Yes Yes Yes 11 K Yes No No 12 L No No No 13 M Yes Yes Yes 14 N No No Yes 15 O No No No 16 P No No No 17 Q No No No 18 R No No No 19 S No No No 20 T No No No 21 U No No No 22 V No No No 23 W No Yes Yes 24 X Yes No No 25 Y Yes Yes Yes 26 Z No No No editor@iaeme.com

6 Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm 4. BAUM-WELCH CLASSIFIER The Baum Welch classifier is used to classify the words of English Alphabets. The word image is segmented into each individual characters (as described in previous chapter) and these segmented characters are classified using Baum-Welch Algorithm. Now the same example of word CAN be taken again, we pass the segmented images of indivisible characters C, A, N to the Baum-Welch Algorithm stated in earlier chapter to calculate the value of P(O λ) (probability of the observation sequence (O) by the models (λ)). We match these P(O λ) value with the range of P(O λ) value of each character which we calculated in earlier chapter using the Baum-Welch Algorithm and initially developed HMM models. Now, if these values lie in the specified range then we can say that the input character matches with the specified character [33]. The range of each character calculated from our HMM Model using the Baum-Welch Algorithm is given below: Table 3 Range calculated for each alphabet using Baum-Welch algorithm 1 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z The values of P(O λ) calculated for each segmented character from the input word CAN using the HMM Models and Baum Welch-Algorithm are given below editor@iaeme.com

7 Atma Prakash Singh, Ravindra Nath, Santosh Kumar Table 4 Result obtained by testing the segmented character C, A, N by using Baum-Welch algorithm C Matching with C A Matching with A N Matching with N 1 A Yes Yes Yes 2 B Yes Yes Yes 3 C Yes Yes Yes 4 D Yes No Yes 5 E Yes Yes No 6 F No Yes Yes 7 G No No No 8 H Yes No Yes 9 I Yes Yes Yes 10 J Yes Yes Yes 11 K Yes Yes Yes 12 L Yes Yes Yes 13 M Yes Yes Yes 14 N Yes Yes Yes 15 O Yes Yes Yes 16 P No Yes Yes 17 Q Yes No Yes 18 R Yes Yes Yes 19 S Yes Yes Yes 20 T Yes Yes Yes 21 U Yes Yes No 22 V Yes Yes No 23 W Yes Yes Yes 24 X Yes Yes Yes 25 Y Yes Yes Yes 26 Z No Yes No Thus from the above result we can conclude that the individual character C matches with character C itself and also with all other characters but except (F, G, P, Z) also. The character A matches with character A itself and also with all other Characters but except (D, G, H, Q) also and the character N matches with character N itself and also with all other Characters but except (E, G, U, V, Z) also. 5. GENETIC ALGORITHM The Genetic Algorithm is used to classify the words of English Alphabets. The word image is segmented into each individual character (as described in previous chapter) and these segmented characters are classified using Baum-Welch Algorithm. Now the same example of word CAN be taken again, we pass the segmented images of indivisible characters C, A, N to the Genetic Algorithm stated in earlier chapter to calculate the value of P(O λ) (probability of the observation sequence (O) by the models (λ)). We match these P(O λ) value with the range of P(O λ) value of each character which we calculated in earlier chapter using the Genetic Algorithm and initially developed HMM models [34]. Now, if these values lie in the specified range then we can say that the input character matches with the specified character. The range of each character calculated from our HMM Model using the Genetic Algorithm is given below [1,5,6]: editor@iaeme.com

8 Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm Table 5 Range calculated for each alphabet using Genetic algorithm 1 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z The values of P(O λ) calculated for each segmented character from the input word CAN using the HMM Models and Genetic-Algorithm are given below. Table 6 Result obtained by testing the segmented character C, A, N using Genetic algorithm C Matching with C A Matching with A N Matching with N 1 A Yes Yes Yes 2 B Yes Yes Yes 3 C Yes Yes Yes 4 D No No No 5 E No No No 6 F Yes No Yes 7 G Yes No No 8 H No Yes No 9 I Yes Yes Yes 10 J Yes Yes Yes 11 K Yes No Yes 12 L No Yes No 13 M Yes Yes Yes 14 N Yes Yes Yes 15 O No No No 16 P Yes No No 17 Q No No No 18 R Yes Yes Yes editor@iaeme.com

9 Atma Prakash Singh, Ravindra Nath, Santosh Kumar 19 S No No No 20 T No No No 21 U Yes Yes Yes 22 V Yes No No 23 W Yes Yes Yes 24 X No No No 25 Y Yes Yes Yes 26 Z No No No Thus from the above result we can conclude that the individual character C matches with character C itself and also with all other characters but except (D, E, H, L, O, S, T, X) also. The character A matches with character A itself and also with all other Characters but except (D, E, F, G, K, O, P, Q, S, T, V, X) also and the character N matches with character N itself and also with all other Characters but except (D, E, G, H, L, O, P, Q, S, T, V, X, Z) also. 6. RESULT ANALYSIS AND CONCLUSION The word image is segmented into each individual character and these individual characters are classified by using three techniques namely: Forward Algorithm, Baum-Welch Algorithm, and Genetic Algorithm. The same word image CAN be segmented into individual character C, A, N. These individual s characters are passes to our HMM Model and the above mentioned algorithms (Forward Algorithm, Baum-Welch Algorithm, and Genetic Algorithm) are applied on them. The table listed below shows the efficiency of the all the three algorithms for the English alphabet C, A, N, as below in table: Table 7 Comparison of various classification algorithms used in the project Algorithm Efficiency for recognizing English Alphabet A Forward Algorithm % (approx..) Baum-Welch Algorithm % Genetic Algorithm % REFERENCE [1] Zhou Kenong, "Genetic Algorithm Efficient Implementation", Control Theory and Application, vol. 19, no. 5, pp , 2002 [2] Rajib Lochan Das, Binod Kumar Prasad, Goutam Sanyal English Character Recognition using Global and Local Feature Extraction, International Journal of Computer Applications ( ) Volume 46 No.10, May [3] El-Yacoubi,R. Sabourin, M. GillouxC.Y. Suen Off- Line Handwritten Word Recognition using Hidden Markov Model. [4] Binod Kumar Prasad, Goutam Sanyal, Department of Computer Science and Engineering, National Institute of Technology, Durgapur, INDIA, A Model Approach to Offline English Character Recognition International Journal of Scientific and Research Publications, Volume 2, Issue 6, June ISSN [5] Zhang Shan asked, Textbooks. MATLAB genetic algorithm toolbox and its application, Xi'an:Xidian University Press, pp , [6] Bottaci, L.,2001, A Genetic Algorithm Fitness Function for mutation testing presented at SEMINAL 2001, International workshop on software engineering using Meta heuristic editor@iaeme.com

10 Handwritten English Word Recognition Using HMM, Baum-Welch and Genetic Algorithm Innovative algorithm, a workshop at 23-rd Int. Conference on Software Engineering, Toronto, [7] Lawrence R. Rabiner, IEEE, A Tutorial on Hidden Markov Models and selected applications in Speech Recognition. [8] D. Lee, S. W. Lam and S. N. Srihari, "A structural approach to recognize hand-printed and degraded machine-printed characters," submitted to the Symposium on Syntactic and Structural Pattern Recognition, Murray Hill, New Jersey, [9] J. J. Hull, "Inter-word constraints in visual word recognition," Proceedings of the Conference of the Canadian Society for Computational Studies of Intelligence, Montreal, Canada, May 2123, 1986, 134- [10] Nafiz Arica and Fatos T. Yarman-Vural [11] J. Serra, Morphological filtering: An overview, Signal Process., vol. 38, no. 1, pp. 3 11, [12] M. Sonka, V. Hlavac, and R. Boyle, Image Processing, Analysis and Machine Vision, 2nd ed. Pacific Grove, CA: Brooks/Cole, [13] H. S. Baird, Document image defect models, in Proc. Int. Workshop Syntactical Structural Pattern Recognit., 1990, pp [14] M. Cannon, J. Hockberg, and P. Kelly, Quality assessment and restoration of typewritten document images, Int. J. Document Anal. Recognit., vol. 2, no. 2/3, pp , [15] C. Downtown and C. G. Leedham, Preprocessing and presorting of envelope images for automatic sorting using OCR, Pattern Recognit., vol. 23, no. 3 4, pp , [16] W. Guerfaii and R. Plamondon, Normalizing and restoring on-line handwriting, Pattern Recognit., vol. 26, no. 3, pp , [17] L. O Gorman, The document spectrum for page layout analysis, IEEETrans. Pattern Anal. Machine Intell., vol. 15, pp , [18] R. G. Casey and E. Lecolinet, A survey of methods and strategies in character segmentation, IEEE Trans. Pattern Anal. Machine Intell., vol. 18, pp , July [19] A. K. Jain, R. P. W. Duin, and J. Mao, Statistical pattern recognition: A review, IEEE Trans. Pattern Anal. Machine Intell, vol. 22, pp. 4 38, Jan [20] H. D. Block, B. W. Knight, and F. Rosenblatt, Analysis of a four-layer serious coupled perception, Rev. Mod. Phys., vol. 34, pp , [21] A. K. Jain and D. Zongker, Representation and recognition of handwritten digits using deformable templates, IEEE Trans. Pattern Anal. Machine Intell., vol. 19, pp , Dec [22] M. Bokser, Omnifont technologies, Proc. IEEE, vol. 80, pp , [23] Dewi Nasien, Habibollah Haron, Siti Sophiayati Yuhaniz. [24] Suliman, A. Shakil, A. Sulaiman, M. N. Othman, M. and Wirza, R. Hybrid of HMM and fuzzy logic for handwritten character recognition. In Proceedings of Information Technology. Kuala Lumpur, Malaysia, 2008 [25] Zhaoqi, B. and Xuegong, Z. Pattern Recognition, 2nd Edition, Tsinghua University Press., (2000) [26] Ravindra Nath, and Renu Jain Using Randomized Search Algorithms to Estimate HMM Learning Parameters IEEE International Advanced Computing Conference (IACC-2009) editor@iaeme.com

11 Atma Prakash Singh, Ravindra Nath, Santosh Kumar [27] A.H. Mantawy, L. Abdul Mazid, Z. Selim Integrating genetic Algorithms, Tabu search and Simulated Annealing for the unit commitment problem, IEEE Transaction on power system, Vol.14, No. 3 August [28] Mark Pirlot, general local search method, European journal of operational research -92 (1996) [29] L. R. Rabiner, A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition, Proc. IEEE, vol. 77, no. 2, 1989, pp [30] H. Bunke, M. Roth and E. Talamazzini, Off-line Cursive Handwritten Recognition using Hidden Markov Models, Pattern Recognition, vol. 28, no. 9, 1995, pp [31] H.J. Kim, K.H. Kim, S.K. Kim and J.K. Lee, Online Recognition of Handwritten Chinese Characters based on Hidden Markov Models, Pattern Recognition, vol. 30, no. 9, 1997, pp [32] G. Loudon, C. Hong, Y. Wu and R. Zitserman, The Recognition of Handwritten Chinese Characters from Paper Records, IEEE TENCON, Digital Signal Processing Applications, 1996, pp [33] Handwritten English Character Recognition using HMM, Baum-Welch and Genetic Algorithm. Ravindra Nath et al, / (IJCSIT) International Journal of Computer Science and Information Technologies, Vol. 7 (4), 2016, [34] Mark Pirlot, general local search method, European journal of operational research -92 (1996) editor@iaeme.com

Character Recognition Using Matlab s Neural Network Toolbox

Character Recognition Using Matlab s Neural Network Toolbox Character Recognition Using Matlab s Neural Network Toolbox Kauleshwar Prasad, Devvrat C. Nigam, Ashmika Lakhotiya and Dheeren Umre B.I.T Durg, India Kauleshwarprasad2gmail.com, devnigam24@gmail.com,ashmika22@gmail.com,

More information

A Simplistic Way of Feature Extraction Directed towards a Better Recognition Accuracy

A Simplistic Way of Feature Extraction Directed towards a Better Recognition Accuracy International Journal of Engineering Research and Development e-issn: 2278-067X, p-issn: 2278-800X, www.ijerd.com Volume 3, Issue 7 (September 2012), PP. 43-49 A Simplistic Way of Feature Extraction Directed

More information

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Utkarsh Dwivedi 1, Pranjal Rajput 2, Manish Kumar Sharma 3 1UG Scholar, Dept. of CSE, GCET, Greater Noida,

More information

One Dim~nsional Representation Of Two Dimensional Information For HMM Based Handwritten Recognition

One Dim~nsional Representation Of Two Dimensional Information For HMM Based Handwritten Recognition One Dim~nsional Representation Of Two Dimensional Information For HMM Based Handwritten Recognition Nafiz Arica Dept. of Computer Engineering, Middle East Technical University, Ankara,Turkey nafiz@ceng.metu.edu.

More information

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION

SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION SEVERAL METHODS OF FEATURE EXTRACTION TO HELP IN OPTICAL CHARACTER RECOGNITION Binod Kumar Prasad * * Bengal College of Engineering and Technology, Durgapur, W.B., India. Rajdeep Kundu 2 2 Bengal College

More information

Mono-font Cursive Arabic Text Recognition Using Speech Recognition System

Mono-font Cursive Arabic Text Recognition Using Speech Recognition System Mono-font Cursive Arabic Text Recognition Using Speech Recognition System M.S. Khorsheed Computer & Electronics Research Institute, King AbdulAziz City for Science and Technology (KACST) PO Box 6086, Riyadh

More information

ISSN: [Mukund* et al., 6(4): April, 2017] Impact Factor: 4.116

ISSN: [Mukund* et al., 6(4): April, 2017] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY ENGLISH CURSIVE SCRIPT RECOGNITION Miss.Yewale Poonam Mukund*, Dr. M.S.Deshpande * Electronics and Telecommunication, TSSM's Bhivarabai

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

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 Introduction Pattern recognition is a set of mathematical, statistical and heuristic techniques used in executing `man-like' tasks on computers. Pattern recognition plays an

More information

Invarianceness for Character Recognition Using Geo-Discretization Features

Invarianceness for Character Recognition Using Geo-Discretization Features Computer and Information Science; Vol. 9, No. 2; 2016 ISSN 1913-8989 E-ISSN 1913-8997 Published by Canadian Center of Science and Education Invarianceness for Character Recognition Using Geo-Discretization

More information

Hand Written Character Recognition using VNP based Segmentation and Artificial Neural Network

Hand Written Character Recognition using VNP based Segmentation and Artificial Neural Network International Journal of Emerging Engineering Research and Technology Volume 4, Issue 6, June 2016, PP 38-46 ISSN 2349-4395 (Print) & ISSN 2349-4409 (Online) Hand Written Character Recognition using VNP

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

Finger Print Enhancement Using Minutiae Based Algorithm

Finger Print Enhancement Using Minutiae Based Algorithm 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. 8, August 2014,

More information

NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: VOLUME 2, ISSUE 1 JAN-2015

NOVATEUR PUBLICATIONS INTERNATIONAL JOURNAL OF INNOVATIONS IN ENGINEERING RESEARCH AND TECHNOLOGY [IJIERT] ISSN: VOLUME 2, ISSUE 1 JAN-2015 Offline Handwritten Signature Verification using Neural Network Pallavi V. Hatkar Department of Electronics Engineering, TKIET Warana, India Prof.B.T.Salokhe Department of Electronics Engineering, TKIET

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

Off-line Character Recognition using On-line Character Writing Information

Off-line Character Recognition using On-line Character Writing Information Off-line Character Recognition using On-line Character Writing Information Hiromitsu NISHIMURA and Takehiko TIMIKAWA Dept. of Information and Computer Sciences, Kanagawa Institute of Technology 1030 Shimo-ogino,

More information

Keywords Handwritten alphabet recognition, local binary pattern (LBP), feature Descriptor, nearest neighbor classifier.

Keywords Handwritten alphabet recognition, local binary pattern (LBP), feature Descriptor, nearest neighbor classifier. Volume 4, Issue 11, November 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Efficient

More information

Optical Character Recognition

Optical Character Recognition Optical Character Recognition Jagruti Chandarana 1, Mayank Kapadia 2 1 Department of Electronics and Communication Engineering, UKA TARSADIA University 2 Assistant Professor, Department of Electronics

More information

Neural Network Classifier for Isolated Character Recognition

Neural Network Classifier for Isolated Character Recognition Neural Network Classifier for Isolated Character Recognition 1 Ruby Mehta, 2 Ravneet Kaur 1 M.Tech (CSE), Guru Nanak Dev University, Amritsar (Punjab), India 2 M.Tech Scholar, Computer Science & Engineering

More information

Comparing Natural and Synthetic Training Data for Off-line Cursive Handwriting Recognition

Comparing Natural and Synthetic Training Data for Off-line Cursive Handwriting Recognition Comparing Natural and Synthetic Training Data for Off-line Cursive Handwriting Recognition Tamás Varga and Horst Bunke Institut für Informatik und angewandte Mathematik, Universität Bern Neubrückstrasse

More information

Text Extraction from Images

Text Extraction from Images International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 7, Number 9 (2014), pp. 979-985 International Research Publication House http://www.irphouse.com Text Extraction from

More information

HANDWRITTEN GURMUKHI CHARACTER RECOGNITION USING WAVELET TRANSFORMS

HANDWRITTEN GURMUKHI CHARACTER RECOGNITION USING WAVELET TRANSFORMS International Journal of Electronics, Communication & Instrumentation Engineering Research and Development (IJECIERD) ISSN 2249-684X Vol.2, Issue 3 Sep 2012 27-37 TJPRC Pvt. Ltd., HANDWRITTEN GURMUKHI

More information

Off-line Signature Verification Using Neural Network

Off-line Signature Verification Using Neural Network International Journal of Scientific & Engineering Research, Volume 3, Issue 2, February-2012 1 Off-line Signature Verification Using Neural Network Ashwini Pansare, Shalini Bhatia Abstract a number of

More information

LECTURE 6 TEXT PROCESSING

LECTURE 6 TEXT PROCESSING SCIENTIFIC DATA COMPUTING 1 MTAT.08.042 LECTURE 6 TEXT PROCESSING Prepared by: Amnir Hadachi Institute of Computer Science, University of Tartu amnir.hadachi@ut.ee OUTLINE Aims Character Typology OCR systems

More information

A Visualization Tool to Improve the Performance of a Classifier Based on Hidden Markov Models

A Visualization Tool to Improve the Performance of a Classifier Based on Hidden Markov Models A Visualization Tool to Improve the Performance of a Classifier Based on Hidden Markov Models Gleidson Pegoretti da Silva, Masaki Nakagawa Department of Computer and Information Sciences Tokyo University

More information

PRINTED ARABIC CHARACTERS CLASSIFICATION USING A STATISTICAL APPROACH

PRINTED ARABIC CHARACTERS CLASSIFICATION USING A STATISTICAL APPROACH PRINTED ARABIC CHARACTERS CLASSIFICATION USING A STATISTICAL APPROACH Ihab Zaqout Dept. of Information Technology Faculty of Engineering & Information Technology Al-Azhar University Gaza ABSTRACT In this

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

Chinese Handwritten Character Segmentation in Form Documents

Chinese Handwritten Character Segmentation in Form Documents Chinese andwritten Character Segmentation in Form Documents Jiun-Lin Chen, Chi-ong Wu and si-jian Lee Department of Computer Science and Information Engineering National Chiao Tung University, sinchu,

More information

Invariant Recognition of Hand-Drawn Pictograms Using HMMs with a Rotating Feature Extraction

Invariant Recognition of Hand-Drawn Pictograms Using HMMs with a Rotating Feature Extraction Invariant Recognition of Hand-Drawn Pictograms Using HMMs with a Rotating Feature Extraction Stefan Müller, Gerhard Rigoll, Andreas Kosmala and Denis Mazurenok Department of Computer Science, Faculty of

More information

NOVEL HYBRID GENETIC ALGORITHM WITH HMM BASED IRIS RECOGNITION

NOVEL HYBRID GENETIC ALGORITHM WITH HMM BASED IRIS RECOGNITION NOVEL HYBRID GENETIC ALGORITHM WITH HMM BASED IRIS RECOGNITION * Prof. Dr. Ban Ahmed Mitras ** Ammar Saad Abdul-Jabbar * Dept. of Operation Research & Intelligent Techniques ** Dept. of Mathematics. College

More information

FEATURE EXTRACTION TECHNIQUE FOR HANDWRITTEN INDIAN NUMBERS CLASSIFICATION

FEATURE EXTRACTION TECHNIQUE FOR HANDWRITTEN INDIAN NUMBERS CLASSIFICATION FEATURE EXTRACTION TECHNIQUE FOR HANDWRITTEN INDIAN NUMBERS CLASSIFICATION 1 SALAMEH A. MJLAE, 2 SALIM A. ALKHAWALDEH, 3 SALAH M. AL-SALEH 1, 3 Department of Computer Science, Zarqa University Collage,

More information

DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS

DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS DEVANAGARI SCRIPT SEPARATION AND RECOGNITION USING MORPHOLOGICAL OPERATIONS AND OPTIMIZED FEATURE EXTRACTION METHODS Sushilkumar N. Holambe Dr. Ulhas B. Shinde Shrikant D. Mali Persuing PhD at Principal

More information

Segmentation Based Optical Character Recognition for Handwritten Marathi characters

Segmentation Based Optical Character Recognition for Handwritten Marathi characters Segmentation Based Optical Character Recognition for Handwritten Marathi characters Madhav Vaidya 1, Yashwant Joshi 2,Milind Bhalerao 3 Department of Information Technology 1 Department of Electronics

More information

Paper ID: NITETE&TC05 THE HANDWRITTEN DEVNAGARI NUMERALS RECOGNITION USING SUPPORT VECTOR MACHINE

Paper ID: NITETE&TC05 THE HANDWRITTEN DEVNAGARI NUMERALS RECOGNITION USING SUPPORT VECTOR MACHINE Paper ID: NITETE&TC05 THE HANDWRITTEN DEVNAGARI NUMERALS RECOGNITION USING SUPPORT VECTOR MACHINE Rupali Vitthalrao Suryawanshi Department of Electronics Engineering, Bharatratna Indira Gandhi College,

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

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

HCR Using K-Means Clustering Algorithm

HCR Using K-Means Clustering Algorithm HCR Using K-Means Clustering Algorithm Meha Mathur 1, Anil Saroliya 2 Amity School of Engineering & Technology Amity University Rajasthan, India Abstract: Hindi is a national language of India, there are

More information

Segmentation of Characters of Devanagari Script Documents

Segmentation of Characters of Devanagari Script Documents WWJMRD 2017; 3(11): 253-257 www.wwjmrd.com International Journal Peer Reviewed Journal Refereed Journal Indexed Journal UGC Approved Journal Impact Factor MJIF: 4.25 e-issn: 2454-6615 Manpreet Kaur Research

More information

Hangul Recognition Using Support Vector Machine

Hangul Recognition Using Support Vector Machine Hangul Recognition Using Support Vector Machine Rahmatina Hidayati University of Brawijaya Moechammad Sarosa State Polytechnic of Malang Panca Mudjirahardjo University of Brawijaya Abstract: The recognition

More information

Spotting Words in Latin, Devanagari and Arabic Scripts

Spotting Words in Latin, Devanagari and Arabic Scripts Spotting Words in Latin, Devanagari and Arabic Scripts Sargur N. Srihari, Harish Srinivasan, Chen Huang and Shravya Shetty {srihari,hs32,chuang5,sshetty}@cedar.buffalo.edu Center of Excellence for Document

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

HMM-Based Handwritten Amharic Word Recognition with Feature Concatenation

HMM-Based Handwritten Amharic Word Recognition with Feature Concatenation 009 10th International Conference on Document Analysis and Recognition HMM-Based Handwritten Amharic Word Recognition with Feature Concatenation Yaregal Assabie and Josef Bigun School of Information Science,

More information

International Journal of Scientific & Engineering Research, Volume 8, Issue 3, March ISSN

International Journal of Scientific & Engineering Research, Volume 8, Issue 3, March ISSN International Journal of Scientific & Engineering Research, Volume 8, Issue 3, March-2017 1850 Optical Character Recognition for Running C Code Upendra Mishra 1, Shiva Panwar 2, Deeksha Upadhyay 2, Kamal

More information

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques

Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques Segmentation of Kannada Handwritten Characters and Recognition Using Twelve Directional Feature Extraction Techniques 1 Lohitha B.J, 2 Y.C Kiran 1 M.Tech. Student Dept. of ISE, Dayananda Sagar College

More information

IDIAP. Martigny - Valais - Suisse IDIAP

IDIAP. Martigny - Valais - Suisse IDIAP R E S E A R C H R E P O R T IDIAP Martigny - Valais - Suisse Off-Line Cursive Script Recognition Based on Continuous Density HMM Alessandro Vinciarelli a IDIAP RR 99-25 Juergen Luettin a IDIAP December

More information

WORD LEVEL DISCRIMINATIVE TRAINING FOR HANDWRITTEN WORD RECOGNITION Chen, W.; Gader, P.

WORD LEVEL DISCRIMINATIVE TRAINING FOR HANDWRITTEN WORD RECOGNITION Chen, W.; Gader, P. University of Groningen WORD LEVEL DISCRIMINATIVE TRAINING FOR HANDWRITTEN WORD RECOGNITION Chen, W.; Gader, P. Published in: EPRINTS-BOOK-TITLE IMPORTANT NOTE: You are advised to consult the publisher's

More information

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition

Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Dynamic Stroke Information Analysis for Video-Based Handwritten Chinese Character Recognition Feng Lin and Xiaoou Tang Department of Information Engineering The Chinese University of Hong Kong Shatin,

More information

Handwritten Hindi Character Recognition System Using Edge detection & Neural Network

Handwritten Hindi Character Recognition System Using Edge detection & Neural Network Handwritten Hindi Character Recognition System Using Edge detection & Neural Network Tanuja K *, Usha Kumari V and Sushma T M Acharya Institute of Technology, Bangalore, India Abstract Handwritten recognition

More information

Handwritten Character Recognition System using Chain code and Correlation Coefficient

Handwritten Character Recognition System using Chain code and Correlation Coefficient Handwritten Character Recognition System using Chain code and Correlation Coefficient Ravi Sheth1, N C Chauhan2, Mahesh M Goyani3, Kinjal A Mehta4 1Information Technology Dept., A.D Patel Institute of

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

Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier

Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier Structural Feature Extraction to recognize some of the Offline Isolated Handwritten Gujarati Characters using Decision Tree Classifier Hetal R. Thaker Atmiya Institute of Technology & science, Kalawad

More information

Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach

Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach Segmentation of Isolated and Touching characters in Handwritten Gurumukhi Word using Clustering approach Akashdeep Kaur Dr.Shaveta Rani Dr. Paramjeet Singh M.Tech Student (Associate Professor) (Associate

More information

International Journal of Advance Engineering and Research Development OPTICAL CHARACTER RECOGNITION USING ARTIFICIAL NEURAL NETWORK

International Journal of Advance Engineering and Research Development OPTICAL CHARACTER RECOGNITION USING ARTIFICIAL NEURAL NETWORK Scientific Journal of Impact Factor(SJIF): 4.14 International Journal of Advance Engineering and Research Development Special Issue for ICPCDECT 2016,Volume 3 Issue 1 e-issn(o): 2348-4470 p-issn(p): 2348-6406

More information

The Heuristic Extraction Algorithms for Freeman Chain Code of Handwritten Character

The Heuristic Extraction Algorithms for Freeman Chain Code of Handwritten Character The Heuristic Extraction Algorithms for Freeman Chain Code of Handwritten Character Dewi Nasien Faculty of Computer Science and Information System (FSKSM) Universiti Teknologi Malaysia Skudai, 81310, Malaysia

More information

Short Survey on Static Hand Gesture Recognition

Short Survey on Static Hand Gesture Recognition Short Survey on Static Hand Gesture Recognition Huu-Hung Huynh University of Science and Technology The University of Danang, Vietnam Duc-Hoang Vo University of Science and Technology The University of

More information

Image Processing, Analysis and Machine Vision

Image Processing, Analysis and Machine Vision Image Processing, Analysis and Machine Vision Milan Sonka PhD University of Iowa Iowa City, USA Vaclav Hlavac PhD Czech Technical University Prague, Czech Republic and Roger Boyle DPhil, MBCS, CEng University

More information

Image Normalization and Preprocessing for Gujarati Character Recognition

Image Normalization and Preprocessing for Gujarati Character Recognition 334 Image Normalization and Preprocessing for Gujarati Character Recognition Jayashree Rajesh Prasad Department of Computer Engineering, Sinhgad College of Engineering, University of Pune, Pune, Mahaashtra

More information

CLASSIFICATION OF BOUNDARY AND REGION SHAPES USING HU-MOMENT INVARIANTS

CLASSIFICATION OF BOUNDARY AND REGION SHAPES USING HU-MOMENT INVARIANTS CLASSIFICATION OF BOUNDARY AND REGION SHAPES USING HU-MOMENT INVARIANTS B.Vanajakshi Department of Electronics & Communications Engg. Assoc.prof. Sri Viveka Institute of Technology Vijayawada, India E-mail:

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

A Study of Optical Character Patterns identified by the different OCR Algorithms

A Study of Optical Character Patterns identified by the different OCR Algorithms International Journal of Scientific Research Publications, Volume 5, Issue 3, March 2015 1 A Study of Optical Character Patterns identified by the different OCR s Purna Vithlani *, Dr. C. K. Kumbharana

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK HANDWRITTEN DEVANAGARI CHARACTERS RECOGNITION THROUGH SEGMENTATION AND ARTIFICIAL

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

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

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

Hilditch s Algorithm Based Tamil Character Recognition

Hilditch s Algorithm Based Tamil Character Recognition Hilditch s Algorithm Based Tamil Character Recognition V. Karthikeyan Department of ECE, SVS College of Engineering Coimbatore, India, Karthick77keyan@gmail.com Abstract-Character identification plays

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

Handwriting Recognition of Diverse Languages

Handwriting Recognition of Diverse Languages Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.017 IJCSMC,

More information

Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network

Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network 139 Handwritten Gurumukhi Character Recognition by using Recurrent Neural Network Harmit Kaur 1, Simpel Rani 2 1 M. Tech. Research Scholar (Department of Computer Science & Engineering), Yadavindra College

More information

OFFLINE SIGNATURE VERIFICATION

OFFLINE SIGNATURE VERIFICATION International Journal of Electronics and Communication Engineering and Technology (IJECET) Volume 8, Issue 2, March - April 2017, pp. 120 128, Article ID: IJECET_08_02_016 Available online at http://www.iaeme.com/ijecet/issues.asp?jtype=ijecet&vtype=8&itype=2

More information

Implementation and Advanced Results on the Non-Interrupted Skeletonization Algorithm

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

More information

Handwritten Character Recognition with Feedback Neural Network

Handwritten Character Recognition with Feedback Neural Network Apash Roy et al / International Journal of Computer Science & Engineering Technology (IJCSET) Handwritten Character Recognition with Feedback Neural Network Apash Roy* 1, N R Manna* *Department of Computer

More information

Handwritten Text Recognition System Based on Neural Network

Handwritten Text Recognition System Based on Neural Network International Journal of Advanced Research in ISSN : 2347-8446 (Online) Handwritten Text Recognition System Based on Neural Network I Ahmed Mahdi Obaid, II Hazem M. El Bakry, III M.A. Eldosuky, IV A.I.

More information

An Improved Zone Based Hybrid Feature Extraction Model for Handwritten Alphabets Recognition Using Euler Number

An Improved Zone Based Hybrid Feature Extraction Model for Handwritten Alphabets Recognition Using Euler Number International Journal of Soft Computing and Engineering (IJSCE) An Improved Zone Based Hybrid Feature Extraction Model for Handwritten Alphabets Recognition Using Euler Number Om Prakash Sharma, M. K.

More information

Face recognition using Singular Value Decomposition and Hidden Markov Models

Face recognition using Singular Value Decomposition and Hidden Markov Models Face recognition using Singular Value Decomposition and Hidden Markov Models PETYA DINKOVA 1, PETIA GEORGIEVA 2, MARIOFANNA MILANOVA 3 1 Technical University of Sofia, Bulgaria 2 DETI, University of Aveiro,

More information

ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM

ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM ABJAD: AN OFF-LINE ARABIC HANDWRITTEN RECOGNITION SYSTEM RAMZI AHMED HARATY and HICHAM EL-ZABADANI Lebanese American University P.O. Box 13-5053 Chouran Beirut, Lebanon 1102 2801 Phone: 961 1 867621 ext.

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

Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques

Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques Automatic Recognition and Verification of Handwritten Legal and Courtesy Amounts in English Language Present on Bank Cheques Ajay K. Talele Department of Electronics Dr..B.A.T.U. Lonere. Sanjay L Nalbalwar

More information

Skeletonization Algorithm for Numeral Patterns

Skeletonization Algorithm for Numeral Patterns International Journal of Signal Processing, Image Processing and Pattern Recognition 63 Skeletonization Algorithm for Numeral Patterns Gupta Rakesh and Kaur Rajpreet Department. of CSE, SDDIET Barwala,

More information

An Investigation on the Performance of Hybrid Features for Feed Forward Neural Network Based English Handwritten Character Recognition System

An Investigation on the Performance of Hybrid Features for Feed Forward Neural Network Based English Handwritten Character Recognition System An Investigation on the Performance of Hybrid Features for Feed Forward Neural Network Based English Handwritten Character Recognition System J.PRADEEP #1, E.SRINIVASAN #2, S.HIMAVATHI *3 # Department

More information

A Novel Feature Extraction and Classification Methodology for the Recognition of Historical Documents

A Novel Feature Extraction and Classification Methodology for the Recognition of Historical Documents 2009 10th International Conference on Document Analysis and Recognition A Novel Feature Eraction and Classification Methodology for the Recognition of Historical Documents G. Vamvakas, B. Gatos and S.

More information

DATABASE DEVELOPMENT OF HISTORICAL DOCUMENTS: SKEW DETECTION AND CORRECTION

DATABASE DEVELOPMENT OF HISTORICAL DOCUMENTS: SKEW DETECTION AND CORRECTION DATABASE DEVELOPMENT OF HISTORICAL DOCUMENTS: SKEW DETECTION AND CORRECTION S P Sachin 1, Banumathi K L 2, Vanitha R 3 1 UG, Student of Department of ECE, BIET, Davangere, (India) 2,3 Assistant Professor,

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

Segmentation of Bangla Handwritten Text

Segmentation of Bangla Handwritten Text Thesis Report Segmentation of Bangla Handwritten Text Submitted By: Sabbir Sadik ID:09301027 Md. Numan Sarwar ID: 09201027 CSE Department BRAC University Supervisor: Professor Dr. Mumit Khan Date: 13 th

More information

An Efficient Hidden Markov Model for Offline Handwritten Numeral Recognition

An Efficient Hidden Markov Model for Offline Handwritten Numeral Recognition An Efficient Hidden Markov Model for Offline Handwritten Numeral Recognition 1 B S Saritha, 2 S Hemanth 1 M. Tech, IV Semester, Department of CSE, CMRIT Software Architect, IBM, Bangalore, India. sarithamys@yahoo.com

More information

An Optimized Hill Climbing Algorithm for Feature Subset Selection: Evaluation on Handwritten Character Recognition

An Optimized Hill Climbing Algorithm for Feature Subset Selection: Evaluation on Handwritten Character Recognition An Optimized Hill Climbing Algorithm for Feature Subset Selection: Evaluation on Handwritten Character Recognition Carlos M. Nunes, Alceu de S. Britto Jr.,2, Celso A. A. Kaestner and Robert Sabourin 3

More information

International Journal of Advance Research in Engineering, Science & Technology

International Journal of Advance Research in Engineering, Science & Technology Impact Factor (SJIF): 3.632 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 (Special Issue for ITECE 2016) Analysis and Implementation

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

Document Text Extraction from Document Images Using Haar Discrete Wavelet Transform

Document Text Extraction from Document Images Using Haar Discrete Wavelet Transform European Journal of Scientific Research ISSN 1450-216X Vol.36 No.4 (2009), pp.502-512 EuroJournals Publishing, Inc. 2009 http://www.eurojournals.com/ejsr.htm Document Text Extraction from Document Images

More information

Isolated Curved Gurmukhi Character Recognition Using Projection of Gradient

Isolated Curved Gurmukhi Character Recognition Using Projection of Gradient International Journal of Computational Intelligence Research ISSN 0973-1873 Volume 13, Number 6 (2017), pp. 1387-1396 Research India Publications http://www.ripublication.com Isolated Curved Gurmukhi Character

More information

A Technique for Classification of Printed & Handwritten text

A Technique for Classification of Printed & Handwritten text 123 A Technique for Classification of Printed & Handwritten text M.Tech Research Scholar, Computer Engineering Department, Yadavindra College of Engineering, Punjabi University, Guru Kashi Campus, Talwandi

More information

OFF-LINE HANDWRITTEN JAWI CHARACTER SEGMENTATION USING HISTOGRAM NORMALIZATION AND SLIDING WINDOW APPROACH FOR HARDWARE IMPLEMENTATION

OFF-LINE HANDWRITTEN JAWI CHARACTER SEGMENTATION USING HISTOGRAM NORMALIZATION AND SLIDING WINDOW APPROACH FOR HARDWARE IMPLEMENTATION OFF-LINE HANDWRITTEN JAWI CHARACTER SEGMENTATION USING HISTOGRAM NORMALIZATION AND SLIDING WINDOW APPROACH FOR HARDWARE IMPLEMENTATION Zaidi Razak 1, Khansa Zulkiflee 2, orzaily Mohamed or 3, Rosli Salleh

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

Automatic State Machine Induction for String Recognition

Automatic State Machine Induction for String Recognition Automatic State Machine Induction for String Recognition Boontee Kruatrachue, Nattachat Pantrakarn, and Kritawan Siriboon Abstract One problem of generating a model to recognize any string is how to generate

More information

Recognition of online captured, handwritten Tamil words on Android

Recognition of online captured, handwritten Tamil words on Android Recognition of online captured, handwritten Tamil words on Android A G Ramakrishnan and Bhargava Urala K Medical Intelligence and Language Engineering (MILE) Laboratory, Dept. of Electrical Engineering,

More information

A Recognition System for Devnagri and English Handwritten Numerals

A Recognition System for Devnagri and English Handwritten Numerals A Recognition System for Devnagri and English Handwritten Numerals G S Lehal 1 and Nivedan Bhatt 2 1 Department of Computer Science & Engineering, Thapar Institute of Engineering & Technology, Patiala,

More information

A Technique for Offline Handwritten Character Recognition

A Technique for Offline Handwritten Character Recognition A Technique for Offline Handwritten Character Recognition 1 Shilpy Bansal, 2 Mamta Garg, 3 Munish Kumar 1 Lecturer, Department of Computer Science Engineering, BMSCET, Muktsar, Punjab 2 Assistant Professor,

More information

Rough Set Approach to Unsupervised Neural Network based Pattern Classifier

Rough Set Approach to Unsupervised Neural Network based Pattern Classifier Rough Set Approach to Unsupervised Neural based Pattern Classifier Ashwin Kothari, Member IAENG, Avinash Keskar, Shreesha Srinath, and Rakesh Chalsani Abstract Early Convergence, input feature space with

More information

A two-stage approach for segmentation of handwritten Bangla word images

A two-stage approach for segmentation of handwritten Bangla word images A two-stage approach for segmentation of handwritten Bangla word images Ram Sarkar, Nibaran Das, Subhadip Basu, Mahantapas Kundu, Mita Nasipuri #, Dipak Kumar Basu Computer Science & Engineering Department,

More information

Character Recognition of High Security Number Plates Using Morphological Operator

Character Recognition of High Security Number Plates Using Morphological Operator Character Recognition of High Security Number Plates Using Morphological Operator Kamaljit Kaur * Department of Computer Engineering, Baba Banda Singh Bahadur Polytechnic College Fatehgarh Sahib,Punjab,India

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