SlideShare una empresa de Scribd logo
1 de 4
Descargar para leer sin conexión
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 
_______________________________________________________________________________________ 
Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 83 
CHARACTER RECOGNITION FOR BI-LINGUAL MIXED-TYPE CHARACTERS USING ARTIFICIAL NEURAL NETWORK Rekha Singh1 1M.Tech Scholar, Department of Computer Science, Saroj Institute of Engineering & Technology, Lucknow, India Abstract Artificial Intelligence has evolved to a great extent since its inception and is spreading wide day to day. Today, nearly all aspects of human life have a sound presence of some sort of application of artificial intelligence. A key role in this is of Artificial Neural network, a very vital branch of Artificial Intelligence. A vast majority of day by day applications have their evolvement from Artificial Neural Network, especially applications developed for those tasks which were earlier believed to be best performed by only human beings. This potential of ANNs lies in its degree of simplicity and generality; bringing the difference down in between, Human mind capability and machines. This paper basically deals with recognition of isolated machine print as well as hand-written characters using artificial neural networks. The important aspect of this paper which makes it different from similar works in this field is that I have approached this problem with bilingual character set. I have approached to the recent trend where people are at home with use of English as well as Hindi language, not only in speaking but also in writing. Due to this, my focus has been to device network with almost equal capability of recognizing characters in both scripts; Devnagri and English. Besides this, text content faced by us in day to day is a mixture of type written and hand written. So the characters are either computer generated or by human handwriting. For this purpose data collection, feature extraction and neural network designs have been achieved. The training phase has successfully been completed with 790 samples of handwritten samples computer generated font styles. The overall performance of the system has been achieved more than 95%, quite significant in case of human handwriting. Keywords: Artificial Neural Network; Character, Recognition; Feed-forward Back-propagation Network 
-------------------------------------------------------------------***------------------------------------------------------------------- I. INTRODUCTION Machine simulation of human functions has been a very challenging research area since the advent of digital computers. In some areas which require certain amount of intelligence, such as number crunching or chess playing, tremendous improvements are achieved. On the other hand, humans still outperform even the most powerful computers in the relatively routine functions such as vision. Machine simulation of human reading is one of these areas, which was the subject of intensive research for the last three decades, yet it is still too far from the final frontier [1] [3]. Character recognition has always been a special problem. The problem increases when we operate it in the offline mode [9] where we need to read characters from some document thus by performing feature extraction, one of the complex processes. We see a lot of work has been done in this area in the past few years. The solutions being proposed mainly use Artificial Neural Networks (ANN) for solving the problem. And, this is well justified as, in case of Humans this is also done by the Neural Network [3] which quite accurately perform the Character recognition. 
The early work on the automatic recognition of characters has been concentrated either upon well printed text or upon small set of well distinguished handwritten text or symbols. Successful, but, constrained algorithms had been implemented mostly for Latin characters and numerals. Besides, some studies on Japanese, Chinese, Hebrew, Indian, Cyrillic, Greek and Arabic characters and numerals in both printed and handwritten cases have also been done[2][4]. 
Nowadays, there is a renewed interest in the character recognition field, which involves the recognition of both printed and handwritten characters [5]. It is not only that we now have more compact and powerful computers and more accurate electronic equipment such as scanner, camera, electronic tablet etc., but also we have better recognition algorithms which utilize advanced methodologies such as Neural Networks, Hidden Markov Models or Fuzzy Set Reasoning. But, still there is a long way to go in order to reach the ultimate goal of machine simulation of fluent human reading. 2. THE PROPOSED APPROACH Handwriting recognition is a well-known problem which involves the recognition of whatever input is given in form of image, scanned paper, etc. The handwriting recognition generally involves the following steps, which are also been adapted in this work. 
Scanning the document: A properly printed document is chosen for scanning A scanner software is invoked which scans the document. The document is sent to a program that saves it in preferably TIF, JPG or GIF format, so that the
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 
_______________________________________________________________________________________ 
Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 84 
image of the document can be obtained when needed. This is the step in Optical Character Recognition. The size of the input image is taken as per the requirement of the feature extraction procedure. Segmentation: This step deals with the breaking of the lines, words and finally getting all the characters separated. This step involves the identification of the boundaries of the character and separating them for further processing. In this approach adopted by me, first I have gone through line by line extraction of characters. After completing this line by line extraction, I have done with character by character extraction for each and every line applying the same approach as with line extraction but with a little change thus applying no extra emphasis for character extraction. This way, I have left with the inputs to the developed system as single characters. Preprocessing & Feature Extraction: This step involves the initial processing of the image, so that it can be used as an input for the recognition system. In this step, I had to concentrate over some issues which are quite important to make the input images unique as the input size of the neural network is always going to remain constant in terms of number of neurons in input layer. Therefore, each image should be of same size in terms of pixels, there dimensions should be same regardless the actual dimension of the character. For this reason, I have gone for a perfect square image. Classification and Character Recognition: Once the input image is available in good condition, it may be processed for recognition. The role of the recognition system is to identify the character. The neural network designed in this work uses an image as an input for the same. 3. IMPLEMENTATION Shown following is the procedure followed in the segmentation and pre-processing phase. 
Step 1: For the network to train, the requirement has been set as an image file which may consists multiple lines and each line having multiple characters. The task prior to creation and training of a proper network is to generate a significant training set. Therefore, I have taken around 79 font styles for training of the network. In the initial stage, for the sake of measuring networks performance easily, the training set has limited to 10 characters only i.e. E, A, R, I, O, d] j] g] l] u. And so, the number of training sample has gone to 79 x 10= 790 samples. Step 2: Once the image for training is ready, the next task is segmentation of the image in proper format. This is further broken in two phases. First, the segmentation is done in horizontal direction thus extracting line of characters. The basic rule for this is looking for line of white spaces and continuing till any horizontal line having signature of some character is found. Once, the line with signature of some character is found, we continue to scan horizontally till we keep founding signature of characters i.e. non-white space. We stop when we found a horizontal line with only white spaces. It indicates that we have left with an image of having a line of characters. Now, the next step is to scan this new image to get the individual characters. We have also temporary stored each line of character.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 
_______________________________________________________________________________________ 
Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 85 
Step 3: Once an image of a single line having multiple 
characters in horizontal direction is achieved, the next phase 
is to apply same approach as of horizontal segmentation in 
vertical direction for each such line image and extract 
individual characters this time. For this, I have rotated the 
line image by 900 and applied logic of horizontal 
segmentation previously applied for achieving line image, 
thus getting vertical segmentation. 
Step 4: After getting individual character images, the 
images are to be fed into neural network as input during the 
training phase and also in testing the network. The input size 
has to be remaining same during the whole process of 
training and also network has to be remaining same after 
completion of training. So, I have made each character same 
in size and dimension. 
4. EXPERIMENTAL RESULTS 
I have done my experimentation on feed forward back 
propagation network, which is till date the best proven 
network for application related with pattern recognition. In 
my character recognition work I have worked upon type 
written as well as hand written characters. More importantly, 
my work is based upon recognition of characters of not just 
one but two scripts simultaneously keeping the network 
unchanged. 
In the following figures, I am showing the comparative ratio 
of success in recognition of English as well as Hindi 
characters which have been achieved during training phase. 
For this comparative study I have first, taken each character 
keeping same dimensions of 15x15 pixels. After which, I 
have kept dimension in 20x20 pixel; thus increasing range 
of input from 225 (15x15) to 400 (20x20). Following drawn 
are the results drawn. This is obvious that the feed forward 
back propagation network (FFBPN) is performing quite 
similar with very minor difference in their character-wise 
training performance for both the variation in image 
dimension (i.e. 15x15 and 20x20). This is also due to a 
sufficiently large training set. The above tables also show 
that FFBP Network in both of these cases has achieved 
training up to a saturation level in this phase. However, their 
actual performance is shown during the testing phase. 
Fig 2: Comparative network performances for image 
Dimension= 15x15 for Handwritten 79x10samples 
Fig 3: Comparative network performances for image 
Dimension = 20x20 for Handwritten 79x10samples 
The network has achieved saturation on 40 Hidden layer 
neurons in case of image dimension of 15x15 while the 
saturation for dimension size 20x20 is achieved at 50 hidden 
layer neurons. This shows that as we increase the input size 
of the network, we get saturation on higher number of 
hidden layer neuron. However, we have also got very slight 
improvement in recognition rate on increasing input size. 
After training performance on handwritten characters, I have 
performed the same operations with typewritten characters. 
For this a total number of 1000 (100 x 10) character samples 
have been taken. Below drawn in Fig are the results which 
consists result of this training. 
Fig. 4: Comparative network performances for image 
Dimension= 15x15 for Typewritten 79x10samples 
Fig. 5: Comparative network performances for image 
Dimension= 20x20 for Typewritten 79x10samples
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 
_______________________________________________________________________________________ 
Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 86 
5. CONCLUSIONS In this paper, I have presented a character recognition system and have shown the improvements achieved during this network implementation and its testing over real data. The important findings of the work may be summarized as follows: In this work, I have implemented a character recognition system using feed forward back propagation network. A sufficient collection of characters written in different font (hand written and type written) styles were kept for training this network and some type-written as well as handwritten data was kept for testing these networks. This work has shown an improvement in performance of Feed Forward back-propagation Network and achieved more than 80% performance for handwritten samples for which system was untrained. This work has still a good scope for future work. Some of the possibilities in this direction are as follows: 
 The network has been worked only with 10 characters (5 characters of English and 5 character of Hindi) due to processing limit of system. The network can be further analyzed as well as enhanced to get similar performance for a larger range of characters. 
 In today’s environment, the possibilities are there for a mixed set of characters where more than one type of language can be used in day to day business. Keeping that in view, system can also be improved for Multilanguage environment. However, the main limitation is again of high speed of development platform. 
 I have gone with improving of the single network i.e. the back propagation network. The comparison may be done with few other networks used in classification problem. 
 The network can be further trained over a much larger data set. 
REFERENCES [1]. Pranob K Charles, V. Harish, M. Swathi and CH. Deepti, “A Review on the Various Techniques used for Optical Character Recognition”, International Journal of Engineering Research and Applications(IJERA), ISSN: 2248-9622, Vol. 2 Issue 1, Jan-Feb 2012, pp.659-662. [2]. Sumedha B. Hallale and Geeta D. Salunke, ”Offline Handwriting Charater Recognition : A Review”, International Journal of Advanced Computer and Mathematical Sciences, ISSN 2230-9624, Vol. 4, Issue 4, 2013, pp250-265. [3]. Kauleshwar Prasad, Devrat C. Nigam, Ashmika Lakhotiya and Dheeren Umre, “Character Recognition Using Matlab’s Neural Network Toolbox”, International Journal of u- and e- Service, Science and Technology, Vol. 6, No.1 , February, 2013. 
[4]. Neha Sahu and Nitin Kali Raman, “An Efficient Handwritten Devnagari Character Recognition System Using Neural Network”, International Multi- Conference on Automation, Computing, Communication, Control and Compressed Sensing (iMac4s), 2013, Page(s):173-177. 
[5]. Kunal Ravindra Shah and Dipak Dattatray Badgujar, ”Devnagari Handwritten Character Recognition(DHCR) for Ancient Documents: A Review”, Proceedings of 2013 IEEE Conference on Information and Communication Technologies (ICT 2013). [6]. Kandarpa Kumar Sarma, “Bi-lingual Handwritten Character and Neural Recognition Using Multi- Dimensional Recurrent Neural Networks (MDRNN)”, World Academy of Sciences, Engineering and Technology 28 2009. [7]. Rajesh Soni and Durga Puja, “Performance Evaluation of Multilayer Feed Forward Neural for handwritten English Vowels Characters”, International Conference on Information Systems and Computer Networks (ISCON), 2013, Page(s) : 82-87. [8]. Dr. H. B. Kekre, Dr. Sudeep D. Thepade, Shrikant P.Sanas and Swapnil Shinde, “Devnagari Handwritten Character Recognition using LBG Vector Quantization with Gradient Masks”, International Conference on Advances in Technology and Engineering (ICATE), 2013, Page(s):-1-4. [9]. Sandhya Arora, Debotosh Bhattacharjee, Mita Nasipuri, Dipak Kumar Basu and Mahantapas Kundu, “Multiple Classifier Combination for Offline Handwritten Devngari Character Recognition”, International Confrence on Emerging Trends in Engineering and Technology (ICETET- 09) IEEE, DEC 2009.

Más contenido relacionado

La actualidad más candente

Artificial Neural Network For Recognition Of Handwritten Devanagari Character
Artificial Neural Network For Recognition Of Handwritten Devanagari CharacterArtificial Neural Network For Recognition Of Handwritten Devanagari Character
Artificial Neural Network For Recognition Of Handwritten Devanagari CharacterIOSR Journals
 
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
 
Bangladesh Army University of Science and Technology (BAUST), Saidpur // ...
Bangladesh Army University of Science and Technology (BAUST), Saidpur     // ...Bangladesh Army University of Science and Technology (BAUST), Saidpur     // ...
Bangladesh Army University of Science and Technology (BAUST), Saidpur // ...Naiyan Noor
 
Handwritten Text Recognition and Digital Text Conversion
Handwritten Text Recognition and Digital Text ConversionHandwritten Text Recognition and Digital Text Conversion
Handwritten Text Recognition and Digital Text Conversionijtsrd
 
IRJET- Detection and Recognition of Text for Dusty Image using Long Short...
IRJET-  	  Detection and Recognition of Text for Dusty Image using Long Short...IRJET-  	  Detection and Recognition of Text for Dusty Image using Long Short...
IRJET- Detection and Recognition of Text for Dusty Image using Long Short...IRJET Journal
 
IRJET- Image Caption Generation System using Neural Network with Attention Me...
IRJET- Image Caption Generation System using Neural Network with Attention Me...IRJET- Image Caption Generation System using Neural Network with Attention Me...
IRJET- Image Caption Generation System using Neural Network with Attention Me...IRJET Journal
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001IJARTES
 
Devanagari Character Recognition
Devanagari Character RecognitionDevanagari Character Recognition
Devanagari Character RecognitionPulkit Goyal
 
Text extraction From Digital image
Text extraction From Digital imageText extraction From Digital image
Text extraction From Digital imageKaushik Godhani
 
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
 
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
 
Handwritten digit recognition using image processing
Handwritten digit recognition using image processing Handwritten digit recognition using image processing
Handwritten digit recognition using image processing anita maharjan
 
IRJET - Content based Image Classification
IRJET -  	  Content based Image ClassificationIRJET -  	  Content based Image Classification
IRJET - Content based Image ClassificationIRJET Journal
 
Appearance based static hand gesture alphabet recognition
Appearance based static hand gesture alphabet recognitionAppearance based static hand gesture alphabet recognition
Appearance based static hand gesture alphabet recognitionIAEME Publication
 
Enhanced Thinning Based Finger Print Recognition
Enhanced Thinning Based Finger Print RecognitionEnhanced Thinning Based Finger Print Recognition
Enhanced Thinning Based Finger Print RecognitionIJCI JOURNAL
 

La actualidad más candente (19)

Ocr 1
Ocr 1Ocr 1
Ocr 1
 
Artificial Neural Network For Recognition Of Handwritten Devanagari Character
Artificial Neural Network For Recognition Of Handwritten Devanagari CharacterArtificial Neural Network For Recognition Of Handwritten Devanagari Character
Artificial Neural Network For Recognition Of Handwritten Devanagari Character
 
Text Detection and Recognition
Text Detection and RecognitionText Detection and Recognition
Text Detection and Recognition
 
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
 
E123440
E123440E123440
E123440
 
Automatic handwriting recognition
Automatic handwriting recognitionAutomatic handwriting recognition
Automatic handwriting recognition
 
Bangladesh Army University of Science and Technology (BAUST), Saidpur // ...
Bangladesh Army University of Science and Technology (BAUST), Saidpur     // ...Bangladesh Army University of Science and Technology (BAUST), Saidpur     // ...
Bangladesh Army University of Science and Technology (BAUST), Saidpur // ...
 
Handwritten Text Recognition and Digital Text Conversion
Handwritten Text Recognition and Digital Text ConversionHandwritten Text Recognition and Digital Text Conversion
Handwritten Text Recognition and Digital Text Conversion
 
IRJET- Detection and Recognition of Text for Dusty Image using Long Short...
IRJET-  	  Detection and Recognition of Text for Dusty Image using Long Short...IRJET-  	  Detection and Recognition of Text for Dusty Image using Long Short...
IRJET- Detection and Recognition of Text for Dusty Image using Long Short...
 
IRJET- Image Caption Generation System using Neural Network with Attention Me...
IRJET- Image Caption Generation System using Neural Network with Attention Me...IRJET- Image Caption Generation System using Neural Network with Attention Me...
IRJET- Image Caption Generation System using Neural Network with Attention Me...
 
Ijartes v1-i2-001
Ijartes v1-i2-001Ijartes v1-i2-001
Ijartes v1-i2-001
 
Devanagari Character Recognition
Devanagari Character RecognitionDevanagari Character Recognition
Devanagari Character Recognition
 
Text extraction From Digital image
Text extraction From Digital imageText extraction From Digital image
Text extraction From Digital image
 
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
 
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
 
Handwritten digit recognition using image processing
Handwritten digit recognition using image processing Handwritten digit recognition using image processing
Handwritten digit recognition using image processing
 
IRJET - Content based Image Classification
IRJET -  	  Content based Image ClassificationIRJET -  	  Content based Image Classification
IRJET - Content based Image Classification
 
Appearance based static hand gesture alphabet recognition
Appearance based static hand gesture alphabet recognitionAppearance based static hand gesture alphabet recognition
Appearance based static hand gesture alphabet recognition
 
Enhanced Thinning Based Finger Print Recognition
Enhanced Thinning Based Finger Print RecognitionEnhanced Thinning Based Finger Print Recognition
Enhanced Thinning Based Finger Print Recognition
 

Destacado

Fusion of demands in review of bag of-visual words
Fusion of demands in review of bag of-visual wordsFusion of demands in review of bag of-visual words
Fusion of demands in review of bag of-visual wordseSAT Publishing House
 
Influence of process parameters on depth of
Influence of process parameters on depth ofInfluence of process parameters on depth of
Influence of process parameters on depth ofeSAT Publishing House
 
Community detection in social networks an overview
Community detection in social networks an overviewCommunity detection in social networks an overview
Community detection in social networks an overvieweSAT Publishing House
 
Verification of uart ip core using uvm
Verification of uart ip core using uvmVerification of uart ip core using uvm
Verification of uart ip core using uvmeSAT Publishing House
 
Performance investigation of electricial power supply to owerri for higher pr...
Performance investigation of electricial power supply to owerri for higher pr...Performance investigation of electricial power supply to owerri for higher pr...
Performance investigation of electricial power supply to owerri for higher pr...eSAT Publishing House
 
Design and implementation of autonomous maneuvering robotic vehicle using glo...
Design and implementation of autonomous maneuvering robotic vehicle using glo...Design and implementation of autonomous maneuvering robotic vehicle using glo...
Design and implementation of autonomous maneuvering robotic vehicle using glo...eSAT Publishing House
 
Fpga based low power and high performance address
Fpga based low power and high performance addressFpga based low power and high performance address
Fpga based low power and high performance addresseSAT Publishing House
 
A study on cross layer metrics of wireless mesh network
A study on cross layer metrics of wireless mesh networkA study on cross layer metrics of wireless mesh network
A study on cross layer metrics of wireless mesh networkeSAT Publishing House
 
Game theory problems by an alternative simplex method
Game theory problems by an alternative simplex methodGame theory problems by an alternative simplex method
Game theory problems by an alternative simplex methodeSAT Publishing House
 
Cnt reinforced basalt fiber based ship hulls
Cnt reinforced basalt fiber based ship hullsCnt reinforced basalt fiber based ship hulls
Cnt reinforced basalt fiber based ship hullseSAT Publishing House
 
Implementation of linux based uart device driver
Implementation of linux based uart device driverImplementation of linux based uart device driver
Implementation of linux based uart device drivereSAT Publishing House
 
Performance of blended corrosion inhibitors for reinforced concrete
Performance of blended corrosion inhibitors for reinforced concretePerformance of blended corrosion inhibitors for reinforced concrete
Performance of blended corrosion inhibitors for reinforced concreteeSAT Publishing House
 
Flip invariant video copy detection using sparse-coded features
Flip invariant video copy detection using sparse-coded featuresFlip invariant video copy detection using sparse-coded features
Flip invariant video copy detection using sparse-coded featureseSAT Publishing House
 
Electronic system for testing tensile strength of foundry sand
Electronic system for testing tensile strength of foundry sandElectronic system for testing tensile strength of foundry sand
Electronic system for testing tensile strength of foundry sandeSAT Publishing House
 
Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...eSAT Publishing House
 
Intelligent two axis dual-ccd image-servo shooting platform design
Intelligent two axis dual-ccd image-servo shooting platform designIntelligent two axis dual-ccd image-servo shooting platform design
Intelligent two axis dual-ccd image-servo shooting platform designeSAT Publishing House
 
Automatic anti glare system for night time driving using liquid crystal screens
Automatic anti glare system for night time driving using liquid crystal screensAutomatic anti glare system for night time driving using liquid crystal screens
Automatic anti glare system for night time driving using liquid crystal screenseSAT Publishing House
 
Design issues and challenges of reliable and secure transmission of medical i...
Design issues and challenges of reliable and secure transmission of medical i...Design issues and challenges of reliable and secure transmission of medical i...
Design issues and challenges of reliable and secure transmission of medical i...eSAT Publishing House
 
Effect of spikes integrated to airfoil at supersonic
Effect of spikes integrated to airfoil at supersonicEffect of spikes integrated to airfoil at supersonic
Effect of spikes integrated to airfoil at supersoniceSAT Publishing House
 
Create shear stair for reinforcement of concrete
Create shear stair for reinforcement of concreteCreate shear stair for reinforcement of concrete
Create shear stair for reinforcement of concreteeSAT Publishing House
 

Destacado (20)

Fusion of demands in review of bag of-visual words
Fusion of demands in review of bag of-visual wordsFusion of demands in review of bag of-visual words
Fusion of demands in review of bag of-visual words
 
Influence of process parameters on depth of
Influence of process parameters on depth ofInfluence of process parameters on depth of
Influence of process parameters on depth of
 
Community detection in social networks an overview
Community detection in social networks an overviewCommunity detection in social networks an overview
Community detection in social networks an overview
 
Verification of uart ip core using uvm
Verification of uart ip core using uvmVerification of uart ip core using uvm
Verification of uart ip core using uvm
 
Performance investigation of electricial power supply to owerri for higher pr...
Performance investigation of electricial power supply to owerri for higher pr...Performance investigation of electricial power supply to owerri for higher pr...
Performance investigation of electricial power supply to owerri for higher pr...
 
Design and implementation of autonomous maneuvering robotic vehicle using glo...
Design and implementation of autonomous maneuvering robotic vehicle using glo...Design and implementation of autonomous maneuvering robotic vehicle using glo...
Design and implementation of autonomous maneuvering robotic vehicle using glo...
 
Fpga based low power and high performance address
Fpga based low power and high performance addressFpga based low power and high performance address
Fpga based low power and high performance address
 
A study on cross layer metrics of wireless mesh network
A study on cross layer metrics of wireless mesh networkA study on cross layer metrics of wireless mesh network
A study on cross layer metrics of wireless mesh network
 
Game theory problems by an alternative simplex method
Game theory problems by an alternative simplex methodGame theory problems by an alternative simplex method
Game theory problems by an alternative simplex method
 
Cnt reinforced basalt fiber based ship hulls
Cnt reinforced basalt fiber based ship hullsCnt reinforced basalt fiber based ship hulls
Cnt reinforced basalt fiber based ship hulls
 
Implementation of linux based uart device driver
Implementation of linux based uart device driverImplementation of linux based uart device driver
Implementation of linux based uart device driver
 
Performance of blended corrosion inhibitors for reinforced concrete
Performance of blended corrosion inhibitors for reinforced concretePerformance of blended corrosion inhibitors for reinforced concrete
Performance of blended corrosion inhibitors for reinforced concrete
 
Flip invariant video copy detection using sparse-coded features
Flip invariant video copy detection using sparse-coded featuresFlip invariant video copy detection using sparse-coded features
Flip invariant video copy detection using sparse-coded features
 
Electronic system for testing tensile strength of foundry sand
Electronic system for testing tensile strength of foundry sandElectronic system for testing tensile strength of foundry sand
Electronic system for testing tensile strength of foundry sand
 
Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...Deflection control in rcc beams by using mild steel strips (an experimental i...
Deflection control in rcc beams by using mild steel strips (an experimental i...
 
Intelligent two axis dual-ccd image-servo shooting platform design
Intelligent two axis dual-ccd image-servo shooting platform designIntelligent two axis dual-ccd image-servo shooting platform design
Intelligent two axis dual-ccd image-servo shooting platform design
 
Automatic anti glare system for night time driving using liquid crystal screens
Automatic anti glare system for night time driving using liquid crystal screensAutomatic anti glare system for night time driving using liquid crystal screens
Automatic anti glare system for night time driving using liquid crystal screens
 
Design issues and challenges of reliable and secure transmission of medical i...
Design issues and challenges of reliable and secure transmission of medical i...Design issues and challenges of reliable and secure transmission of medical i...
Design issues and challenges of reliable and secure transmission of medical i...
 
Effect of spikes integrated to airfoil at supersonic
Effect of spikes integrated to airfoil at supersonicEffect of spikes integrated to airfoil at supersonic
Effect of spikes integrated to airfoil at supersonic
 
Create shear stair for reinforcement of concrete
Create shear stair for reinforcement of concreteCreate shear stair for reinforcement of concrete
Create shear stair for reinforcement of concrete
 

Similar a Character recognition for bi lingual mixed-type characters using artificial neural network

Handwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNHandwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNIRJET Journal
 
IRJET- Intelligent Character Recognition of Handwritten Characters
IRJET- Intelligent Character Recognition of Handwritten CharactersIRJET- Intelligent Character Recognition of Handwritten Characters
IRJET- Intelligent Character Recognition of Handwritten CharactersIRJET Journal
 
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLESIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLEIRJET Journal
 
­­­­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
 
Deep Learning in Text Recognition and Text Detection : A Review
Deep Learning in Text Recognition and Text Detection : A ReviewDeep Learning in Text Recognition and Text Detection : A Review
Deep Learning in Text Recognition and Text Detection : A ReviewIRJET Journal
 
A Deep Learning Approach to Recognize Cursive Handwriting
A Deep Learning Approach to Recognize Cursive HandwritingA Deep Learning Approach to Recognize Cursive Handwriting
A Deep Learning Approach to Recognize Cursive HandwritingIRJET Journal
 
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...IRJET Journal
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Vidyut Singhania
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningIRJET Journal
 
IRJET- Hand Sign Recognition using Convolutional Neural Network
IRJET- Hand Sign Recognition using Convolutional Neural NetworkIRJET- Hand Sign Recognition using Convolutional Neural Network
IRJET- Hand Sign Recognition using Convolutional Neural NetworkIRJET Journal
 
An offline signature recognition and verification system based on neural network
An offline signature recognition and verification system based on neural networkAn offline signature recognition and verification system based on neural network
An offline signature recognition and verification system based on neural networkeSAT Journals
 
Devanagari Digit and Character Recognition Using Convolutional Neural Network
Devanagari Digit and Character Recognition Using Convolutional Neural NetworkDevanagari Digit and Character Recognition Using Convolutional Neural Network
Devanagari Digit and Character Recognition Using Convolutional Neural NetworkIRJET Journal
 
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...IRJET Journal
 
IRJET-Optical Character Recognition using ANN
IRJET-Optical Character Recognition using ANNIRJET-Optical Character Recognition using ANN
IRJET-Optical Character Recognition using ANNIRJET Journal
 
Inpainting scheme for text in video a survey
Inpainting scheme for text in video   a surveyInpainting scheme for text in video   a survey
Inpainting scheme for text in video a surveyeSAT Journals
 
IRJET- Offline Transcription using AI
IRJET-  	  Offline Transcription using AIIRJET-  	  Offline Transcription using AI
IRJET- Offline Transcription using AIIRJET Journal
 
Real Time Sign Language Detection
Real Time Sign Language DetectionReal Time Sign Language Detection
Real Time Sign Language DetectionIRJET Journal
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET Journal
 
Sign Language Detection using Action Recognition
Sign Language Detection using Action RecognitionSign Language Detection using Action Recognition
Sign Language Detection using Action RecognitionIRJET Journal
 

Similar a Character recognition for bi lingual mixed-type characters using artificial neural network (20)

Handwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNHandwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNN
 
IRJET- Intelligent Character Recognition of Handwritten Characters
IRJET- Intelligent Character Recognition of Handwritten CharactersIRJET- Intelligent Character Recognition of Handwritten Characters
IRJET- Intelligent Character Recognition of Handwritten Characters
 
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLESIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
 
­­­­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...
 
Deep Learning in Text Recognition and Text Detection : A Review
Deep Learning in Text Recognition and Text Detection : A ReviewDeep Learning in Text Recognition and Text Detection : A Review
Deep Learning in Text Recognition and Text Detection : A Review
 
A Deep Learning Approach to Recognize Cursive Handwriting
A Deep Learning Approach to Recognize Cursive HandwritingA Deep Learning Approach to Recognize Cursive Handwriting
A Deep Learning Approach to Recognize Cursive Handwriting
 
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...
IRJET- Recognition of Handwritten Characters based on Deep Learning with Tens...
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine Learning
 
IRJET- Hand Sign Recognition using Convolutional Neural Network
IRJET- Hand Sign Recognition using Convolutional Neural NetworkIRJET- Hand Sign Recognition using Convolutional Neural Network
IRJET- Hand Sign Recognition using Convolutional Neural Network
 
Cc4301455457
Cc4301455457Cc4301455457
Cc4301455457
 
An offline signature recognition and verification system based on neural network
An offline signature recognition and verification system based on neural networkAn offline signature recognition and verification system based on neural network
An offline signature recognition and verification system based on neural network
 
Devanagari Digit and Character Recognition Using Convolutional Neural Network
Devanagari Digit and Character Recognition Using Convolutional Neural NetworkDevanagari Digit and Character Recognition Using Convolutional Neural Network
Devanagari Digit and Character Recognition Using Convolutional Neural Network
 
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
 
IRJET-Optical Character Recognition using ANN
IRJET-Optical Character Recognition using ANNIRJET-Optical Character Recognition using ANN
IRJET-Optical Character Recognition using ANN
 
Inpainting scheme for text in video a survey
Inpainting scheme for text in video   a surveyInpainting scheme for text in video   a survey
Inpainting scheme for text in video a survey
 
IRJET- Offline Transcription using AI
IRJET-  	  Offline Transcription using AIIRJET-  	  Offline Transcription using AI
IRJET- Offline Transcription using AI
 
Real Time Sign Language Detection
Real Time Sign Language DetectionReal Time Sign Language Detection
Real Time Sign Language Detection
 
IRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture RecognitionIRJET- Survey Paper on Vision based Hand Gesture Recognition
IRJET- Survey Paper on Vision based Hand Gesture Recognition
 
Sign Language Detection using Action Recognition
Sign Language Detection using Action RecognitionSign Language Detection using Action Recognition
Sign Language Detection using Action Recognition
 

Más de eSAT Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

Más de eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Último

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 

Último (20)

(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 

Character recognition for bi lingual mixed-type characters using artificial neural network

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 83 CHARACTER RECOGNITION FOR BI-LINGUAL MIXED-TYPE CHARACTERS USING ARTIFICIAL NEURAL NETWORK Rekha Singh1 1M.Tech Scholar, Department of Computer Science, Saroj Institute of Engineering & Technology, Lucknow, India Abstract Artificial Intelligence has evolved to a great extent since its inception and is spreading wide day to day. Today, nearly all aspects of human life have a sound presence of some sort of application of artificial intelligence. A key role in this is of Artificial Neural network, a very vital branch of Artificial Intelligence. A vast majority of day by day applications have their evolvement from Artificial Neural Network, especially applications developed for those tasks which were earlier believed to be best performed by only human beings. This potential of ANNs lies in its degree of simplicity and generality; bringing the difference down in between, Human mind capability and machines. This paper basically deals with recognition of isolated machine print as well as hand-written characters using artificial neural networks. The important aspect of this paper which makes it different from similar works in this field is that I have approached this problem with bilingual character set. I have approached to the recent trend where people are at home with use of English as well as Hindi language, not only in speaking but also in writing. Due to this, my focus has been to device network with almost equal capability of recognizing characters in both scripts; Devnagri and English. Besides this, text content faced by us in day to day is a mixture of type written and hand written. So the characters are either computer generated or by human handwriting. For this purpose data collection, feature extraction and neural network designs have been achieved. The training phase has successfully been completed with 790 samples of handwritten samples computer generated font styles. The overall performance of the system has been achieved more than 95%, quite significant in case of human handwriting. Keywords: Artificial Neural Network; Character, Recognition; Feed-forward Back-propagation Network -------------------------------------------------------------------***------------------------------------------------------------------- I. INTRODUCTION Machine simulation of human functions has been a very challenging research area since the advent of digital computers. In some areas which require certain amount of intelligence, such as number crunching or chess playing, tremendous improvements are achieved. On the other hand, humans still outperform even the most powerful computers in the relatively routine functions such as vision. Machine simulation of human reading is one of these areas, which was the subject of intensive research for the last three decades, yet it is still too far from the final frontier [1] [3]. Character recognition has always been a special problem. The problem increases when we operate it in the offline mode [9] where we need to read characters from some document thus by performing feature extraction, one of the complex processes. We see a lot of work has been done in this area in the past few years. The solutions being proposed mainly use Artificial Neural Networks (ANN) for solving the problem. And, this is well justified as, in case of Humans this is also done by the Neural Network [3] which quite accurately perform the Character recognition. The early work on the automatic recognition of characters has been concentrated either upon well printed text or upon small set of well distinguished handwritten text or symbols. Successful, but, constrained algorithms had been implemented mostly for Latin characters and numerals. Besides, some studies on Japanese, Chinese, Hebrew, Indian, Cyrillic, Greek and Arabic characters and numerals in both printed and handwritten cases have also been done[2][4]. Nowadays, there is a renewed interest in the character recognition field, which involves the recognition of both printed and handwritten characters [5]. It is not only that we now have more compact and powerful computers and more accurate electronic equipment such as scanner, camera, electronic tablet etc., but also we have better recognition algorithms which utilize advanced methodologies such as Neural Networks, Hidden Markov Models or Fuzzy Set Reasoning. But, still there is a long way to go in order to reach the ultimate goal of machine simulation of fluent human reading. 2. THE PROPOSED APPROACH Handwriting recognition is a well-known problem which involves the recognition of whatever input is given in form of image, scanned paper, etc. The handwriting recognition generally involves the following steps, which are also been adapted in this work. Scanning the document: A properly printed document is chosen for scanning A scanner software is invoked which scans the document. The document is sent to a program that saves it in preferably TIF, JPG or GIF format, so that the
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 84 image of the document can be obtained when needed. This is the step in Optical Character Recognition. The size of the input image is taken as per the requirement of the feature extraction procedure. Segmentation: This step deals with the breaking of the lines, words and finally getting all the characters separated. This step involves the identification of the boundaries of the character and separating them for further processing. In this approach adopted by me, first I have gone through line by line extraction of characters. After completing this line by line extraction, I have done with character by character extraction for each and every line applying the same approach as with line extraction but with a little change thus applying no extra emphasis for character extraction. This way, I have left with the inputs to the developed system as single characters. Preprocessing & Feature Extraction: This step involves the initial processing of the image, so that it can be used as an input for the recognition system. In this step, I had to concentrate over some issues which are quite important to make the input images unique as the input size of the neural network is always going to remain constant in terms of number of neurons in input layer. Therefore, each image should be of same size in terms of pixels, there dimensions should be same regardless the actual dimension of the character. For this reason, I have gone for a perfect square image. Classification and Character Recognition: Once the input image is available in good condition, it may be processed for recognition. The role of the recognition system is to identify the character. The neural network designed in this work uses an image as an input for the same. 3. IMPLEMENTATION Shown following is the procedure followed in the segmentation and pre-processing phase. Step 1: For the network to train, the requirement has been set as an image file which may consists multiple lines and each line having multiple characters. The task prior to creation and training of a proper network is to generate a significant training set. Therefore, I have taken around 79 font styles for training of the network. In the initial stage, for the sake of measuring networks performance easily, the training set has limited to 10 characters only i.e. E, A, R, I, O, d] j] g] l] u. And so, the number of training sample has gone to 79 x 10= 790 samples. Step 2: Once the image for training is ready, the next task is segmentation of the image in proper format. This is further broken in two phases. First, the segmentation is done in horizontal direction thus extracting line of characters. The basic rule for this is looking for line of white spaces and continuing till any horizontal line having signature of some character is found. Once, the line with signature of some character is found, we continue to scan horizontally till we keep founding signature of characters i.e. non-white space. We stop when we found a horizontal line with only white spaces. It indicates that we have left with an image of having a line of characters. Now, the next step is to scan this new image to get the individual characters. We have also temporary stored each line of character.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 85 Step 3: Once an image of a single line having multiple characters in horizontal direction is achieved, the next phase is to apply same approach as of horizontal segmentation in vertical direction for each such line image and extract individual characters this time. For this, I have rotated the line image by 900 and applied logic of horizontal segmentation previously applied for achieving line image, thus getting vertical segmentation. Step 4: After getting individual character images, the images are to be fed into neural network as input during the training phase and also in testing the network. The input size has to be remaining same during the whole process of training and also network has to be remaining same after completion of training. So, I have made each character same in size and dimension. 4. EXPERIMENTAL RESULTS I have done my experimentation on feed forward back propagation network, which is till date the best proven network for application related with pattern recognition. In my character recognition work I have worked upon type written as well as hand written characters. More importantly, my work is based upon recognition of characters of not just one but two scripts simultaneously keeping the network unchanged. In the following figures, I am showing the comparative ratio of success in recognition of English as well as Hindi characters which have been achieved during training phase. For this comparative study I have first, taken each character keeping same dimensions of 15x15 pixels. After which, I have kept dimension in 20x20 pixel; thus increasing range of input from 225 (15x15) to 400 (20x20). Following drawn are the results drawn. This is obvious that the feed forward back propagation network (FFBPN) is performing quite similar with very minor difference in their character-wise training performance for both the variation in image dimension (i.e. 15x15 and 20x20). This is also due to a sufficiently large training set. The above tables also show that FFBP Network in both of these cases has achieved training up to a saturation level in this phase. However, their actual performance is shown during the testing phase. Fig 2: Comparative network performances for image Dimension= 15x15 for Handwritten 79x10samples Fig 3: Comparative network performances for image Dimension = 20x20 for Handwritten 79x10samples The network has achieved saturation on 40 Hidden layer neurons in case of image dimension of 15x15 while the saturation for dimension size 20x20 is achieved at 50 hidden layer neurons. This shows that as we increase the input size of the network, we get saturation on higher number of hidden layer neuron. However, we have also got very slight improvement in recognition rate on increasing input size. After training performance on handwritten characters, I have performed the same operations with typewritten characters. For this a total number of 1000 (100 x 10) character samples have been taken. Below drawn in Fig are the results which consists result of this training. Fig. 4: Comparative network performances for image Dimension= 15x15 for Typewritten 79x10samples Fig. 5: Comparative network performances for image Dimension= 20x20 for Typewritten 79x10samples
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 03 Special Issue: 10 | NCCOTII 2014 | Jun-2014, Available @ http://www.ijret.org 86 5. CONCLUSIONS In this paper, I have presented a character recognition system and have shown the improvements achieved during this network implementation and its testing over real data. The important findings of the work may be summarized as follows: In this work, I have implemented a character recognition system using feed forward back propagation network. A sufficient collection of characters written in different font (hand written and type written) styles were kept for training this network and some type-written as well as handwritten data was kept for testing these networks. This work has shown an improvement in performance of Feed Forward back-propagation Network and achieved more than 80% performance for handwritten samples for which system was untrained. This work has still a good scope for future work. Some of the possibilities in this direction are as follows:  The network has been worked only with 10 characters (5 characters of English and 5 character of Hindi) due to processing limit of system. The network can be further analyzed as well as enhanced to get similar performance for a larger range of characters.  In today’s environment, the possibilities are there for a mixed set of characters where more than one type of language can be used in day to day business. Keeping that in view, system can also be improved for Multilanguage environment. However, the main limitation is again of high speed of development platform.  I have gone with improving of the single network i.e. the back propagation network. The comparison may be done with few other networks used in classification problem.  The network can be further trained over a much larger data set. REFERENCES [1]. Pranob K Charles, V. Harish, M. Swathi and CH. Deepti, “A Review on the Various Techniques used for Optical Character Recognition”, International Journal of Engineering Research and Applications(IJERA), ISSN: 2248-9622, Vol. 2 Issue 1, Jan-Feb 2012, pp.659-662. [2]. Sumedha B. Hallale and Geeta D. Salunke, ”Offline Handwriting Charater Recognition : A Review”, International Journal of Advanced Computer and Mathematical Sciences, ISSN 2230-9624, Vol. 4, Issue 4, 2013, pp250-265. [3]. Kauleshwar Prasad, Devrat C. Nigam, Ashmika Lakhotiya and Dheeren Umre, “Character Recognition Using Matlab’s Neural Network Toolbox”, International Journal of u- and e- Service, Science and Technology, Vol. 6, No.1 , February, 2013. [4]. Neha Sahu and Nitin Kali Raman, “An Efficient Handwritten Devnagari Character Recognition System Using Neural Network”, International Multi- Conference on Automation, Computing, Communication, Control and Compressed Sensing (iMac4s), 2013, Page(s):173-177. [5]. Kunal Ravindra Shah and Dipak Dattatray Badgujar, ”Devnagari Handwritten Character Recognition(DHCR) for Ancient Documents: A Review”, Proceedings of 2013 IEEE Conference on Information and Communication Technologies (ICT 2013). [6]. Kandarpa Kumar Sarma, “Bi-lingual Handwritten Character and Neural Recognition Using Multi- Dimensional Recurrent Neural Networks (MDRNN)”, World Academy of Sciences, Engineering and Technology 28 2009. [7]. Rajesh Soni and Durga Puja, “Performance Evaluation of Multilayer Feed Forward Neural for handwritten English Vowels Characters”, International Conference on Information Systems and Computer Networks (ISCON), 2013, Page(s) : 82-87. [8]. Dr. H. B. Kekre, Dr. Sudeep D. Thepade, Shrikant P.Sanas and Swapnil Shinde, “Devnagari Handwritten Character Recognition using LBG Vector Quantization with Gradient Masks”, International Conference on Advances in Technology and Engineering (ICATE), 2013, Page(s):-1-4. [9]. Sandhya Arora, Debotosh Bhattacharjee, Mita Nasipuri, Dipak Kumar Basu and Mahantapas Kundu, “Multiple Classifier Combination for Offline Handwritten Devngari Character Recognition”, International Confrence on Emerging Trends in Engineering and Technology (ICETET- 09) IEEE, DEC 2009.