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

Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...
Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...
Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...iosrjce
 
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
 
Character recognition project
Character recognition projectCharacter recognition project
Character recognition projectMonsif sakienah
 
Rule based algorithm for handwritten characters recognition
Rule based algorithm for handwritten characters recognitionRule based algorithm for handwritten characters recognition
Rule based algorithm for handwritten characters recognitionRanda Elanwar
 
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
 
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
 
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
 
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
 
Character recognition of Devanagari characters using Artificial Neural Network
Character recognition of Devanagari characters using Artificial Neural NetworkCharacter recognition of Devanagari characters using Artificial Neural Network
Character recognition of Devanagari characters using Artificial Neural Networkijceronline
 
Recognition of handwritten digits using rbf neural network
Recognition of handwritten digits using rbf neural networkRecognition of handwritten digits using rbf neural network
Recognition of handwritten digits using rbf neural networkeSAT Publishing House
 
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
 
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
 
Automatic handwriting recognition
Automatic handwriting recognitionAutomatic handwriting recognition
Automatic handwriting recognitionBIJIT GHOSH
 
Off-line English Character Recognition: A Comparative Survey
Off-line English Character Recognition: A Comparative SurveyOff-line English Character Recognition: A Comparative Survey
Off-line English Character Recognition: A Comparative Surveyidescitation
 
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
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001IJARTES
 

What's hot (19)

Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...
Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...
Handwritten Character Recognition: A Comprehensive Review on Geometrical Anal...
 
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
 
Character recognition project
Character recognition projectCharacter recognition project
Character recognition project
 
Rule based algorithm for handwritten characters recognition
Rule based algorithm for handwritten characters recognitionRule based algorithm for handwritten characters recognition
Rule based algorithm for handwritten characters recognition
 
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
 
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...
 
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
 
Handwritten Character Recognition
Handwritten Character RecognitionHandwritten Character Recognition
Handwritten Character Recognition
 
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
 
Character recognition of Devanagari characters using Artificial Neural Network
Character recognition of Devanagari characters using Artificial Neural NetworkCharacter recognition of Devanagari characters using Artificial Neural Network
Character recognition of Devanagari characters using Artificial Neural Network
 
Recognition of handwritten digits using rbf neural network
Recognition of handwritten digits using rbf neural networkRecognition of handwritten digits using rbf neural network
Recognition of handwritten digits using rbf neural network
 
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
 
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
 
Automatic handwriting recognition
Automatic handwriting recognitionAutomatic handwriting recognition
Automatic handwriting recognition
 
Co4201605611
Co4201605611Co4201605611
Co4201605611
 
E123440
E123440E123440
E123440
 
Off-line English Character Recognition: A Comparative Survey
Off-line English Character Recognition: A Comparative SurveyOff-line English Character Recognition: A Comparative Survey
Off-line English Character Recognition: A Comparative Survey
 
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...
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001
 

Similar to Artificial Neural Network For Recognition Of Handwritten Devanagari Character

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
 
Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)IJERA Editor
 
journal paper publication
journal paper publicationjournal paper publication
journal paper publicationrikaseorika
 
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
 
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
 
­­­­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
 
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
 
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
 
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
 
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
 

Similar to Artificial Neural Network For Recognition Of Handwritten Devanagari Character (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
 
Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)Character Recognition (Devanagari Script)
Character Recognition (Devanagari Script)
 
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
 
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...
 
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
 
­­­­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...
 
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
 
I017256165
I017256165I017256165
I017256165
 
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...
 
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...
 
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...
 

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

List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfisabel213075
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgsaravananr517913
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectErbil Polytechnic University
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONjhunlian
 
Crushers to screens in aggregate production
Crushers to screens in aggregate productionCrushers to screens in aggregate production
Crushers to screens in aggregate productionChinnuNinan
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Crystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxCrystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxachiever3003
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm Systemirfanmechengr
 
Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxVelmuruganTECE
 
National Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfNational Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfRajuKanojiya4
 
Industrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptIndustrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptNarmatha D
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxRomil Mishra
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Ch10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfCh10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfChristianCDAM
 

Recently uploaded (20)

List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdf
 
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfgUnit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
Unit7-DC_Motors nkkjnsdkfnfcdfknfdgfggfg
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
Risk Management in Engineering Construction Project
Risk Management in Engineering Construction ProjectRisk Management in Engineering Construction Project
Risk Management in Engineering Construction Project
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
 
Crushers to screens in aggregate production
Crushers to screens in aggregate productionCrushers to screens in aggregate production
Crushers to screens in aggregate production
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Crystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptxCrystal Structure analysis and detailed information pptx
Crystal Structure analysis and detailed information pptx
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm System
 
Internet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptxInternet of things -Arshdeep Bahga .pptx
Internet of things -Arshdeep Bahga .pptx
 
National Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfNational Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdf
 
Industrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptIndustrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.ppt
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Mine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptxMine Environment II Lab_MI10448MI__________.pptx
Mine Environment II Lab_MI10448MI__________.pptx
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Ch10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdfCh10-Global Supply Chain - Cadena de Suministro.pdf
Ch10-Global Supply Chain - Cadena de Suministro.pdf
 

Artificial Neural Network For Recognition Of Handwritten Devanagari Character

  • 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.