LEKHAK [MAL]: A System for Online Recognition of Handwritten Malayalam Characters

Size: px
Start display at page:

Download "LEKHAK [MAL]: A System for Online Recognition of Handwritten Malayalam Characters"

Transcription

1 LEKHAK [MAL]: A System for Online Recognition of Handwritten Malayalam Characters Gowri Shankar, V. Anoop and V. S. Chakravarthy, Department of Electrical Engineering, Indian Institute of Technology, Madras, Chennai {schakra@ee.iitm.ernet.in} ABSTRACT A system for online recognition of handwritten Malayalam characters is presented. A handwritten character is constructed by executing a sequence of strokes. A structure- or shape-based representation of a stroke is used in which a stroke is represented as a string of shape features. Using this string representation, an unknown stroke is identified by comparing it with a database of strokes. A full character is recognized by identifying all the component strokes. Development of similar systems for other Indian scripts is contemplated. 1. INTRODUCTION Online handwriting recognition consists of recognizing a script as it is written using an electronic stylus or a pen on a tablet. Parameters related to the pen tip like position, velocity, acceleration and sometimes pressure (on the writing surface) are available to the data acquisition system [1]. Although early work looks back to the sixties, electronic pen devices have gained special attention in the recent times due to the increased demand for more human-like interfaces with the computer. Systems based on online handwriting recognition fall into three categories: 1) pen-based computers, 2) signature verifiers, and 3) developmental tools. The first refers to small hand-held computers that use pen-based inputs due to restrictions on keyboard size etc. The second refers to online signature verification to ascertain the identity of a person. The third class of systems used for educational and rehabilitation purposes, incorporate knowledge of neuromotor characteristics of handwriting [2,3]. Online handwriting recognition takes on a novel significance in the context of Indian languages. Presently, word processing in Indian languages can be a vexing experience, considering the restriction on use of the regular keyboard, designed for English. Elaborate keyboard mapping systems are normally used in case of Indian languages, which are not convenient to use. A comfortable solution would be to let the user write in a natural, normal fashion using a suitable pen-like device and let the computer do the rest. That transfers the burden of learning keyboard mappings from the user to the computer. This is the motivating idea of the present work. We have recently developed an online character recognition system for Tamil. Taking advantage of the similarities of Tamil and Malayalam characters we now present a similar system for Malayalam also. 2. THE MALAYALAM CHARACTER SET Malayalam script, as other Indian scripts, is generally written in non-cursive style, unlike English handwriting, which is normally written in cursive style rendering recognition difficult. However, Indian scripts pose a peculiar problem non-existent in European scripts the problem of composite characters. Unlike in English alphabet where a single character represents a consonant or a vowel, in Indian scripts a composite character represents all the sounds that comprise a complete syllable. For example, the word stree, a single syllable comprising three consonant sounds and a vowel, is represented by a single

2 composite character in which graphical elements corresponding to the 3 consonants and the vowel are combined to form a complex structure. For this reason, though the number of consonants and vowels is a small number, the number of composite characters may well run into thousands. However, the problem of composite characters is not so critical in Malayalam since the number of different ways in which the basic characters can form composite characters is quite restricted. Stroke Database Pen Input Preprocessing Feature Extraction Stroke Recognition The Malayalam script consists of 15 vowels, 36 consonants, 27 special or Grantha characters and 17 individual vowel modifiers. As a general rule when the vowel appears at the beginning of the word, the full vowel character is displayed. When a vowel appears inside a word, a vowel modifier is added to the preceding consonant creating a composite character. The only composite characters in Malayalam are of consonantvowel type, generating only a small number of combinations. Further only in a small number of cases do vowel modifications lead to new character shapes. Typically, vowel modification is obtained by prefixing and/or suffixing a consonant with specific structures. These simplifying features make Malayalam an ideal candidate for automated pen-based recognition. 3 THE ALGORITHM In our approach to recognition, a handwritten character is represented as a combination of strokes. A stroke is defined as the trajectory negotiated by the pen tip from the instant when it first made contact with the writing surface to the earliest moment when that contact is broken. Therefore, the first step in character recognition is to recognize all the component strokes in a character. Once the component strokes are identified, the character itself can be easily identified. The main modules in our Malayalam online recognition system are shown in figure 1. Figure 1: A schematic describing process flow of the online Malayalam character recognition system. 3.1 Pen Input Stroke-Char LUT We have used the Superpen TM, a product of UC Logic Inc. to generate online character data. The product, which comes with an electronic pen and a tablet, can also be used as a regular substitute for a mouse. Therefore, the pen trajectory can be recorded directly using the standard functions used for reading mouse coordinates. The pen also has provision for real-time monitoring of the pressure exerted by the pen tip on the tablet. However, pressure information is not used in our recognition algorithm. Therefore, data output by this stage consists of a sequence of strokes, where each stroke consists of the x- and y-coordinates of the pen tip, over a finite interval of time Preprocessing Character Recognition Display/Archive Preprocessing consists of normalization and smoothing of strokes. The x- and y- coordinates of each stroke are normalized such that the stroke fits tightly inside a unit

3 square. The time-varying coordinate functions, x(t) and y(t), are then smoothed independently along t-axis using a Gaussian filter of suitable standard deviation. represented as a string of shape features. Therefore, the function of feature extraction stage is to convert strokes into strings of shape features Feature extraction A feature-based approach, rather than a template-based one, is perhaps more appropriate for handwritten character recognition, considering the extent of distortion that handwritten characters undergo. In an earlier work [4], we have identified certain general features known as the shape features of handwritten characters, which are less susceptible to distortion introduced by writing. A set of 18 shape features used in the present system are summarized in Fig. 2. The 18 shape features are denoted by uppercase English alphabets from A to R. Figure 3: Representing Malayalam character R (as in Rishi) as a string of shape features Stroke Identification In this step, the shape feature string of an unknown stroke is compared with a database of such strings. This stroke database has shape feature strings of all the strokes that form handwritten Malayalam characters. A single stroke may have multiple variations. All the variations of a single stroke are given a common integer identity the stroke ID. The stroke identification step consists of mapping an unknown string of shape features onto a stroke ID. Figure 2: List of shape features. Since the shape features occur in a sequence along a stroke as it is drawn through time, a given stroke may be represented as a string of shape features. Fig. 3 shows how the Malayalam vowel character R (as in Rishi), written in a single stroke, can be Regular string matching techniques give disastrous results since, often, stray features are inserted or expected features absent in the unknown string. Therefore, the situation warrants use of soft-matching of strings. Our experience shows that the feature string of a typical stroke consists of stable feature sequences or feature words interspersed by noisy features. Corresponding words in both the database string and the unknown string are matched. Adding up all such match values give the total match between the two strings String matching algorithm Initialization: smallstr = unknown string;

4 largestr = database string; matchval = 0; Step 0: swap() Step 1: Look for smallstr(1) within largestr(1:win). If the search fails go back to step 1; If the search succeeds, clip largestr up to the point of match; swap(); go to step 2. Set i = 1; Step 2: Check if smallstr(i) = largestr(i). If true increment matchval by 1; i = i + 1; go to Step 2. If false go to Step 3. Step 3: Clip both strings up to point of last match. If the length of the smaller string is 0, STOP; else go to Step 1. (Note: The function swap() swaps largestr and smallstr if the length of the largestr happens to be smaller than the smallstr.) 3.5. Character Recognition Since a character is constructed by one or more strokes, recognizing a character consists of grouping stroke IDs into character IDs. This process is particularly simple in Malayalam, compared to other Indian scripts, since a majority of characters may be written using single strokes. Two kinds of character codes exist for any character set used in a word-processor program. One is a syntactic or a syllabic code, like the ASCII code for instance, and the other is a glyph code, which is the font code. For Indian scripts there is a syntactic or a syllabic code based on the sounds of the characters. Noted among them is the Indian Script Code for Information Interchange (ISCII), a government standard, which amazingly is a common code for all Indian script systems [5]. The other code used for display purposes is a font code, known in the present case as the Indian Standard FOnt Code (ISFOC), which varies with script. Malayalam script is written from left to right, like all other Indian script (barring perso-arabic scripts) using isolated graphical structures. Every such horizontally isolated structure has a unique ID in the ISFOC. In the present final stage of character recognition, the stroke IDs from the previous stage are mapped onto ISFOC IDs. 4. DISCUSSION We have presented a system for online recognition of Malayalam characters. In our approach, a character is considered as a combination of multiple strokes. A single stroke is represented as a string of shape features. Individual strokes are identified by comparing the unknown stroke with a database of strokes. Combinations of strokes are then mapped onto font codes of Malayalam characters. Figure 5 shows a screen dump of the userinterface of our system which consists 2 windows: the display window at the top and the client window at the bottom. The writer writes on the lines in the client window, and the recognized characters are displayed in the display window. Currently our stroke database consists of 86 strokes with a total of 216 variations. Stroke data is generated from 3 writers. Performance on 4 data sets generated by one of the above 3 writers is shown in Table 1. Future efforts towards improvement of this system will include populating both the stroke database and test sets using samples from a wider selection of writers. Test Sl.No. Recognized Strokes Total No. of Strokes % Recogniti on Table 1: Performance of LEKHAK on 4 test sets. The stroke database has 86 strokes with a total of 216 variations (i.e., about 3 variations for each stroke).

5 5. REFERENCES Figure 4: A sample of handwritten Malayalam text displayed in the client area of LEKHAK Figure 5: LEKHAK recognizes handwritten text shown in Figure 5. Only 1 mistake was made in the 4 th character of the last word, denoted by a question mark (? ). 1. R. Plamondon and S.N. Srihari, Online and Off-line Handwriting Recognition: A comprehensive survey. IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 22, No. 1, January, M. Eden, Handwriting and Pattern Recognition, IRE Transactions on Information Theory, vol. 8, R. Plamondon, D. Lopresti, L.R.B. Shomaker and R. Srihari, On-line Handwriting Recognition, Encyclopedia of Electrical and Electronics Eng., J.G. Webster, ed., vol. 15, pp , New York: Wiley, V.S. Chakravarthy and B. Kompella, The Shape of Handwritten Character, National Conference on Document Analysis and Character Recognition NCDAR2001, Mandya, India. July 12-13, Indian Script Code for Information Interchange, IS , Bureau of Indian Standards, Manak Bhavan, 9 Bahadur Shah Zafar Marg, New Delhi.

Online Handwriting Recognition for Tamil

Online Handwriting Recognition for Tamil Online Handwriting Recognition for Tamil K.H. Aparna, Vidhya Subramanian, M. Kasirajan, G. Vijay Prakash, V.S. Chakravarthy, Indian Institute of Technology, Chennai, India, 600036. Sriganesh Madhvanath,

More information

PATRAM - A Handwritten Word Processor for Indian Languages

PATRAM - A Handwritten Word Processor for Indian Languages PATRAM - A Handwritten Word Processor for Indian Languages Kamesh Madduri, K.H. Aparna, V.S. Chakravarthy Indian Institute of Technology Madras {kamesh, ee01m03, schakra}@ee.iitm.ernet.in Abstract In this

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

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

Online Bangla Handwriting Recognition System

Online Bangla Handwriting Recognition System 1 Online Bangla Handwriting Recognition System K. Roy Dept. of Comp. Sc. West Bengal University of Technology, BF 142, Saltlake, Kolkata-64, India N. Sharma, T. Pal and U. Pal Computer Vision and Pattern

More information

Preprocessing of Gurmukhi Strokes in Online Handwriting Recognition

Preprocessing of Gurmukhi Strokes in Online Handwriting Recognition 2012 3rd International Conference on Information Security and Artificial Intelligence (ISAI 2012) IPCSIT vol. 56 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V56.30 Preprocessing of Gurmukhi

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

Handwritten Marathi Character Recognition on an Android Device

Handwritten Marathi Character Recognition on an Android Device Handwritten Marathi Character Recognition on an Android Device Tanvi Zunjarrao 1, Uday Joshi 2 1MTech Student, Computer Engineering, KJ Somaiya College of Engineering,Vidyavihar,India 2Associate Professor,

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

Hierarchical Shape Primitive Features for Online Text-independent Writer Identification

Hierarchical Shape Primitive Features for Online Text-independent Writer Identification 2009 10th International Conference on Document Analysis and Recognition Hierarchical Shape Primitive Features for Online Text-independent Writer Identification Bangy Li, Zhenan Sun and Tieniu Tan Center

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

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

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

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

Online Signature Verification Technique

Online Signature Verification Technique Volume 3, Issue 1 ISSN: 2320-5288 International Journal of Engineering Technology & Management Research Journal homepage: www.ijetmr.org Online Signature Verification Technique Ankit Soni M Tech Student,

More information

On-line One Stroke Character Recognition Using Directional Features

On-line One Stroke Character Recognition Using Directional Features On-line One Stroke Character Recognition Using Directional Features Blind for review process 1 1 Blind for review process Abstract. This paper presents a method based on directional features for recognizing

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

Recognition of Unconstrained Malayalam Handwritten Numeral

Recognition of Unconstrained Malayalam Handwritten Numeral Recognition of Unconstrained Malayalam Handwritten Numeral U. Pal, S. Kundu, Y. Ali, H. Islam and N. Tripathy C VPR Unit, Indian Statistical Institute, Kolkata-108, India Email: umapada@isical.ac.in Abstract

More information

SEGMENTATION OF CHARACTERS WITHOUT MODIFIERS FROM A PRINTED BANGLA TEXT

SEGMENTATION OF CHARACTERS WITHOUT MODIFIERS FROM A PRINTED BANGLA TEXT SEGMENTATION OF CHARACTERS WITHOUT MODIFIERS FROM A PRINTED BANGLA TEXT ABSTRACT Rupak Bhattacharyya et al. (Eds) : ACER 2013, pp. 11 24, 2013. CS & IT-CSCP 2013 Fakruddin Ali Ahmed Department of Computer

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

A semi-incremental recognition method for on-line handwritten Japanese text

A semi-incremental recognition method for on-line handwritten Japanese text 2013 12th International Conference on Document Analysis and Recognition A semi-incremental recognition method for on-line handwritten Japanese text Cuong Tuan Nguyen, Bilan Zhu and Masaki Nakagawa Department

More information

Handwritten Numeral Recognition of Kannada Script

Handwritten Numeral Recognition of Kannada Script Handwritten Numeral Recognition of Kannada Script S.V. Rajashekararadhya Department of Electrical and Electronics Engineering CEG, Anna University, Chennai, India svr_aradhya@yahoo.co.in P. Vanaja Ranjan

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

II. WORKING OF PROJECT

II. WORKING OF PROJECT Handwritten character Recognition and detection using histogram technique Tanmay Bahadure, Pranay Wekhande, Manish Gaur, Shubham Raikwar, Yogendra Gupta ABSTRACT : Cursive handwriting recognition is a

More information

A Feature Extraction Technique for Online Handwriting Recognition

A Feature Extraction Technique for Online Handwriting Recognition A Feature ion Technique for Online Handwriting Recognition Brijesh Verma 1, Jenny Lu 1, Moumita Ghosh 2, Ranadhir Ghosh 2 1 Faculty of Informatics & Communication, Central Queensland Universtiy, Rockhampton,

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

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

Devanagari Handwriting Recognition and Editing Using Neural Network

Devanagari Handwriting Recognition and Editing Using Neural Network Devanagari Handwriting Recognition and Editing Using Neural Network Sohan Lal Sahu RSR Rungta College of Engineering & Technology (RSR-RCET), Bhilai 490024 Abstract- Character recognition plays an important

More information

Speeding up Online Character Recognition

Speeding up Online Character Recognition K. Gupta, S. V. Rao, P. Viswanath, Speeding up Online Character Recogniton, Proceedings of Image and Vision Computing New Zealand 27, pp. 1, Hamilton, New Zealand, December 27. Speeding up Online Character

More information

Opportunities and Challenges of Handwritten Sanskrit Character Recognition System

Opportunities and Challenges of Handwritten Sanskrit Character Recognition System Opportunities and Challenges of Handwritten System Shailendra Kumar Singh Research Scholar, CSE Department SLIET Longowal, Sangrur, Punjab, India Sks.it2012@gmail.com Manoj Kumar Sachan Assosiate Professor,

More information

Handwritten Text Recognition

Handwritten Text Recognition Handwritten Text Recognition M.J. Castro-Bleda, Joan Pasto Universidad Politécnica de Valencia Spain Zaragoza, March 2012 Text recognition () TRABHCI Zaragoza, March 2012 1 / 1 The problem: Handwriting

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: Designing Methodologies of Tamil Language in Web Services C.

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

A Hierarchical Pre-processing Model for Offline Handwritten Document Images

A Hierarchical Pre-processing Model for Offline Handwritten Document Images International Journal of Research Studies in Computer Science and Engineering (IJRSCSE) Volume 2, Issue 3, March 2015, PP 41-45 ISSN 2349-4840 (Print) & ISSN 2349-4859 (Online) www.arcjournals.org A Hierarchical

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

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

Camera. Pen Tip Tracker. Pen up / down Classifier

Camera. Pen Tip Tracker. Pen up / down Classifier Visual Input for Pen-Based Computers Mario E. Munich Pietro Perona California Institute of Technology 136-93 Pasadena, CA 91125, USA e-mail: fmariomu,peronag@vision.caltech.edu Abstract Handwriting may

More information

Handwriting Recognition, Learning and Generation

Handwriting Recognition, Learning and Generation Handwriting Recognition, Learning and Generation Rajat Shah, Shritek Jain, Sridhar Swamy Department of Computer Science, North Carolina State University, Raleigh, NC 27695 {rshah6, sjain9, snswamy}@ncsu.edu

More information

Complementary Features Combined in a MLP-based System to Recognize Handwritten Devnagari Character

Complementary Features Combined in a MLP-based System to Recognize Handwritten Devnagari Character Journal of Information Hiding and Multimedia Signal Processing 2011 ISSN 2073-4212 Ubiquitous International Volume 2, Number 1, January 2011 Complementary Features Combined in a MLP-based System to Recognize

More information

Skew Angle Detection of Bangla Script using Radon Transform

Skew Angle Detection of Bangla Script using Radon Transform Skew Angle Detection of Bangla Script using Radon Transform S. M. Murtoza Habib, Nawsher Ahamed Noor and Mumit Khan Center for Research on Bangla Language Processing, BRAC University, Dhaka, Bangladesh.

More information

An Online Repository of Mathematical Samples

An Online Repository of Mathematical Samples An Online Repository of Mathematical Samples Josef B. Baker, Alan P. Sexton and Volker Sorge School of Computer Science University of Birmingham Motivation Growing community working on recognition, parsing

More information

Character Recognition

Character Recognition Character Recognition 5.1 INTRODUCTION Recognition is one of the important steps in image processing. There are different methods such as Histogram method, Hough transformation, Neural computing approaches

More information

Workshop on Census Data Processing. TELEform Designer User Manual

Workshop on Census Data Processing. TELEform Designer User Manual Workshop on Census Data Processing TELEform Designer User Manual Contents TELEFORM MODULES... 1 TELEFORM DESIGNER MODULE... 1 FORM TEMPLATES... 1 Available Form Templates... 2 THE DESIGNER WORKSPACE...

More information

TRAINING ON-LINE HANDWRITING RECOGNIZERS USING SYNTHETICALLY GENERATED TEXT

TRAINING ON-LINE HANDWRITING RECOGNIZERS USING SYNTHETICALLY GENERATED TEXT TRAINING ON-LINE HANDWRITING RECOGNIZERS USING SYNTHETICALLY GENERATED TEXT Daniel Martín-Albo, Réjean Plamondon * and Enrique Vidal PRHLT Research Center Universitat Politècnica de València * Laboratoire

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

Isolated Handwritten Words Segmentation Techniques in Gurmukhi Script

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

More information

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

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 Two-stage Scheme for Dynamic Hand Gesture Recognition

A Two-stage Scheme for Dynamic Hand Gesture Recognition A Two-stage Scheme for Dynamic Hand Gesture Recognition James P. Mammen, Subhasis Chaudhuri and Tushar Agrawal (james,sc,tush)@ee.iitb.ac.in Department of Electrical Engg. Indian Institute of Technology,

More information

On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method

On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method T. Kanahori 1, K. Tabata 1, W. Cong 2, F.Tamari 2, and M. Suzuki 1 1 Graduate School of Mathematics, Kyushu University 36,

More information

FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USING BACKPROPAGATION NEURAL NETWORKS

FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USING BACKPROPAGATION NEURAL NETWORKS FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USING BACKPROPAGATION NEURAL NETWORKS Amritha Sampath 1, Tripti C 2 and Govindaru V 3 1 Department of Computer Science and Engineering,

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

A Combined Method for On-Line Signature Verification

A Combined Method for On-Line Signature Verification BULGARIAN ACADEMY OF SCIENCES CYBERNETICS AND INFORMATION TECHNOLOGIES Volume 14, No 2 Sofia 2014 Print ISSN: 1311-9702; Online ISSN: 1314-4081 DOI: 10.2478/cait-2014-0022 A Combined Method for On-Line

More information

Multi-Layer Perceptron Network For Handwritting English Character Recoginition

Multi-Layer Perceptron Network For Handwritting English Character Recoginition Multi-Layer Perceptron Network For Handwritting English Character Recoginition 1 Mohit Mittal, 2 Tarun Bhalla 1,2 Anand College of Engg & Mgmt., Kapurthala, Punjab, India Abstract Handwriting recognition

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

Proposals For Devanagari, Gurmukhi, And Gujarati Scripts Root Zone Label Generation Rules

Proposals For Devanagari, Gurmukhi, And Gujarati Scripts Root Zone Label Generation Rules Proposals For Devanagari, Gurmukhi, And Gujarati Scripts Root Zone Label Generation Rules Publication Date: 20 October 2018 Prepared By: IDN Program, ICANN Org Public Comment Proceeding Open Date: 27 July

More information

Universal Graphical User Interface for Online Handwritten Character Recognition

Universal Graphical User Interface for Online Handwritten Character Recognition Universal Graphical User Interface for Online Handwritten Character Recognition Thesis submitted in partial fulfillment of the requirements for the award of degree of Master of Engineering in Computer

More information

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 Study on the Consistency of Features for On-line Signature Verification

A Study on the Consistency of Features for On-line Signature Verification A Study on the Consistency of Features for On-line Signature Verification Center for Unified Biometrics and Sensors State University of New York at Buffalo Amherst, NY 14260 {hlei,govind}@cse.buffalo.edu

More information

User Manual Data Collection Tool 1.0.1

User Manual Data Collection Tool 1.0.1 User Manual Data Collection Tool 1.0.1 lipitk.sourceforge.net Table of Contents 1 Introduction...2 2 Data collection tool (DCT)...2 2.1 Introduction... 2 2.2 Requirements for running the tool...2 2.2.1

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

An HCR System for Combinational Malayalam Handwritten Characters based on HLH Patterns

An HCR System for Combinational Malayalam Handwritten Characters based on HLH Patterns An HCR System for Combinational Malayalam Handwritten based on HLH Patterns Abdul Rahiman M Karpagam University Coimbatore Aswathy Shajan, Amala IBM Chennai Rajasree M S Govt College of Engg Trivandrum

More information

Word-wise Hand-written Script Separation for Indian Postal automation

Word-wise Hand-written Script Separation for Indian Postal automation Word-wise Hand-written Script Separation for Indian Postal automation K. Roy U. Pal Dept. of Comp. Sc. & Engg. West Bengal University of Technology, Sector 1, Saltlake City, Kolkata-64, India Abstract

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

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

Online Handwritten Devnagari Word Recognition using HMM based Technique

Online Handwritten Devnagari Word Recognition using HMM based Technique Online Handwritten Devnagari Word using HMM based Technique Prachi Patil Master of Engineering Dept. of Electronics & Telecommunication Dr. D. Y. Patil SOE, Pune, India Saniya Ansari Professor Dept. of

More information

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852

IJESRT. Scientific Journal Impact Factor: (ISRA), Impact Factor: 1.852 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY INTELLEGENT APPROACH FOR OFFLINE SIGNATURE VERIFICATION USING CHAINCODE AND ENERGY FEATURE EXTRACTION ON MULTICORE PROCESSOR Raju

More information

Penpower Handwriter for Mac User Manual

Penpower Handwriter for Mac User Manual Penpower Handwriter for Mac User Manual Version: 6.2 Release: July, 2011 Edition: 3 Penpower Technology Ltd. Software User License Agreement You are licensed to legally use this software program ( the

More information

Estimating number of letters in on-line cursive words. Robert Powalka

Estimating number of letters in on-line cursive words. Robert Powalka Estimating number of letters in on-line cursive words 1. Introduction Robert Powalka 19 th November 1993 Recognition of on-line cursive script handwriting is a difficult task. Many different sources of

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

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

OpenType Font by Harsha Wijayawardhana UCSC

OpenType Font by Harsha Wijayawardhana UCSC OpenType Font by Harsha Wijayawardhana UCSC Introduction The OpenType font format is an extension of the TrueType font format, adding support for PostScript font data. The OpenType font format was developed

More information

Multi-font Numerals Recognition for Urdu Script based Languages

Multi-font Numerals Recognition for Urdu Script based Languages Multi-font Numerals Recognition for Urdu Script based Languages Muhammad Imran Razzak, S.A. Hussain, Abdel Belaïd, Muhammad Sher To cite this version: Muhammad Imran Razzak, S.A. Hussain, Abdel Belaïd,

More information

Design of a Template for Handwriting Based Hindi Text Entry in Handheld Devices

Design of a Template for Handwriting Based Hindi Text Entry in Handheld Devices Design of a Template for Handwriting Based Hindi Text Entry in Handheld Devices Diya Gangopadhyay 1, Ityam Vasal 2, and Pradeep Yammiyavar 3 1 Carnegie Mellon University, 5000 Forbes Avenue, Pittsburgh,

More information

Online Text-independent Writer Identification Based on Temporal Sequence and Shape Codes

Online Text-independent Writer Identification Based on Temporal Sequence and Shape Codes 2009 10th International Conference on Document Analysis and Recognition Online Text-independent Writer Identification Based on Temporal Sequence and Shape Codes Bangy Li and Tieniu Tan Center for Biometrics

More information

Hand Written Telugu Character Recognition Using Bayesian Classifier

Hand Written Telugu Character Recognition Using Bayesian Classifier Hand Written Telugu Character Recognition Using Bayesian Classifier K.Mohana Lakshmi 1,K.Venkatesh 2,G.Sunaina 3, D.Sravani 4, P.Dayakar 5 ECE Deparment, JNTUH, CMR Technical Campus, Hyderabad, India.

More information

IMPLEMENTING ON OPTICAL CHARACTER RECOGNITION USING MEDICAL TABLET FOR BLIND PEOPLE

IMPLEMENTING ON OPTICAL CHARACTER RECOGNITION USING MEDICAL TABLET FOR BLIND PEOPLE Impact Factor (SJIF): 5.301 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 5, Issue 3, March-2018 IMPLEMENTING ON OPTICAL CHARACTER

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

A New Approach to Detect and Extract Characters from Off-Line Printed Images and Text

A New Approach to Detect and Extract Characters from Off-Line Printed Images and Text Available online at www.sciencedirect.com Procedia Computer Science 17 (2013 ) 434 440 Information Technology and Quantitative Management (ITQM2013) A New Approach to Detect and Extract Characters from

More information

A Review on Different Character Segmentation Techniques for Handwritten Gurmukhi Scripts

A Review on Different Character Segmentation Techniques for Handwritten Gurmukhi Scripts WWJMRD2017; 3(10): 162-166 www.wwjmrd.com International Journal Peer Reviewed Journal Refereed Journal Indexed Journal UGC Approved Journal Impact Factor MJIF: 4.25 e-issn: 2454-6615 Manas Kaur Research

More information

Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier

Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier Recognition of Off-Line Handwritten Devnagari Characters Using Quadratic Classifier N. Sharma, U. Pal*, F. Kimura**, and S. Pal Computer Vision and Pattern Recognition Unit, Indian Statistical Institute

More information

Lossless Text Compression Technique Based on Static Dictionary for Unicode Tamil Document

Lossless Text Compression Technique Based on Static Dictionary for Unicode Tamil Document Volume 118 No. 9 2018, 669-675 ISSN: 1311-8080 (printed version); ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu Lossless Text Compression Technique Based on Static Dictionary for

More information

guessed style annotated.style mixed print mixed print cursive mixed mixed cursive

guessed style annotated.style mixed print mixed print cursive mixed mixed cursive COARSE WRITING-STYLE CLUSTERING BASED ON SIMPLE STROKE-RELATED FEATURES LOUIS VUURPIJL, LAMBERT SCHOMAKER NICI, Nijmegen Institute for Cognition and Information, University of Nijmegen, P.O.Box 9104, 6500

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

Xiaolin Li and Dit-Yan Yeung. Hong Kong University of Science and Technology. Clear Water Bay, Kowloon, HONG KONG

Xiaolin Li and Dit-Yan Yeung. Hong Kong University of Science and Technology. Clear Water Bay, Kowloon, HONG KONG On-line Handwritten Alphanumeric Character Recognition Using Feature Sequences Xiaolin Li and Dit-Yan Yeung Department of Computer Science Hong Kong University of Science and Technology Clear Water Bay,

More information

FRAGMENTATION OF HANDWRITTEN TOUCHING CHARACTERS IN DEVANAGARI SCRIPT

FRAGMENTATION OF HANDWRITTEN TOUCHING CHARACTERS IN DEVANAGARI SCRIPT International Journal of Information Technology, Modeling and Computing (IJITMC) Vol. 2, No. 1, February 2014 FRAGMENTATION OF HANDWRITTEN TOUCHING CHARACTERS IN DEVANAGARI SCRIPT Shuchi Kapoor 1 and Vivek

More information

Writer Authentication Based on the Analysis of Strokes

Writer Authentication Based on the Analysis of Strokes Writer Authentication Based on the Analysis of Strokes Kun Yu, Yunhong Wang, Tieniu Tan * NLPR, Institute of Automation, Chinese Academy of Sciences, Beijing, 00080 P.R.China ABSTRACT This paper presents

More information

Template-based Synthetic Handwriting Generation for the Training of Recognition Systems

Template-based Synthetic Handwriting Generation for the Training of Recognition Systems Template-based Synthetic Handwriting Generation for the Training of Recognition Systems Tamás VARGA, Daniel KILCHHOFER and Horst BUNKE Department of Computer Science, University of Bern Neubrückstrasse

More information

An Efficient on-line Signature Verification System Using Histogram Features

An Efficient on-line Signature Verification System Using Histogram Features RESEARCH ARTICLE OPEN ACCESS An Efficient on-line Signature Verification System Using Histogram Features Mr.Abilash S 1, Mrs.M.Janani, M.E 2 ME Computer Science and Engineering,Department of CSE, Annai

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

User Signature Identification and Image Pixel Pattern Verification

User Signature Identification and Image Pixel Pattern Verification Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 7 (2017), pp. 3193-3202 Research India Publications http://www.ripublication.com User Signature Identification and Image

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

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra

1. Introduction. 2. Motivation and Problem Definition. Volume 8 Issue 2, February Susmita Mohapatra Pattern Recall Analysis of the Hopfield Neural Network with a Genetic Algorithm Susmita Mohapatra Department of Computer Science, Utkal University, India Abstract: This paper is focused on the implementation

More information

Shape Feature Extraction for On-line Signature Evaluation

Shape Feature Extraction for On-line Signature Evaluation Shape Feature Extraction for On-line Signature Evaluation Jungpil Shin School of Computer Science and Engineering The University of Aizu Fukushima, Japan e-mail: jpshin@u-aizu.ac.jp Weichen Lin School

More information

Handwritten Text Recognition

Handwritten Text Recognition Handwritten Text Recognition M.J. Castro-Bleda, S. España-Boquera, F. Zamora-Martínez Universidad Politécnica de Valencia Spain Avignon, 9 December 2010 Text recognition () Avignon Avignon, 9 December

More information

A Feature based on Encoding the Relative Position of a Point in the Character for Online Handwritten Character Recognition

A Feature based on Encoding the Relative Position of a Point in the Character for Online Handwritten Character Recognition A Feature based on Encoding the Relative Position of a Point in the Character for Online Handwritten Character Recognition Dinesh Mandalapu, Sridhar Murali Krishna HP Laboratories India HPL-2007-109 July

More information

Arabic Text Extraction from Video Film

Arabic Text Extraction from Video Film 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.1117

More information

Review of Automatic Handwritten Kannada Character Recognition Technique Using Neural Network

Review of Automatic Handwritten Kannada Character Recognition Technique Using Neural Network Review of Automatic Handwritten Kannada Character Recognition Technique Using Neural Network 1 Mukesh Kumar, 2 Dr.Jeeetendra Sheethlani 1 Department of Computer Science SSSUTMS, Sehore Abstract Data processing

More information

DATA COLLECTION FOR HANDWRITING CORPUS CREATION IN INDIC SCRIPTS. Mudit Agrawal, Ajay S Bhaskarabhatla and Sriganesh Madhvanath

DATA COLLECTION FOR HANDWRITING CORPUS CREATION IN INDIC SCRIPTS. Mudit Agrawal, Ajay S Bhaskarabhatla and Sriganesh Madhvanath COLLECTION FOR HANDWRITING CORPUS CREATION IN INDIC SCRIPTS Mudit Agrawal, Ajay S Bhaskarabhatla and Sriganesh Madhvanath Hewlett-Packard Laboratories Bangalore, India {mudit.a@hp.com, ajay.bhaskarabhatla@edi.gatech.edu,

More information

Global Journal of Engineering Science and Research Management

Global Journal of Engineering Science and Research Management A REVIEW PAPER ON INERTIAL SENSOR BASED ALPHABET RECOGNITION USING CLASSIFIERS Mrs. Jahidabegum K. Shaikh *1 Prof. N.A. Dawande 2 1* E & TC department, Dr. D.Y.Patil college Of Engineering, Talegaon Ambi

More information