SlideShare a Scribd company logo
1 of 5
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 1, Ver. I (Jan – Feb. 2015), PP 60-64
www.iosrjournals.org
DOI: 10.9790/0661-17116064 www.iosrjournals.org 60 | Page
Artificial Neural Network For Recognition Of Handwritten
Devanagari Character
Ms. Seema A. Dongare1
, Prof. Dhananjay B. Kshirsagar2
, Mr. Nitin J.Khapale3
,
Ms. Amruta D. Pawar4
12
(Computer Department, SRESCOE Kopargaon, India)
3
(E&TC Department, KBP Polytechnic Kopargaon, India)
4
(IT Department, KBP Polytechnic Kopargaon, India)
Abstract: Information gathering is one of the most important thing in the digital world, many organizations
still use handwritten documents for storing their information. So it is important task to convert this information
in to digital world. Handwritten character recognition helps user to convert their handwritten documents in to
digital information. Purpose of this dissertation work is to implement zone based feature extraction method
which is combination of image centroid zone and zone centroid zone of individual character image. In feature
extraction using zone based approach, individual character image is divided into n equal size zones then
average distance of all pixels with respect to image centroid or zone centroid is computed. In combination of
image centroid and zone centroid approach it computes average distance of all pixels present in each zone with
respect to image centroid as well as zone centroid which gives feature vector of size 2Xn features. This feature
vector is presented to feed forward neural network for recognition.
Keywords: Feed forward neural network, handwritten character recognition, image centroid zone, zone
centroid zone.
I. Introduction
Optical character recognition converts scanned images of printed or handwritten text into digital text.
Handwritten character recognition is a field of OCR. Basically there are two classes of HCR as off line character
recognition and on line character recognition. In off line character recognition, writing is captured optically by
scanner while in on line character recognition coordinates of successive points are represented as function of
time as well strokes made by user are also considered. Handwritten character recognition is an intelligent optical
character recognition capable of handling the complexity of writing, writing environment, materials, etc.
Handwritten Devanagari characters are quite complex for recognition due to presence of header line,
conjunct characters and similarity in shapes of multiple characters. The main purpose of this paper is to
introduce a method for recognition of handwritten Devanagari characters using segmentation and neural
networks. The whole process of recognition works in stages as preprocessing on document image, segmentation
of document into lines, line into words and word into characters, finally recognition using feed forward
neural network. Important steps in any HCR are preprocessing, segmentation, feature extraction and recognition
using neural network [2].
II. Related Work
K. Y. Rajput and S. Mishra have proposed a system for recognizing handwritten Indian Devanagari
script. In feature extraction character matrix as an array of black and white pixels of size 30X30 is prepared.
Afterwards, the Feed Forward neural network with back propagation is used in learning and recognition process.
[3].
S. Arora, D. Bhattacharjee proposed two stage classification approaches for handwritten Devanagari
characters. The first stage is using structural properties like detection of shirorekha, spine in character and
second stage exploits some intersection features of characters which are presented to a feed forward neural
network. Each handwritten character can be adequately represented within 16 segments (each of size 25 X 25
pixels) and hence 32 features for each character can be used as input to neural network [4].
V. Agnihotri proposed Handwritten Devanagari script recognition using neural network. Diagonal
based feature extraction is used for extracting features of the handwritten Devanagari script. These feature set is
converted into chromosome bit string of length 378.Individual character image of size 90x60 pixels is divided
into 54 equal sized zones. Each zone has 19 diagonal lines and the foreground pixels present along each
diagonal line is summed to get a single sub feature, thus 19 sub features are obtained from each zone.
These 19 sub features values are averaged to form a single feature value and placed in the corresponding
zone. Finally, 54 features are extracted for each character [5].
Artificial Neural Network for Recognition of Handwritten Devanagari Character
DOI: 10.9790/0661-17116064 www.iosrjournals.org 61 | Page
D. Singh, S. Singh and Dr. M. Dutta proposed twelve directional feature inputs depending upon the
gradients. This technique can recognize all types of handwritten characters even special characters in any
language [6].N. Sharma, U. Pal, F. Kimura, and S. Pal have proposed a quadratic classifier based scheme for the
recognition of offline Devanagari handwritten characters. Features used in the classifier are obtained from the
directional chain code information of the contour points of the characters. This technique has achieved 98.86%
and 80.36% recognition accuracy on Devanagari numerals and characters, respectively [7].
III. Devanagari Script
3.1 Properties of Devanagari Script
Devanagari script has features different from other languages. Devanagari character set has 13 vowels,
36 consonants and 10 numerals with optional modifier symbols. Characters are organized into three zones as
upper, middle and lower zone. Core characters are positioned in middle zone, while optional modifiers in upper
and lower zones. Two characters may be connected to each other. In Devanagari script, the concept of
uppercase and lowercase characters is absent. Fig. 2 represents Devanagari character set. It represents
Devanagari character modifier set. Modifiers are optional symbols arranged in upper and lower zones.
3.2 Issues Regarding Recognition of Devanagari Script
Some reasons that cause recognition of Devanagari characters difficult are as:
1. In Devanagari Script individual characters are connected by header line (Shirorekha) which makes
segmentation of individual character is quite difficult.
2. Characters may be connected to form conjuncts for which separation is complex.
3. Presence of modifiers makes segmentation difficult.
4. Some Devanagari characters are similar in shape.
Fig. 1 Devanagari Character Set
IV. Proposed System
HCR works in stages as preprocessing, segmentation, feature extraction and recognition using neural
network. Preprocessing includes series of operations to be carried out on document image to make it ready for
segmentation. During segmentation the document image is segmented into individual character or numeric
image then feature extraction technique is applied on character image. Finally feature vector is presented to the
neural network for recognition.
Fig. 2 Block Diagram of system
Artificial Neural Network for Recognition of Handwritten Devanagari Character
DOI: 10.9790/0661-17116064 www.iosrjournals.org 62 | Page
4.1 Preprocessing
The preprocessing consists of series of operations as grayscale conversion, noise removal, and
binarization. After selecting Devanagari document image, color image is converted into gray scale. Unwanted
contents are removed from image. Then binarization is applied on gray scale image.
4.2 Segmentation
Once Image preprocessing is done it is necessary to segment document into lines, line into words and
word into characters. When individual character has been separated from document we can extract features
from it for recognition.
4.3 Feature Extraction
For feature extraction we have implemented grid based approach which is the combination of
image centroid zone and grid centroid zone of individual character or numerical image. In this
technique individual character image is resized to a size of 256X256 and then divided into 16 equal
sized grids each of size 64X64. Average distance of all pixels with respect to image centroid and zone
centroid is computed. It gives feature vector of size 2X16 features.
Algorithm: Image Centroid Zone (ICZ) and zone centroid zone (ZCZ) feature extraction.
Input: Preprocessed individual character image.
Output: Extracted features for classification and recognition.
Algorithm:
Begins
Step 1: Divide an input image in to n equal sized grids.
Step 2: Compute distance between the image centroid and each pixel present in the grid.
Step 3: Compute the distance between the grid centroid and each pixel present in the grid.
Step 4: Repeat step 2 and 3 for the entire pixels present in the grid.
Step 5: Computation of average distance between these points with respect to image centroid.
Step 6: Computation of average distance between these points with respect to grid centroid.
Step 7: Repeat this procedure for all grids.
Step 8: Obtaining 2Xn such features for classification and recognition.
Ends
Fig. 3 Feature Extraction from Devanagari Numeral Image “A”
Fig. 3 shows an illustration of procedure to extract features from Devanagari character "A". Let
d1,d2,d3,...,dn are distances from image centroid similarly D1,D2,D3,...,Dn are distances from the zone
centroid, then compute average distances between these points separately. This gives 2 feature values for each
zone. Same procedure is repeated sequentially for each of zone. With combination of ICZ and ZCZ we will have
two feature values per zone which gives 32 feature values provided no of zones are as 16 [1].
Artificial Neural Network for Recognition of Handwritten Devanagari Character
DOI: 10.9790/0661-17116064 www.iosrjournals.org 63 | Page
4.3.4 Recognition of Characters using Neural Network
The back end used for performing recognition is neural network. In the off-line recognition system, the
neural network is fast and reliable tool in order to achieve high recognition accuracy. This module will
implement Artificial Neural Network using error back propagation (EBP) algorithm.
Fig. 4 shows structure of feed forward neural network with one input, hidden and one output layer. We have
implemented feed forward neural network with following specification.
 Input nodes: 32 input neurons (2 X 16 for combination of ICZ and ZCZ)
 Output nodes : 41 output neurons.
 No of Hidden layer : 1 with 4 nodes.
 Training algorithm : Error Back Propagation.
 Performance function : Mean Square Error.
Fig. 4 Neural Network Structure
V. Result And Discussion
We have studied various research papers which reveal that the difficulty of handwritten character
recognition has two aspects. The first is attributed to the writer variations in style, size, shape, ink color, ink
flow and thickness, digitization imperfections etc. The second is the deficiencies of the particular method used
for feature extraction. With consideration of these two aspects neural network training and testing has been
performed and observations are recorded.
We have created synthetic dataset consisting of total 2460 patterns out of which we have used 1640
patterns for training and 820 patterns for test. We have divided this dataset into two datasets as Dataset1 and
Dataset2 which contains 820 and 1640 patterns of each alphabet respectively. Testing has been performed on
separate dataset containing 20 patterns of each alphabet total of 820 patterns. During testing we have recorded
accuracy in terms of number of characters recognized accurately with percentage accuracy for each character.
From Table1 we can analyze that with increase in size of dataset used to train neural network, accuracy
of recognition increases. Accuracy of the system depends on writing order and style, font size and color,
thickness.
Table1. Combined Result Set for Dataset1 and Dataset2
Sr. No. Character % Accuracy
Training: Dataset1
% Accuracy
Training: Dataset2
1 k 70 80
2 ba 55 80
3 [ 55 80
4 na 55 80
5 t 55 75
From these two we can observe that when size of training dataset increases recognition accuracy
increases. Neural network accuracy depends on size of dataset used to train it. Larger the dataset increases
accuracy but decreases speed of recognition. For few characters accuracy remains same or slight increase has
been observed, reasons behind this can be due to similarity in shapes of multiple Devanagari characters, or may
be simply due to variations in writing styles. From Fig. 5 we can conclude with increase in size of dataset used
to train neural network, accuracy of recognition increases.
Artificial Neural Network for Recognition of Handwritten Devanagari Character
DOI: 10.9790/0661-17116064 www.iosrjournals.org 64 | Page
Fig. 5 Comparative Accuracy Analysis for Dataset1 and Dataset2
The dataset consists 2460 patterns of Devanagari alphabets. We have used zone based feature
extraction techniques on these samples in which we have extracted 32 feature values from each character image.
We have obtained different recognition accuracy on different characters. First we have tested system on 20 test
patterns of each alphabets, the highest accuracy obtained for character is 90. Then we have tested it on test
document with alphabets here maximum accuracy we have achieved is 77. And finally testing has been done on
different documents where we get average accuracy as 75%.
VI. Conclusion
Development of handwritten Devanagari OCR is a challenging task in Pattern recognition area. Here,
we proposed a method which does the segmentation of handwritten document into lines, words and characters.
And further recognition process will be done with the help of neural network. This system needs to be tested on
a wider variety of images containing characters in diverse fonts and sizes. It has been found that recognition of
handwritten Devanagari characters is quite difficult task due to presence of header line, conjunct characters and
similarity in shapes for multiple characters.
Acknowledgement
I am very much thankful to my respected project guide and Head of Dept. Prof. D. B. Kshirsagar,
for his ideas and help proved to be valuable and helpful during the creation of this dissertation work. I am
also thankful to our P.G. Coordinator Prof. P. N. Kalavadekar, for helping m e while selecting and
preparing dissertation work. I would like to thank all the faculties who have helped me during my
dissertation work. Lastly, I am thankful to my friends who shared their knowledge in this field with
me.
References
[1]. G. Sinha, Mrs. R. Rani, Prof. R. Dhir ,Recognition Using Zonal Based Feature Extraction Method and SVM Classifier ,
International Journal of Advanced Research in Computer Science and Software Engineering , ISSN: 2277 128X, Volume 2,
Issue 6, June 2012.
[2]. M. Patil, V. Narawade, Recognition of Handwritten Devanagari Characters through Segmentation and Artificial neural networks ,
International Journal of Engineering Research and Technology (IJERT) , ISSN:2278-0181,Vol. 1 Issue 6, August 2012.
[3]. K. Y. Rajput, S. Mishra, Recognition and Editing of Devanagari Handwriting Using Neural Network, Proceedings of SPIT-IEEE
Colloquium and International Conference, Vol. 1.
[4]. S. Arora, D. Bhattacharjee, M. Nasipuri, L. Malik and B. Portier, A Two Stage Classification Approach for Handwritten
Devanagari Characters.
[5]. V. Agnihotri, Offline Handwritten Devanagari Script Recognition, IJITCS, 2012, 8, 37-42.
[6]. D. Singh, S. Singh and Dr. M. Dutta, Handwritten Character Recognition Using Twelve Directional Feature Input and Neural
Network, International Journal of Computer Applications, 0975-8887, Vol. 1.
[7]. N. Sharma, U. Pal, F. Kimura and S. Pal, Recognition of Off-Line Handwritten Devanagari Characters Using Quadratic Classifier.
[8]. V. Bansal, R. Sinha, Segmentation of touching and fused Devanagari characters , Pattern Recognition 35,875-893, 2002.

More Related Content

What's hot

Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)IJERA Editor
 
Hand Written Character Recognition Using Neural Networks
Hand Written Character Recognition Using Neural Networks Hand Written Character Recognition Using Neural Networks
Hand Written Character Recognition Using Neural Networks Chiranjeevi Adi
 
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...Editor IJMTER
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001IJARTES
 
Representation and recognition of handwirten digits using deformable templates
Representation and recognition of handwirten digits using deformable templatesRepresentation and recognition of handwirten digits using deformable templates
Representation and recognition of handwirten digits using deformable templatesAhmed Abd-Elwasaa
 
Handwriting Recognition Using Deep Learning and Computer Version
Handwriting Recognition Using Deep Learning and Computer VersionHandwriting Recognition Using Deep Learning and Computer Version
Handwriting Recognition Using Deep Learning and Computer VersionNaiyan Noor
 
Artificial Neural Network / Hand written character Recognition
Artificial Neural Network / Hand written character RecognitionArtificial Neural Network / Hand written character Recognition
Artificial Neural Network / Hand written character RecognitionDr. Uday Saikia
 
A Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition SystemA Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition Systemiosrjce
 
Project report - Bengali digit recongnition using SVM
Project report - Bengali digit recongnition using SVMProject report - Bengali digit recongnition using SVM
Project report - Bengali digit recongnition using SVMMohammad Saiful Islam
 
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...IRJET Journal
 
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIER
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIERHANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIER
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIERvineet raj
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabijcses
 
Segmentation and recognition of handwritten digit numeral string using a mult...
Segmentation and recognition of handwritten digit numeral string using a mult...Segmentation and recognition of handwritten digit numeral string using a mult...
Segmentation and recognition of handwritten digit numeral string using a mult...ijfcstjournal
 
Devnagari handwritten numeral recognition using geometric features and statis...
Devnagari handwritten numeral recognition using geometric features and statis...Devnagari handwritten numeral recognition using geometric features and statis...
Devnagari handwritten numeral recognition using geometric features and statis...Vikas Dongre
 
Handwritten character recognition using artificial neural network
Handwritten character recognition using artificial neural networkHandwritten character recognition using artificial neural network
Handwritten character recognition using artificial neural networkHarshana Madusanka Jayamaha
 
offline character recognition for handwritten gujarati text
offline character recognition for handwritten gujarati textoffline character recognition for handwritten gujarati text
offline character recognition for handwritten gujarati textBhumika Patel
 
Character recognition project
Character recognition projectCharacter recognition project
Character recognition projectMonsif sakienah
 

What's hot (20)

Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)
 
Hand Written Character Recognition Using Neural Networks
Hand Written Character Recognition Using Neural Networks Hand Written Character Recognition Using Neural Networks
Hand Written Character Recognition Using Neural Networks
 
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001
 
Representation and recognition of handwirten digits using deformable templates
Representation and recognition of handwirten digits using deformable templatesRepresentation and recognition of handwirten digits using deformable templates
Representation and recognition of handwirten digits using deformable templates
 
Handwriting Recognition Using Deep Learning and Computer Version
Handwriting Recognition Using Deep Learning and Computer VersionHandwriting Recognition Using Deep Learning and Computer Version
Handwriting Recognition Using Deep Learning and Computer Version
 
Artificial Neural Network / Hand written character Recognition
Artificial Neural Network / Hand written character RecognitionArtificial Neural Network / Hand written character Recognition
Artificial Neural Network / Hand written character Recognition
 
A Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition SystemA Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition System
 
Project report - Bengali digit recongnition using SVM
Project report - Bengali digit recongnition using SVMProject report - Bengali digit recongnition using SVM
Project report - Bengali digit recongnition using SVM
 
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...
­­­­Cursive Handwriting Recognition System using Feature Extraction and Artif...
 
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIER
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIERHANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIER
HANDWRITTEN DIGIT RECOGNITION USING k-NN CLASSIFIER
 
Seminar5
Seminar5Seminar5
Seminar5
 
Neural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlabNeural network based numerical digits recognization using nnt in matlab
Neural network based numerical digits recognization using nnt in matlab
 
Segmentation and recognition of handwritten digit numeral string using a mult...
Segmentation and recognition of handwritten digit numeral string using a mult...Segmentation and recognition of handwritten digit numeral string using a mult...
Segmentation and recognition of handwritten digit numeral string using a mult...
 
Devnagari handwritten numeral recognition using geometric features and statis...
Devnagari handwritten numeral recognition using geometric features and statis...Devnagari handwritten numeral recognition using geometric features and statis...
Devnagari handwritten numeral recognition using geometric features and statis...
 
Handwritten character recognition using artificial neural network
Handwritten character recognition using artificial neural networkHandwritten character recognition using artificial neural network
Handwritten character recognition using artificial neural network
 
offline character recognition for handwritten gujarati text
offline character recognition for handwritten gujarati textoffline character recognition for handwritten gujarati text
offline character recognition for handwritten gujarati text
 
Character recognition project
Character recognition projectCharacter recognition project
Character recognition project
 
Handwritten Character Recognition
Handwritten Character RecognitionHandwritten Character Recognition
Handwritten Character Recognition
 
Text Detection and Recognition
Text Detection and RecognitionText Detection and Recognition
Text Detection and Recognition
 

Viewers also liked

Investigation of General Equation That Best Describe the Relationship between...
Investigation of General Equation That Best Describe the Relationship between...Investigation of General Equation That Best Describe the Relationship between...
Investigation of General Equation That Best Describe the Relationship between...IOSR Journals
 
Network Lifetime Analysis of Routing Protocols of Short Network in Qualnet
Network Lifetime Analysis of Routing Protocols of Short Network in QualnetNetwork Lifetime Analysis of Routing Protocols of Short Network in Qualnet
Network Lifetime Analysis of Routing Protocols of Short Network in QualnetIOSR Journals
 
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...IOSR Journals
 
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...IOSR Journals
 
Cooperative Data Forwarding In AODV Routing Protocol
Cooperative Data Forwarding In AODV Routing ProtocolCooperative Data Forwarding In AODV Routing Protocol
Cooperative Data Forwarding In AODV Routing ProtocolIOSR Journals
 
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...IOSR Journals
 
Prime Labelling Of Some Special Graphs
Prime Labelling Of Some Special GraphsPrime Labelling Of Some Special Graphs
Prime Labelling Of Some Special GraphsIOSR Journals
 

Viewers also liked (20)

F1102024349
F1102024349F1102024349
F1102024349
 
O01052126130
O01052126130O01052126130
O01052126130
 
Investigation of General Equation That Best Describe the Relationship between...
Investigation of General Equation That Best Describe the Relationship between...Investigation of General Equation That Best Describe the Relationship between...
Investigation of General Equation That Best Describe the Relationship between...
 
G017154852
G017154852G017154852
G017154852
 
M017619194
M017619194M017619194
M017619194
 
Network Lifetime Analysis of Routing Protocols of Short Network in Qualnet
Network Lifetime Analysis of Routing Protocols of Short Network in QualnetNetwork Lifetime Analysis of Routing Protocols of Short Network in Qualnet
Network Lifetime Analysis of Routing Protocols of Short Network in Qualnet
 
I010145860
I010145860I010145860
I010145860
 
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...
Chebyshev Collocation Approach for a Continuous Formulation of Implicit Hybri...
 
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...
Evaluation Of Indian Companies Act 1956- Is It Capable Enough To Accelerate T...
 
K010416167
K010416167K010416167
K010416167
 
F017414853
F017414853F017414853
F017414853
 
Cooperative Data Forwarding In AODV Routing Protocol
Cooperative Data Forwarding In AODV Routing ProtocolCooperative Data Forwarding In AODV Routing Protocol
Cooperative Data Forwarding In AODV Routing Protocol
 
B011120723
B011120723B011120723
B011120723
 
I012314854
I012314854I012314854
I012314854
 
K012256874
K012256874K012256874
K012256874
 
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...
Encephalization – An Evolutionary Predisposition to Diabetes: A “Large Brain ...
 
P01226101106
P01226101106P01226101106
P01226101106
 
B010511015
B010511015B010511015
B010511015
 
J1103046570
J1103046570J1103046570
J1103046570
 
Prime Labelling Of Some Special Graphs
Prime Labelling Of Some Special GraphsPrime Labelling Of Some Special Graphs
Prime Labelling Of Some Special Graphs
 

Similar to L017116064

Comparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral RecognitionComparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral RecognitionIOSR Journals
 
journal paper publication
journal paper publicationjournal paper publication
journal paper publicationrikaseorika
 
Paper id 24201433
Paper id 24201433Paper id 24201433
Paper id 24201433IJRAT
 
A Survey of Modern Character Recognition Techniques
A Survey of Modern Character Recognition TechniquesA Survey of Modern Character Recognition Techniques
A Survey of Modern Character Recognition Techniquesijsrd.com
 
A Review on Geometrical Analysis in Character Recognition
A Review on Geometrical Analysis in Character RecognitionA Review on Geometrical Analysis in Character Recognition
A Review on Geometrical Analysis in Character Recognitioniosrjce
 
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdf
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdfHandwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdf
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdfSachin414679
 
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...cscpconf
 
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...csandit
 
Hand-written Hindi Word Recognition - A Comprehensive Survey
Hand-written Hindi Word Recognition - A Comprehensive SurveyHand-written Hindi Word Recognition - A Comprehensive Survey
Hand-written Hindi Word Recognition - A Comprehensive SurveyIRJET Journal
 
Optical character recognition performance analysis of sif and ldf based ocr
Optical character recognition performance analysis of sif and ldf based ocrOptical character recognition performance analysis of sif and ldf based ocr
Optical character recognition performance analysis of sif and ldf based ocrcsandit
 
A Novel Approach to Recognize Handwritten Gujarati Digits.pdf
A Novel Approach to Recognize Handwritten Gujarati Digits.pdfA Novel Approach to Recognize Handwritten Gujarati Digits.pdf
A Novel Approach to Recognize Handwritten Gujarati Digits.pdfSamantha Martinez
 
Optical Character Recognition from Text Image
Optical Character Recognition from Text ImageOptical Character Recognition from Text Image
Optical Character Recognition from Text ImageEditor IJCATR
 
Recognition of compound characters in Kannada language
Recognition of compound characters in Kannada languageRecognition of compound characters in Kannada language
Recognition of compound characters in Kannada languageIJECEIAES
 
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...acijjournal
 
Improvement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestImprovement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestIJERA Editor
 
Improvement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestImprovement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestYoussef Rachidi
 
A Survey on Tamil Handwritten Character Recognition using OCR Techniques
A Survey on Tamil Handwritten Character Recognition using OCR TechniquesA Survey on Tamil Handwritten Character Recognition using OCR Techniques
A Survey on Tamil Handwritten Character Recognition using OCR Techniquescscpconf
 

Similar to L017116064 (20)

Comparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral RecognitionComparative study of two methods for Handwritten Devanagari Numeral Recognition
Comparative study of two methods for Handwritten Devanagari Numeral Recognition
 
Isolated Kannada Character Recognition using Chain Code Features
Isolated Kannada Character Recognition using Chain Code FeaturesIsolated Kannada Character Recognition using Chain Code Features
Isolated Kannada Character Recognition using Chain Code Features
 
A017240107
A017240107A017240107
A017240107
 
journal paper publication
journal paper publicationjournal paper publication
journal paper publication
 
Paper id 24201433
Paper id 24201433Paper id 24201433
Paper id 24201433
 
A Survey of Modern Character Recognition Techniques
A Survey of Modern Character Recognition TechniquesA Survey of Modern Character Recognition Techniques
A Survey of Modern Character Recognition Techniques
 
I017256165
I017256165I017256165
I017256165
 
A Review on Geometrical Analysis in Character Recognition
A Review on Geometrical Analysis in Character RecognitionA Review on Geometrical Analysis in Character Recognition
A Review on Geometrical Analysis in Character Recognition
 
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdf
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdfHandwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdf
Handwriting_Recognition_using_KNN_classificatiob_algorithm_ijariie6729 (1).pdf
 
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
 
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
OCR-THE 3 LAYERED APPROACH FOR CLASSIFICATION AND IDENTIFICATION OF TELUGU HA...
 
Hand-written Hindi Word Recognition - A Comprehensive Survey
Hand-written Hindi Word Recognition - A Comprehensive SurveyHand-written Hindi Word Recognition - A Comprehensive Survey
Hand-written Hindi Word Recognition - A Comprehensive Survey
 
Optical character recognition performance analysis of sif and ldf based ocr
Optical character recognition performance analysis of sif and ldf based ocrOptical character recognition performance analysis of sif and ldf based ocr
Optical character recognition performance analysis of sif and ldf based ocr
 
A Novel Approach to Recognize Handwritten Gujarati Digits.pdf
A Novel Approach to Recognize Handwritten Gujarati Digits.pdfA Novel Approach to Recognize Handwritten Gujarati Digits.pdf
A Novel Approach to Recognize Handwritten Gujarati Digits.pdf
 
Optical Character Recognition from Text Image
Optical Character Recognition from Text ImageOptical Character Recognition from Text Image
Optical Character Recognition from Text Image
 
Recognition of compound characters in Kannada language
Recognition of compound characters in Kannada languageRecognition of compound characters in Kannada language
Recognition of compound characters in Kannada language
 
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...
FREEMAN CODE BASED ONLINE HANDWRITTEN CHARACTER RECOGNITION FOR MALAYALAM USI...
 
Improvement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random ForestImprovement of the Recognition Rate by Random Forest
Improvement of the Recognition Rate by Random Forest
 
Improvement oh the recognition rate by random forest
Improvement oh the recognition rate by random forestImprovement oh the recognition rate by random forest
Improvement oh the recognition rate by random forest
 
A Survey on Tamil Handwritten Character Recognition using OCR Techniques
A Survey on Tamil Handwritten Character Recognition using OCR TechniquesA Survey on Tamil Handwritten Character Recognition using OCR Techniques
A Survey on Tamil Handwritten Character Recognition using OCR Techniques
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsPrecisely
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 

Recently uploaded (20)

Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Unlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power SystemsUnlocking the Potential of the Cloud for IBM Power Systems
Unlocking the Potential of the Cloud for IBM Power Systems
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 

L017116064

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 1, Ver. I (Jan – Feb. 2015), PP 60-64 www.iosrjournals.org DOI: 10.9790/0661-17116064 www.iosrjournals.org 60 | Page Artificial Neural Network For Recognition Of Handwritten Devanagari Character Ms. Seema A. Dongare1 , Prof. Dhananjay B. Kshirsagar2 , Mr. Nitin J.Khapale3 , Ms. Amruta D. Pawar4 12 (Computer Department, SRESCOE Kopargaon, India) 3 (E&TC Department, KBP Polytechnic Kopargaon, India) 4 (IT Department, KBP Polytechnic Kopargaon, India) Abstract: Information gathering is one of the most important thing in the digital world, many organizations still use handwritten documents for storing their information. So it is important task to convert this information in to digital world. Handwritten character recognition helps user to convert their handwritten documents in to digital information. Purpose of this dissertation work is to implement zone based feature extraction method which is combination of image centroid zone and zone centroid zone of individual character image. In feature extraction using zone based approach, individual character image is divided into n equal size zones then average distance of all pixels with respect to image centroid or zone centroid is computed. In combination of image centroid and zone centroid approach it computes average distance of all pixels present in each zone with respect to image centroid as well as zone centroid which gives feature vector of size 2Xn features. This feature vector is presented to feed forward neural network for recognition. Keywords: Feed forward neural network, handwritten character recognition, image centroid zone, zone centroid zone. I. Introduction Optical character recognition converts scanned images of printed or handwritten text into digital text. Handwritten character recognition is a field of OCR. Basically there are two classes of HCR as off line character recognition and on line character recognition. In off line character recognition, writing is captured optically by scanner while in on line character recognition coordinates of successive points are represented as function of time as well strokes made by user are also considered. Handwritten character recognition is an intelligent optical character recognition capable of handling the complexity of writing, writing environment, materials, etc. Handwritten Devanagari characters are quite complex for recognition due to presence of header line, conjunct characters and similarity in shapes of multiple characters. The main purpose of this paper is to introduce a method for recognition of handwritten Devanagari characters using segmentation and neural networks. The whole process of recognition works in stages as preprocessing on document image, segmentation of document into lines, line into words and word into characters, finally recognition using feed forward neural network. Important steps in any HCR are preprocessing, segmentation, feature extraction and recognition using neural network [2]. II. Related Work K. Y. Rajput and S. Mishra have proposed a system for recognizing handwritten Indian Devanagari script. In feature extraction character matrix as an array of black and white pixels of size 30X30 is prepared. Afterwards, the Feed Forward neural network with back propagation is used in learning and recognition process. [3]. S. Arora, D. Bhattacharjee proposed two stage classification approaches for handwritten Devanagari characters. The first stage is using structural properties like detection of shirorekha, spine in character and second stage exploits some intersection features of characters which are presented to a feed forward neural network. Each handwritten character can be adequately represented within 16 segments (each of size 25 X 25 pixels) and hence 32 features for each character can be used as input to neural network [4]. V. Agnihotri proposed Handwritten Devanagari script recognition using neural network. Diagonal based feature extraction is used for extracting features of the handwritten Devanagari script. These feature set is converted into chromosome bit string of length 378.Individual character image of size 90x60 pixels is divided into 54 equal sized zones. Each zone has 19 diagonal lines and the foreground pixels present along each diagonal line is summed to get a single sub feature, thus 19 sub features are obtained from each zone. These 19 sub features values are averaged to form a single feature value and placed in the corresponding zone. Finally, 54 features are extracted for each character [5].
  • 2. Artificial Neural Network for Recognition of Handwritten Devanagari Character DOI: 10.9790/0661-17116064 www.iosrjournals.org 61 | Page D. Singh, S. Singh and Dr. M. Dutta proposed twelve directional feature inputs depending upon the gradients. This technique can recognize all types of handwritten characters even special characters in any language [6].N. Sharma, U. Pal, F. Kimura, and S. Pal have proposed a quadratic classifier based scheme for the recognition of offline Devanagari handwritten characters. Features used in the classifier are obtained from the directional chain code information of the contour points of the characters. This technique has achieved 98.86% and 80.36% recognition accuracy on Devanagari numerals and characters, respectively [7]. III. Devanagari Script 3.1 Properties of Devanagari Script Devanagari script has features different from other languages. Devanagari character set has 13 vowels, 36 consonants and 10 numerals with optional modifier symbols. Characters are organized into three zones as upper, middle and lower zone. Core characters are positioned in middle zone, while optional modifiers in upper and lower zones. Two characters may be connected to each other. In Devanagari script, the concept of uppercase and lowercase characters is absent. Fig. 2 represents Devanagari character set. It represents Devanagari character modifier set. Modifiers are optional symbols arranged in upper and lower zones. 3.2 Issues Regarding Recognition of Devanagari Script Some reasons that cause recognition of Devanagari characters difficult are as: 1. In Devanagari Script individual characters are connected by header line (Shirorekha) which makes segmentation of individual character is quite difficult. 2. Characters may be connected to form conjuncts for which separation is complex. 3. Presence of modifiers makes segmentation difficult. 4. Some Devanagari characters are similar in shape. Fig. 1 Devanagari Character Set IV. Proposed System HCR works in stages as preprocessing, segmentation, feature extraction and recognition using neural network. Preprocessing includes series of operations to be carried out on document image to make it ready for segmentation. During segmentation the document image is segmented into individual character or numeric image then feature extraction technique is applied on character image. Finally feature vector is presented to the neural network for recognition. Fig. 2 Block Diagram of system
  • 3. Artificial Neural Network for Recognition of Handwritten Devanagari Character DOI: 10.9790/0661-17116064 www.iosrjournals.org 62 | Page 4.1 Preprocessing The preprocessing consists of series of operations as grayscale conversion, noise removal, and binarization. After selecting Devanagari document image, color image is converted into gray scale. Unwanted contents are removed from image. Then binarization is applied on gray scale image. 4.2 Segmentation Once Image preprocessing is done it is necessary to segment document into lines, line into words and word into characters. When individual character has been separated from document we can extract features from it for recognition. 4.3 Feature Extraction For feature extraction we have implemented grid based approach which is the combination of image centroid zone and grid centroid zone of individual character or numerical image. In this technique individual character image is resized to a size of 256X256 and then divided into 16 equal sized grids each of size 64X64. Average distance of all pixels with respect to image centroid and zone centroid is computed. It gives feature vector of size 2X16 features. Algorithm: Image Centroid Zone (ICZ) and zone centroid zone (ZCZ) feature extraction. Input: Preprocessed individual character image. Output: Extracted features for classification and recognition. Algorithm: Begins Step 1: Divide an input image in to n equal sized grids. Step 2: Compute distance between the image centroid and each pixel present in the grid. Step 3: Compute the distance between the grid centroid and each pixel present in the grid. Step 4: Repeat step 2 and 3 for the entire pixels present in the grid. Step 5: Computation of average distance between these points with respect to image centroid. Step 6: Computation of average distance between these points with respect to grid centroid. Step 7: Repeat this procedure for all grids. Step 8: Obtaining 2Xn such features for classification and recognition. Ends Fig. 3 Feature Extraction from Devanagari Numeral Image “A” Fig. 3 shows an illustration of procedure to extract features from Devanagari character "A". Let d1,d2,d3,...,dn are distances from image centroid similarly D1,D2,D3,...,Dn are distances from the zone centroid, then compute average distances between these points separately. This gives 2 feature values for each zone. Same procedure is repeated sequentially for each of zone. With combination of ICZ and ZCZ we will have two feature values per zone which gives 32 feature values provided no of zones are as 16 [1].
  • 4. Artificial Neural Network for Recognition of Handwritten Devanagari Character DOI: 10.9790/0661-17116064 www.iosrjournals.org 63 | Page 4.3.4 Recognition of Characters using Neural Network The back end used for performing recognition is neural network. In the off-line recognition system, the neural network is fast and reliable tool in order to achieve high recognition accuracy. This module will implement Artificial Neural Network using error back propagation (EBP) algorithm. Fig. 4 shows structure of feed forward neural network with one input, hidden and one output layer. We have implemented feed forward neural network with following specification.  Input nodes: 32 input neurons (2 X 16 for combination of ICZ and ZCZ)  Output nodes : 41 output neurons.  No of Hidden layer : 1 with 4 nodes.  Training algorithm : Error Back Propagation.  Performance function : Mean Square Error. Fig. 4 Neural Network Structure V. Result And Discussion We have studied various research papers which reveal that the difficulty of handwritten character recognition has two aspects. The first is attributed to the writer variations in style, size, shape, ink color, ink flow and thickness, digitization imperfections etc. The second is the deficiencies of the particular method used for feature extraction. With consideration of these two aspects neural network training and testing has been performed and observations are recorded. We have created synthetic dataset consisting of total 2460 patterns out of which we have used 1640 patterns for training and 820 patterns for test. We have divided this dataset into two datasets as Dataset1 and Dataset2 which contains 820 and 1640 patterns of each alphabet respectively. Testing has been performed on separate dataset containing 20 patterns of each alphabet total of 820 patterns. During testing we have recorded accuracy in terms of number of characters recognized accurately with percentage accuracy for each character. From Table1 we can analyze that with increase in size of dataset used to train neural network, accuracy of recognition increases. Accuracy of the system depends on writing order and style, font size and color, thickness. Table1. Combined Result Set for Dataset1 and Dataset2 Sr. No. Character % Accuracy Training: Dataset1 % Accuracy Training: Dataset2 1 k 70 80 2 ba 55 80 3 [ 55 80 4 na 55 80 5 t 55 75 From these two we can observe that when size of training dataset increases recognition accuracy increases. Neural network accuracy depends on size of dataset used to train it. Larger the dataset increases accuracy but decreases speed of recognition. For few characters accuracy remains same or slight increase has been observed, reasons behind this can be due to similarity in shapes of multiple Devanagari characters, or may be simply due to variations in writing styles. From Fig. 5 we can conclude with increase in size of dataset used to train neural network, accuracy of recognition increases.
  • 5. Artificial Neural Network for Recognition of Handwritten Devanagari Character DOI: 10.9790/0661-17116064 www.iosrjournals.org 64 | Page Fig. 5 Comparative Accuracy Analysis for Dataset1 and Dataset2 The dataset consists 2460 patterns of Devanagari alphabets. We have used zone based feature extraction techniques on these samples in which we have extracted 32 feature values from each character image. We have obtained different recognition accuracy on different characters. First we have tested system on 20 test patterns of each alphabets, the highest accuracy obtained for character is 90. Then we have tested it on test document with alphabets here maximum accuracy we have achieved is 77. And finally testing has been done on different documents where we get average accuracy as 75%. VI. Conclusion Development of handwritten Devanagari OCR is a challenging task in Pattern recognition area. Here, we proposed a method which does the segmentation of handwritten document into lines, words and characters. And further recognition process will be done with the help of neural network. This system needs to be tested on a wider variety of images containing characters in diverse fonts and sizes. It has been found that recognition of handwritten Devanagari characters is quite difficult task due to presence of header line, conjunct characters and similarity in shapes for multiple characters. Acknowledgement I am very much thankful to my respected project guide and Head of Dept. Prof. D. B. Kshirsagar, for his ideas and help proved to be valuable and helpful during the creation of this dissertation work. I am also thankful to our P.G. Coordinator Prof. P. N. Kalavadekar, for helping m e while selecting and preparing dissertation work. I would like to thank all the faculties who have helped me during my dissertation work. Lastly, I am thankful to my friends who shared their knowledge in this field with me. References [1]. G. Sinha, Mrs. R. Rani, Prof. R. Dhir ,Recognition Using Zonal Based Feature Extraction Method and SVM Classifier , International Journal of Advanced Research in Computer Science and Software Engineering , ISSN: 2277 128X, Volume 2, Issue 6, June 2012. [2]. M. Patil, V. Narawade, Recognition of Handwritten Devanagari Characters through Segmentation and Artificial neural networks , International Journal of Engineering Research and Technology (IJERT) , ISSN:2278-0181,Vol. 1 Issue 6, August 2012. [3]. K. Y. Rajput, S. Mishra, Recognition and Editing of Devanagari Handwriting Using Neural Network, Proceedings of SPIT-IEEE Colloquium and International Conference, Vol. 1. [4]. S. Arora, D. Bhattacharjee, M. Nasipuri, L. Malik and B. Portier, A Two Stage Classification Approach for Handwritten Devanagari Characters. [5]. V. Agnihotri, Offline Handwritten Devanagari Script Recognition, IJITCS, 2012, 8, 37-42. [6]. D. Singh, S. Singh and Dr. M. Dutta, Handwritten Character Recognition Using Twelve Directional Feature Input and Neural Network, International Journal of Computer Applications, 0975-8887, Vol. 1. [7]. N. Sharma, U. Pal, F. Kimura and S. Pal, Recognition of Off-Line Handwritten Devanagari Characters Using Quadratic Classifier. [8]. V. Bansal, R. Sinha, Segmentation of touching and fused Devanagari characters , Pattern Recognition 35,875-893, 2002.