SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1332
Intelligent Character Recognition of Handwritten Characters
Kailash Kangne1
1Eight Semester, Information Science and Engineering, The National Institute of Engineering, Mysore
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - The goal of this work is to identify printed text in
image or handwritten characters using a camera or scanning
equipment by converting them into machine-readable text
with the help of a neural network. This research is different
from traditional OCR in fact that it provides accurate results
as it is using supervised machine learning which helps in
training the system well. The system input is digital images
which contains some patterns tobeclassified. Theanalysisand
recognition of the patterns in images are becoming more
complex, yet easy with advancesintechnological knowledge. It
can handle multiple language scripts in its dataset and
provide results accurately up to 95% for alphanumeric
characters.
Key Words: intelligent character recognition, supervised
machine learning, dataset visualization, feature extraction.
1. INTRODUCTION
Optical character reader (OCR) is a device which
electronically convertsimagesofhandwritten orprinted text
into machine-readable text, maybe it from a scanned
document, a nameplate, a photo or from subtitle text
superimposed on an image.
It is not possible to use handwritten and printed documents
that are either scanned or photographed as they are in an
image format that proves to be a lot of hindrances and
involves hard work to convert them into data editable for
computers. This conversion can be costly for organizations
that handle large amounts of data and in the resulting
documents can also generate hugeamountsofhumanerrors.
When labour is scarce and efficiency needstobeincreased,a
computer-aided conversion of such optical documents can
prove. In the past, people struggled with data entry and
digitization. Due to changes in data type, existingtechniques
to overcome these issues such as OMR sheets and form data
have been outdated. A neural network-based approach is
necessary to convert data of varied types into digital
information to overcome these problems. Many
organizations have spent a lot of money, time and work to
convert present information on a paper into computer data.
Using a trained tool, this small task can be easily
accomplished with little or no work, making the company
focus its resources and valuable workforce on itschallenges.
If done on similar types of documents, this computerized
conversion can be very productive, saving valuable time.
2. RELATED STUDIES
Researchers are very concerned about OCR as they aim to
develop a robust and efficient recognitionsystem.Study was
conducted to develop associative pattern matching
technique and match algorithms with accurate and fast
intelligent character recognition system. There have been
approaches related to microscopic image texture characters
related to surface roughness. This proves that with the
roughness of the surface, different parameters change
regularly. Efforts have been madetocapturecharactersfrom
paper forms.
Research has also been done in license plate recognition.
Nevertheless, developing a system where characters are
automatically transferred to excel sheet after testing is
challenging. Segmentationis animportantphaseincharacter
recognition and at this stage efforts have been made to
improve accuracy also discuss segmentation in which
trained classifier is used to segment the connected
characters into text-based CAPTCHAs. With regard to
machine learning, SVM has been used in modified freeman
chain code, which is used to extract features using SVM
classifiers. As many performance parameters depend on in,
the algorithm is very necessary. This gives a high-
performance algorithm aswell aslowmemoryconsumption.
Matching templates and extracting features using back
propagation algorithm largely focuses on the noise removal
aspect. There, algorithms are applied after transferring data
to excel sheet or creating a CSV file. As previously stated,
printed text is relatively easierto recognize,buthandwritten
text is difficult due to changes in parameters of writing.
Therefore, a lot of work has been done previouslytoaddress
the issues facing the recognition of handwriting, but nosuch
efforts have been made to apply supervised learning
algorithms and transfer data simultaneously to excel sheet
after python programming.
3. ARTIFICIAL NEURAL NETWORK
It is the most widely used techniques for classification
purposes. However, other techniques such as Naive Bayes,
Support vector machine, rough set are also popular tools for
different classification context. The suitability of artificial
neural network (ANN) as a smart technique lies in its
attempt to imitate human effort. Because of its vast capacity
to process information, ANN gives better resultsforcomplex
pattern recognition tasks. Neural networks are therefore
preferred to other techniques, particularly for pattern
recognition tasks such as identification of offline text.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1333
In principle, ANN is defined by three parameter types: 1.The
pattern of interconnection between neuron layers 2. The
learning process to update interconnection weights 3.
Activation features that map a weighted input of a neuron to
its activation of output.
Typically, two steps are involved in the process. The first
step is the training phase in which the correct data class is
identified. The extracted features wouldserveasthedata for
the neural network training. Once the NN is trained, by
extracting features from new characters,newcharacterscan
be classified into known classes. For this purpose, which is
driven by the principle of back propagationalgorithm,multi-
layer feed forward neural network is mostly used.
4. PROPOSED SYSTEM
This project approaches the problem of optical character
recognition in two stages, the first being training stage in
which the system is provided withhandwrittencharacters of
all alphabets in ascending order and then predictionstagein
which an input image is given thatissplitintocharacters and
each is individually predicted by the trainedneural network.
In both stages characters are processed by using a gradient
change based feature extraction which involves slicing
individual characters into multiple equally sized zones and
extracting features such as starters, intersections and end
points as well the lowest and highest points in every zone.
The zones are then converted into feature vectors which
gives the values of all the features in thezones.Thesefeature
vectors are used for training as well as during prediction
during comparison.
Fig 1: Block diagram of system.
Document Accessing Module:
Input: Documents that contain handwritten or printed text.
Process: Using a scanner or digital camera, the submitted
documents are read and converted into a PNG image. Also,
the documents are labelled either as training or test data or
as actual data. The naming conventions followed are' TR' or'
TE' or' AC' respectively, followed by a number for training,
testing and actual data.
Output: The acquired set of images are stored into the
directory system.
Pre-processing Module:
Input: Images stored in the directory
Process: Regardless of the image, it must be free from noise
caused by degradation, physical damage and also from the
scanning equipment boundaries. By padding or removing
borders, the image is converted intoa squareimage,thenthe
image is binarized to facilitate processing. Averaging is also
done by taking multiple scans of the same image to improve
the quality of the image.
Output: Image ready for mathematical operations.
Feature Improvement Module:
Input: Binarized Images.
Process: While binarization produces good results for
printed text images,further processingofmanuscriptimages
is still required. There are still holes within an image's
particles that must be filled and very small text dilated in
order to detect them.
Output: Images with no holes and better contrast.
Feature Extraction module:
Input: Detailed Binary Images
Process: The image characteristics here are recognizedwith
spaces between words and each word is divided into
characters. The characters are further segmented into
several sub-functions, which then become a function vector.
Elements can be form, slope, height, width, etc.
Output: Features of an image as vectors.
Artificial Neural Network:
Input: Feature Vectors.
Process: The feature vectors are fed into the feed forward
network's input layer, which uses the cluster log sigmoid
weight function to classify the image featuresanddetermine
the confidence level for each output node for a givenfeature.
The trained data set is stored in the directory along with its
probabilities and confidence levels.
Output: Trained Neural Network.
User Input module:
Input: New Images
Process: Using this module, the user uses the trained neural
network to identify the images he wants. Open a picture and
send it for prediction to this module. The trained node
neural network is not able to find the characters in the
image.
Output: Recognized characters.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1334
5. RESULTS
The captured image is scanned to detect the color and
background of the characters. To reduce all irrelevant
information, pre - processing of the image is necessary. Our
research is based on alpha numerals and special characters
being recognized.
Fig. 2. Results showing almost 95% accuracy
The accuracy was about 75 percent after testing as many as
100 samples. But the accuracy increased significantly after
moving to nearly 400 samples and moved to nearly 95
percent.
The figure (Figure 2) shows 16 sample test results, out of
which 15 samples show the correct character and one of the
16 characters cannot be recognized. Once again the
recognizable characters are transferred to the Excel sheet.
6. CONCLUSION
Optical characters can be recognized in multiple ways, but
using something that mimics the nature and characterofthe
human brain is bound to succeed better than any other
system. The proposed method uses neural network
approach to the optical character recognition task, butusing
features rather than a wholesome comparison, which is
inappropriate for handwritten documents,isnotan effective
way. In the future, the method of extraction of features may
change to suit the needs of multiplelanguages.Sucha system
can also be used in robot vision as well as in understanding
human written information. Such a work could be extended
in the future so that it could be used to read hieroglyphics
and other ancient languages.
REFERENCES
1) Mrs. R. Rani, Prof. R. Dhir , G. Sinha, 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) V. Narawade, M. Patil, Recognition of Handwritten
Devanagari Characters through Segmentation and
Artificial neural networks , International Journal of
Engineering Research and Technology, ISSN:2278-
0181,Vol. 1 Issue 6, August 2012.
3) D. Bhattacharjee, M. Nasipuri, S. Arora, L. Malik and B.
Portier, A Two Stage Classification Approach for
Handwritten Devanagari Characters.
4) Fan Xiaoping, Jian, Zhang, and Huang Cailun. "Research
on characters segmentation and characters recognition
in intelligent license plate recognition system." Control
Conference, 2006, Chinese. IEEE, 2006.
5) Ogden, Phil. "Applying intelligent character recognition
in the 'real world'." Document Image Processing and
Multimedia , IEE Colloquium on. IET, 1999.
6) Hussain, Rafaqat, "Recognition based segmentation of
connected characters in text based CAPTCHAs."
Communication Software and Networks ,20168thIEEE
International Conference on. EEE, 2016.
7) Verma, Vivek Kumar, and Pradeep Kumar Tiwari.
"Removal of Obstacles in Devanagari Script for Efficient
Optical Character Recognition." Computational
Intelligence and CommunicationNetworks(CICN),2015
International Conference on. IEEE, 2015.
8) Khaustov, P. A., V. G. Spitsyn, and E. I. Maksimova.
"Algorithm for optical handwritten characters
recognition basedonstructural components extraction."
Strategic Technology (IFOST), 2016 11th International
Forum on. IEEE, 2016.
9) Meher, Sukadev, and Debasish Basa. "An intelligent
scanner with handwritten odia character recognition
capability." Sensing Technology, 2011 Fifth
International Conference on. IEEE, 2011.
10) T.M.Rath and R. Manmatha(2007), “Word spotting for
historical documents” , International Journal on
Document Analysis and Recognition , Vol.9, No 2 – 4, pp.
139- 152.
11) Ragot N., Salah, A. B., and Paquet, T. (2013). “Adaptive
detection of missed text areas in OCR outputs:
Application to automatic assessment of OCR quality in
mass digitization projects” Proc. SPIE8658, Document
Recognition and Retrieval XX, 865816.
12) T. K. Das (2016). Intelligent Techniques in Decision
Making: A Survey, Indian Journal of Science and
Technology, Vol. 9, No.12,pp.1-6.

More Related Content

What's hot

­­­­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
 
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...ijscai
 
Text Recognition using Convolutional Neural Network: A Review
Text Recognition using Convolutional Neural Network: A ReviewText Recognition using Convolutional Neural Network: A Review
Text Recognition using Convolutional Neural Network: A ReviewIRJET Journal
 
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
 
Myanmar Alphabet Recognition System Based on Artificial Neural Network
Myanmar Alphabet Recognition System Based on Artificial Neural NetworkMyanmar Alphabet Recognition System Based on Artificial Neural Network
Myanmar Alphabet Recognition System Based on Artificial Neural Networkijtsrd
 
IRJET- Image Seeker:Finding Similar Images
IRJET- Image Seeker:Finding Similar ImagesIRJET- Image Seeker:Finding Similar Images
IRJET- Image Seeker:Finding Similar ImagesIRJET Journal
 
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITION
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITIONA SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITION
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITIONIJCIRAS Journal
 
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET Journal
 
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
 
IRJET- Capsearch - An Image Caption Generation Based Search
IRJET- Capsearch - An Image Caption Generation Based SearchIRJET- Capsearch - An Image Caption Generation Based Search
IRJET- Capsearch - An Image Caption Generation Based SearchIRJET Journal
 
optical character recognition system
optical character recognition systemoptical character recognition system
optical character recognition systemVijay Apurva
 
Handwritten character recognition in
Handwritten character recognition inHandwritten character recognition in
Handwritten character recognition inijaia
 
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...IJCSIS Research Publications
 
Use of artificial neural network in pattern recognition
Use of artificial neural network in pattern recognitionUse of artificial neural network in pattern recognition
Use of artificial neural network in pattern recognitionkamalsrit
 
A Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition SystemA Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition Systemiosrjce
 
IRJET- Visual Information Narrator using Neural Network
IRJET- Visual Information Narrator using Neural NetworkIRJET- Visual Information Narrator using Neural Network
IRJET- Visual Information Narrator using Neural NetworkIRJET Journal
 
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...IJECEIAES
 

What's hot (19)

­­­­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...
 
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...
UNSUPERVISED LEARNING MODELS OF INVARIANT FEATURES IN IMAGES: RECENT DEVELOPM...
 
Text Recognition using Convolutional Neural Network: A Review
Text Recognition using Convolutional Neural Network: A ReviewText Recognition using Convolutional Neural Network: A Review
Text Recognition using Convolutional Neural Network: A Review
 
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
 
Myanmar Alphabet Recognition System Based on Artificial Neural Network
Myanmar Alphabet Recognition System Based on Artificial Neural NetworkMyanmar Alphabet Recognition System Based on Artificial Neural Network
Myanmar Alphabet Recognition System Based on Artificial Neural Network
 
IRJET- Image Seeker:Finding Similar Images
IRJET- Image Seeker:Finding Similar ImagesIRJET- Image Seeker:Finding Similar Images
IRJET- Image Seeker:Finding Similar Images
 
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITION
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITIONA SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITION
A SURVEY ON DEEP LEARNING METHOD USED FOR CHARACTER RECOGNITION
 
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face RecognitionIRJET- Spot Me - A Smart Attendance System based on Face Recognition
IRJET- Spot Me - A Smart Attendance System based on Face Recognition
 
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...
 
IRJET- Capsearch - An Image Caption Generation Based Search
IRJET- Capsearch - An Image Caption Generation Based SearchIRJET- Capsearch - An Image Caption Generation Based Search
IRJET- Capsearch - An Image Caption Generation Based Search
 
Ch35473477
Ch35473477Ch35473477
Ch35473477
 
optical character recognition system
optical character recognition systemoptical character recognition system
optical character recognition system
 
Handwritten character recognition in
Handwritten character recognition inHandwritten character recognition in
Handwritten character recognition in
 
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
Using K-Nearest Neighbors and Support Vector Machine Classifiers in Personal ...
 
Use of artificial neural network in pattern recognition
Use of artificial neural network in pattern recognitionUse of artificial neural network in pattern recognition
Use of artificial neural network in pattern recognition
 
A Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition SystemA Comprehensive Study On Handwritten Character Recognition System
A Comprehensive Study On Handwritten Character Recognition System
 
IRJET- Visual Information Narrator using Neural Network
IRJET- Visual Information Narrator using Neural NetworkIRJET- Visual Information Narrator using Neural Network
IRJET- Visual Information Narrator using Neural Network
 
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
A hierarchical RCNN for vehicle and vehicle license plate detection and recog...
 
I017425763
I017425763I017425763
I017425763
 

Similar to IRJET- Intelligent Character Recognition of Handwritten Characters

IRJET- Offline Transcription using AI
IRJET-  	  Offline Transcription using AIIRJET-  	  Offline Transcription using AI
IRJET- Offline Transcription using AIIRJET Journal
 
Handwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNHandwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNIRJET Journal
 
IRJET- Handwritten Character Recognition using Artificial Neural Network
IRJET- Handwritten Character Recognition using Artificial Neural NetworkIRJET- Handwritten Character Recognition using Artificial Neural Network
IRJET- Handwritten Character Recognition using Artificial Neural NetworkIRJET Journal
 
IRJET- Information Retrieval & Text Analytics using Artificial Intelligence
IRJET- Information Retrieval & Text Analytics using Artificial IntelligenceIRJET- Information Retrieval & Text Analytics using Artificial Intelligence
IRJET- Information Retrieval & Text Analytics using Artificial IntelligenceIRJET 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-MText Extraction from Images using Convolutional Neural Network
IRJET-MText Extraction from Images using Convolutional Neural NetworkIRJET-MText Extraction from Images using Convolutional Neural Network
IRJET-MText Extraction from Images using Convolutional Neural NetworkIRJET Journal
 
Handwritten Text Recognition and Translation with Audio
Handwritten Text Recognition and Translation with AudioHandwritten Text Recognition and Translation with Audio
Handwritten Text Recognition and Translation with AudioIRJET 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
 
IRJET- Image to Text Conversion using Tesseract
IRJET-  	  Image to Text Conversion using TesseractIRJET-  	  Image to Text Conversion using Tesseract
IRJET- Image to Text Conversion using TesseractIRJET Journal
 
Document Analyser Using Deep Learning
Document Analyser Using Deep LearningDocument Analyser Using Deep Learning
Document Analyser Using Deep LearningIRJET Journal
 
IRJET- Photo Optical Character Recognition Model
IRJET- Photo Optical Character Recognition ModelIRJET- Photo Optical Character Recognition Model
IRJET- Photo Optical Character Recognition ModelIRJET Journal
 
Design and Description of Feature Extraction Algorithm for Old English Font
Design and Description of Feature Extraction Algorithm for Old English FontDesign and Description of Feature Extraction Algorithm for Old English Font
Design and Description of Feature Extraction Algorithm for Old English FontIRJET Journal
 
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- Optical Character Recognition using Image Processing
IRJET-  	  Optical Character Recognition using Image ProcessingIRJET-  	  Optical Character Recognition using Image Processing
IRJET- Optical Character Recognition using Image ProcessingIRJET Journal
 
Optical Recognition of Handwritten Text
Optical Recognition of Handwritten TextOptical Recognition of Handwritten Text
Optical Recognition of Handwritten TextIRJET Journal
 
Deep Learning for Natural Language Processing
Deep Learning for Natural Language ProcessingDeep Learning for Natural Language Processing
Deep Learning for Natural Language ProcessingIRJET 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
 
Character recognition for bi lingual mixed-type characters using artificial n...
Character recognition for bi lingual mixed-type characters using artificial n...Character recognition for bi lingual mixed-type characters using artificial n...
Character recognition for bi lingual mixed-type characters using artificial n...eSAT Publishing House
 
A Convolutional Neural Network approach for Signature verification
A Convolutional Neural Network approach for Signature verificationA Convolutional Neural Network approach for Signature verification
A Convolutional Neural Network approach for Signature verificationIRJET Journal
 
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...IRJET Journal
 

Similar to IRJET- Intelligent Character Recognition of Handwritten Characters (20)

IRJET- Offline Transcription using AI
IRJET-  	  Offline Transcription using AIIRJET-  	  Offline Transcription using AI
IRJET- Offline Transcription using AI
 
Handwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNNHandwritten Digit Recognition Using CNN
Handwritten Digit Recognition Using CNN
 
IRJET- Handwritten Character Recognition using Artificial Neural Network
IRJET- Handwritten Character Recognition using Artificial Neural NetworkIRJET- Handwritten Character Recognition using Artificial Neural Network
IRJET- Handwritten Character Recognition using Artificial Neural Network
 
IRJET- Information Retrieval & Text Analytics using Artificial Intelligence
IRJET- Information Retrieval & Text Analytics using Artificial IntelligenceIRJET- Information Retrieval & Text Analytics using Artificial Intelligence
IRJET- Information Retrieval & Text Analytics using Artificial Intelligence
 
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-MText Extraction from Images using Convolutional Neural Network
IRJET-MText Extraction from Images using Convolutional Neural NetworkIRJET-MText Extraction from Images using Convolutional Neural Network
IRJET-MText Extraction from Images using Convolutional Neural Network
 
Handwritten Text Recognition and Translation with Audio
Handwritten Text Recognition and Translation with AudioHandwritten Text Recognition and Translation with Audio
Handwritten Text Recognition and Translation with Audio
 
Final Report on Optical Character Recognition
Final Report on Optical Character Recognition Final Report on Optical Character Recognition
Final Report on Optical Character Recognition
 
IRJET- Image to Text Conversion using Tesseract
IRJET-  	  Image to Text Conversion using TesseractIRJET-  	  Image to Text Conversion using Tesseract
IRJET- Image to Text Conversion using Tesseract
 
Document Analyser Using Deep Learning
Document Analyser Using Deep LearningDocument Analyser Using Deep Learning
Document Analyser Using Deep Learning
 
IRJET- Photo Optical Character Recognition Model
IRJET- Photo Optical Character Recognition ModelIRJET- Photo Optical Character Recognition Model
IRJET- Photo Optical Character Recognition Model
 
Design and Description of Feature Extraction Algorithm for Old English Font
Design and Description of Feature Extraction Algorithm for Old English FontDesign and Description of Feature Extraction Algorithm for Old English Font
Design and Description of Feature Extraction Algorithm for Old English Font
 
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- Optical Character Recognition using Image Processing
IRJET-  	  Optical Character Recognition using Image ProcessingIRJET-  	  Optical Character Recognition using Image Processing
IRJET- Optical Character Recognition using Image Processing
 
Optical Recognition of Handwritten Text
Optical Recognition of Handwritten TextOptical Recognition of Handwritten Text
Optical Recognition of Handwritten Text
 
Deep Learning for Natural Language Processing
Deep Learning for Natural Language ProcessingDeep Learning for Natural Language Processing
Deep Learning for Natural Language Processing
 
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
 
Character recognition for bi lingual mixed-type characters using artificial n...
Character recognition for bi lingual mixed-type characters using artificial n...Character recognition for bi lingual mixed-type characters using artificial n...
Character recognition for bi lingual mixed-type characters using artificial n...
 
A Convolutional Neural Network approach for Signature verification
A Convolutional Neural Network approach for Signature verificationA Convolutional Neural Network approach for Signature verification
A Convolutional Neural Network approach for Signature verification
 
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...
IRJET- Scandroid: A Machine Learning Approach for Understanding Handwritten N...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
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
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
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
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfROCENODodongVILLACER
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)dollysharma2066
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 

Recently uploaded (20)

INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
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
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
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
 
Risk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdfRisk Assessment For Installation of Drainage Pipes.pdf
Risk Assessment For Installation of Drainage Pipes.pdf
 
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
Call Us ≽ 8377877756 ≼ Call Girls In Shastri Nagar (Delhi)
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 

IRJET- Intelligent Character Recognition of Handwritten Characters

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1332 Intelligent Character Recognition of Handwritten Characters Kailash Kangne1 1Eight Semester, Information Science and Engineering, The National Institute of Engineering, Mysore ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - The goal of this work is to identify printed text in image or handwritten characters using a camera or scanning equipment by converting them into machine-readable text with the help of a neural network. This research is different from traditional OCR in fact that it provides accurate results as it is using supervised machine learning which helps in training the system well. The system input is digital images which contains some patterns tobeclassified. Theanalysisand recognition of the patterns in images are becoming more complex, yet easy with advancesintechnological knowledge. It can handle multiple language scripts in its dataset and provide results accurately up to 95% for alphanumeric characters. Key Words: intelligent character recognition, supervised machine learning, dataset visualization, feature extraction. 1. INTRODUCTION Optical character reader (OCR) is a device which electronically convertsimagesofhandwritten orprinted text into machine-readable text, maybe it from a scanned document, a nameplate, a photo or from subtitle text superimposed on an image. It is not possible to use handwritten and printed documents that are either scanned or photographed as they are in an image format that proves to be a lot of hindrances and involves hard work to convert them into data editable for computers. This conversion can be costly for organizations that handle large amounts of data and in the resulting documents can also generate hugeamountsofhumanerrors. When labour is scarce and efficiency needstobeincreased,a computer-aided conversion of such optical documents can prove. In the past, people struggled with data entry and digitization. Due to changes in data type, existingtechniques to overcome these issues such as OMR sheets and form data have been outdated. A neural network-based approach is necessary to convert data of varied types into digital information to overcome these problems. Many organizations have spent a lot of money, time and work to convert present information on a paper into computer data. Using a trained tool, this small task can be easily accomplished with little or no work, making the company focus its resources and valuable workforce on itschallenges. If done on similar types of documents, this computerized conversion can be very productive, saving valuable time. 2. RELATED STUDIES Researchers are very concerned about OCR as they aim to develop a robust and efficient recognitionsystem.Study was conducted to develop associative pattern matching technique and match algorithms with accurate and fast intelligent character recognition system. There have been approaches related to microscopic image texture characters related to surface roughness. This proves that with the roughness of the surface, different parameters change regularly. Efforts have been madetocapturecharactersfrom paper forms. Research has also been done in license plate recognition. Nevertheless, developing a system where characters are automatically transferred to excel sheet after testing is challenging. Segmentationis animportantphaseincharacter recognition and at this stage efforts have been made to improve accuracy also discuss segmentation in which trained classifier is used to segment the connected characters into text-based CAPTCHAs. With regard to machine learning, SVM has been used in modified freeman chain code, which is used to extract features using SVM classifiers. As many performance parameters depend on in, the algorithm is very necessary. This gives a high- performance algorithm aswell aslowmemoryconsumption. Matching templates and extracting features using back propagation algorithm largely focuses on the noise removal aspect. There, algorithms are applied after transferring data to excel sheet or creating a CSV file. As previously stated, printed text is relatively easierto recognize,buthandwritten text is difficult due to changes in parameters of writing. Therefore, a lot of work has been done previouslytoaddress the issues facing the recognition of handwriting, but nosuch efforts have been made to apply supervised learning algorithms and transfer data simultaneously to excel sheet after python programming. 3. ARTIFICIAL NEURAL NETWORK It is the most widely used techniques for classification purposes. However, other techniques such as Naive Bayes, Support vector machine, rough set are also popular tools for different classification context. The suitability of artificial neural network (ANN) as a smart technique lies in its attempt to imitate human effort. Because of its vast capacity to process information, ANN gives better resultsforcomplex pattern recognition tasks. Neural networks are therefore preferred to other techniques, particularly for pattern recognition tasks such as identification of offline text.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1333 In principle, ANN is defined by three parameter types: 1.The pattern of interconnection between neuron layers 2. The learning process to update interconnection weights 3. Activation features that map a weighted input of a neuron to its activation of output. Typically, two steps are involved in the process. The first step is the training phase in which the correct data class is identified. The extracted features wouldserveasthedata for the neural network training. Once the NN is trained, by extracting features from new characters,newcharacterscan be classified into known classes. For this purpose, which is driven by the principle of back propagationalgorithm,multi- layer feed forward neural network is mostly used. 4. PROPOSED SYSTEM This project approaches the problem of optical character recognition in two stages, the first being training stage in which the system is provided withhandwrittencharacters of all alphabets in ascending order and then predictionstagein which an input image is given thatissplitintocharacters and each is individually predicted by the trainedneural network. In both stages characters are processed by using a gradient change based feature extraction which involves slicing individual characters into multiple equally sized zones and extracting features such as starters, intersections and end points as well the lowest and highest points in every zone. The zones are then converted into feature vectors which gives the values of all the features in thezones.Thesefeature vectors are used for training as well as during prediction during comparison. Fig 1: Block diagram of system. Document Accessing Module: Input: Documents that contain handwritten or printed text. Process: Using a scanner or digital camera, the submitted documents are read and converted into a PNG image. Also, the documents are labelled either as training or test data or as actual data. The naming conventions followed are' TR' or' TE' or' AC' respectively, followed by a number for training, testing and actual data. Output: The acquired set of images are stored into the directory system. Pre-processing Module: Input: Images stored in the directory Process: Regardless of the image, it must be free from noise caused by degradation, physical damage and also from the scanning equipment boundaries. By padding or removing borders, the image is converted intoa squareimage,thenthe image is binarized to facilitate processing. Averaging is also done by taking multiple scans of the same image to improve the quality of the image. Output: Image ready for mathematical operations. Feature Improvement Module: Input: Binarized Images. Process: While binarization produces good results for printed text images,further processingofmanuscriptimages is still required. There are still holes within an image's particles that must be filled and very small text dilated in order to detect them. Output: Images with no holes and better contrast. Feature Extraction module: Input: Detailed Binary Images Process: The image characteristics here are recognizedwith spaces between words and each word is divided into characters. The characters are further segmented into several sub-functions, which then become a function vector. Elements can be form, slope, height, width, etc. Output: Features of an image as vectors. Artificial Neural Network: Input: Feature Vectors. Process: The feature vectors are fed into the feed forward network's input layer, which uses the cluster log sigmoid weight function to classify the image featuresanddetermine the confidence level for each output node for a givenfeature. The trained data set is stored in the directory along with its probabilities and confidence levels. Output: Trained Neural Network. User Input module: Input: New Images Process: Using this module, the user uses the trained neural network to identify the images he wants. Open a picture and send it for prediction to this module. The trained node neural network is not able to find the characters in the image. Output: Recognized characters.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 04 | Apr 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1334 5. RESULTS The captured image is scanned to detect the color and background of the characters. To reduce all irrelevant information, pre - processing of the image is necessary. Our research is based on alpha numerals and special characters being recognized. Fig. 2. Results showing almost 95% accuracy The accuracy was about 75 percent after testing as many as 100 samples. But the accuracy increased significantly after moving to nearly 400 samples and moved to nearly 95 percent. The figure (Figure 2) shows 16 sample test results, out of which 15 samples show the correct character and one of the 16 characters cannot be recognized. Once again the recognizable characters are transferred to the Excel sheet. 6. CONCLUSION Optical characters can be recognized in multiple ways, but using something that mimics the nature and characterofthe human brain is bound to succeed better than any other system. The proposed method uses neural network approach to the optical character recognition task, butusing features rather than a wholesome comparison, which is inappropriate for handwritten documents,isnotan effective way. In the future, the method of extraction of features may change to suit the needs of multiplelanguages.Sucha system can also be used in robot vision as well as in understanding human written information. Such a work could be extended in the future so that it could be used to read hieroglyphics and other ancient languages. REFERENCES 1) Mrs. R. Rani, Prof. R. Dhir , G. Sinha, 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) V. Narawade, M. Patil, Recognition of Handwritten Devanagari Characters through Segmentation and Artificial neural networks , International Journal of Engineering Research and Technology, ISSN:2278- 0181,Vol. 1 Issue 6, August 2012. 3) D. Bhattacharjee, M. Nasipuri, S. Arora, L. Malik and B. Portier, A Two Stage Classification Approach for Handwritten Devanagari Characters. 4) Fan Xiaoping, Jian, Zhang, and Huang Cailun. "Research on characters segmentation and characters recognition in intelligent license plate recognition system." Control Conference, 2006, Chinese. IEEE, 2006. 5) Ogden, Phil. "Applying intelligent character recognition in the 'real world'." Document Image Processing and Multimedia , IEE Colloquium on. IET, 1999. 6) Hussain, Rafaqat, "Recognition based segmentation of connected characters in text based CAPTCHAs." Communication Software and Networks ,20168thIEEE International Conference on. EEE, 2016. 7) Verma, Vivek Kumar, and Pradeep Kumar Tiwari. "Removal of Obstacles in Devanagari Script for Efficient Optical Character Recognition." Computational Intelligence and CommunicationNetworks(CICN),2015 International Conference on. IEEE, 2015. 8) Khaustov, P. A., V. G. Spitsyn, and E. I. Maksimova. "Algorithm for optical handwritten characters recognition basedonstructural components extraction." Strategic Technology (IFOST), 2016 11th International Forum on. IEEE, 2016. 9) Meher, Sukadev, and Debasish Basa. "An intelligent scanner with handwritten odia character recognition capability." Sensing Technology, 2011 Fifth International Conference on. IEEE, 2011. 10) T.M.Rath and R. Manmatha(2007), “Word spotting for historical documents” , International Journal on Document Analysis and Recognition , Vol.9, No 2 – 4, pp. 139- 152. 11) Ragot N., Salah, A. B., and Paquet, T. (2013). “Adaptive detection of missed text areas in OCR outputs: Application to automatic assessment of OCR quality in mass digitization projects” Proc. SPIE8658, Document Recognition and Retrieval XX, 865816. 12) T. K. Das (2016). Intelligent Techniques in Decision Making: A Survey, Indian Journal of Science and Technology, Vol. 9, No.12,pp.1-6.