SVM Based Identification of Psychological Personality Using Handwritten Text

IJERA Editor
IJERA EditorInternational Journal of Engineering Research and Applications (IJERA) em www.ijera.com

Identification of Personality is a complex process. To ease this process, a model is developed using cursive handwriting. Area based, width based and height based thresholds are set for only character selection, word selection and line selection. The rest is considered as noise. Followed by feature vector construction. Slope feature using slope calculation, shape features and edge detection done using Sobel filter and direction histogram is considered. Based on the direction of handwriting the analysis was done. Writing which rises to the right shows optimism and cheerfulness. Sagging to the right shows physical or mental weariness. The lines which are straight, reveals over-control to compensate for an inner fear of loss of control.The analysis was done using single line and multiple lines. Simple techniques have provided good results. The results using single line were 95% and multiple lines were 91%.The classification is done using SVM classifier.

Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94
www.ijera.com 89|P a g e
SVM Based Identification of Psychological Personality Using
Handwritten Text
Syeda Asra1,
Dr.Shubhangi2
(1
Department of Computer Science & Engineering, Appa Institute of Engineering & Technology, Kalaburagi,
India)
(2
Visvesvaraya Technological University, Regional Centre, Kalaburagi, India )
ABSTRACT
Identification of Personality is a complex process. To ease this process, a model is developed using cursive
handwriting. Area based, width based and height based thresholds are set for only character selection, word
selection and line selection. The rest is considered as noise. Followed by feature vector construction. Slope
feature using slope calculation, shape features and edge detection done using Sobel filter and direction
histogram is considered. Based on the direction of handwriting the analysis was done. Writing which rises to
the right shows optimism and cheerfulness. Sagging to the right shows physical or mental weariness. The lines
which are straight, reveals over-control to compensate for an inner fear of loss of control.The analysis was done
using single line and multiple lines. Simple techniques have provided good results. The results using single line
were 95% and multiple lines were 91%.The classification is done using SVM classifier.
Index Terms— Support Vector Machine (SVM), Personality, Human Behavior.
I. INTRODUCTION
Human behavior [1] refers to the range of
behaviors exhibited by humans and which are
influenced by culture, attitudes, emotions, values,
ethics, authority, rapport, hypnosis, persuasion,
coercion and genetics. Human behavior is
experienced throughout an individual’s entire
lifetime. It includes the way they act based on
different factors such as genetics, social norms, core
faith, and attitude. Behavior is impacted by certain
traits each individual has. The traits vary from
person to person and can produce different actions
or behavior from each person. Everyday conceptions
of personality trait [2][3] make two key
assumptions. First are stable over time. Most people
accept that an individuals’ behavior naturally varies
somewhat from occasion to occasion, but would
maintain the core consistency which defines
individual’s true nature like the unchangeable spots
of the leopard.
II. RELATED WORK
A variety of systems have been designed
and implemented. The previous and the most recent
system consisted of single line and only slope
features were considered based on line regression
[4]. The network was trained using ANN [5] and
SVM [6].The performances were compared using
ANN and SVM. The results with SVM were found
to be 97% and that of ANN was 85%.
III. PROPOSED METHODOLOGY
Trying to understand people’s inner
motivations is notoriously uncertain science.
Personality identification offers one of the few
routes into this world. Handwriting is brain
writing.Handwriting Analysis or Graphology [7] is a
scientific method of identifying, evaluating and
understanding personality through the strokes and
patterns revealed by handwriting. Accuracy of
handwriting depends on how skilled the analyst is.
Perhaps Human intervention in handwriting analysis
is effective but prone to fatigue and inaccurate.
Hence a system is developed to automate this
process.
Pre processing
Feature ExtractionPreprocessing
Line
Segmentation
Marphological
Operation
Binarization using
otsu’s method
SVM
Classify
Feature
Extraction
Templates
1. Image
Dilation
2.Measure the
properties of
image
1. Image
Dilation
2. Edge
Histogram
based
Features
1. Resize
2. Gray
Conversion
Knowledge Base
Query Image
Decision
1. Resize
2. Gray
Conversion
1. Image
Dilation
2. Edge
Histogram
based
Features
Training
Testing
Fig 1: Block diagram of proposed system
RESEARCH ARTICLE OPEN ACCESS
R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00
www.ijera.com 90|P a g e
3.1 Image Handwriting Acquisition and Database
Creation
Data samples of 500 in number were
collected from people belonging to different works
of life both equally from males & females. In order
to make the results time and mood invariant the
samples were collected in different days at different
points of time. A4 paper with black ball point pen
with a hard surface was used for writing .Three
paragraphs were given to write. The images were
scanned using laser jet scanner with a resolution of
2528x3507 pixels and 300dpi.
3.2 Noise Removal & Image Handwriting Pre
processing
A global threshold of the image is found
using Otsu’s method [8].The image is then
converted into binary image as shown in figure 2.
Morphological based operation, image dilation is
performed to bridge the gap between the characters
in the cursive handwriting as shown in figure 3.
Figure 2: Gray image converted into binary image
Figure3: Image Dilated
3.3 Feature Detection and Psychological
Representation
Three features were extracted relevant for
recognition, slope feature, shape feature and
direction of histogram.
3.3.1 Slope Feature
Slope feature was used to find the slope of the
line
3.3.2 Shape Feature
The shape feature was extracted using area,
perimeter, form factor, major axis, minor axis,
roundness compactness, density
3.3.3 Edge Orientation Histogram
The basic idea is to build a histogram [9]
with the directions of the gradients of the edges
(borders or contours). It is possible to detect
edges in an image but it in this we are interested in
the detection of the angles. This is possible
through Sobel operators [10].
IV. CLASSIFICATION
4.1 SVM’s Overview [11]
SVM classification is based on the idea of
decision hyper planes that determine decision
boundaries in input space or high dimensional
feature space. SVM constructs linear functions
(hyper planes either in input space or in feature
space) from a set of labelled training dataset. This
hyper plane will try to split the positive samples
from the negative samples. The linear separator is
commonly constructed with maximum distance
from the hyper plane to the closest negative and
positive samples. Intuitively, this causes correct
classification for training data which is near, but not
equal to the testing data. Throughout training phase
SVM takes a data matrix as input data and labels
each one of samples as either belonging to a given
class (positive) or not (negative).SVM treats each
sample in the matrix as a row in a input space or
high dimensional feature space, where the number
of attributes identifies the dimensionality of the
space. SVM learning algorithm determines the best
hyper plane which separates each positive and
negative training sample. The trained SVM can be
deployed to perform predictions about a test samples
(new) in the class. Nonlinear problems in SVM are
solved by mapping the n- dimensional input space
into a high dimensional feature space. Finally in this
high dimensional feature space a linear classifier is
constructed which acts as nonlinear classifier in
input space.
Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94
www.ijera.com 91|P a g e
4.2 Radial Basis Function [12](RBF) and
Support Vector Machines (SVM) networks
 The belief is that a classification problem cast
into a higher dimensional space becomes more
likely separable than in a lower dimensional
space.
 RBF network can be used find a set weights for
a curve fitting problem. The weights are in
higher dimensional space than the original data.
 Learning is equivalent to finding a surface in
high dimensional space that provides the best fit
to training data.
 Hidden layers provide a set of functions that
constitute an arbitrary basis for input patterns
when they are expanded to the hidden space;
these functions are called radial basis functions.
 Input layer + only one hidden layer responsible
for spanning hidden space to which input
vectors are mapped + a linear output layer.
 The functions are nonlinear. → In a pattern
recognition task this often guarantees better
separation.
 The functions map the samples from the input
space to hidden space, in which the same
samples are hopefully separable.
4.3 Radial Basis Function (RBF)
4.3.1 Gaussian functions
φ(r) = exp ( − r 2
/2σ 2
) for some σ > 0 and r ∈ R
(Eqn. 1)
Gaussian functions are probably the most used. In
general, the selection depends on the application.
 Support vectors are a set of training samples
extracted by the algorithm used to find the
optimal plane.
 The distance between the separating hyper
plane and the closest data point is called the
margin of separation (denoted ρ in the book).
 The goal of a support vector machine is to find
the particular hyper plane that maximizes the
margin of separation.
 Furthermore, the goal is to determine such a
separating hyper plane which is optimal
 Optimality is defined here as di · (wT
xi + b) ≥ 1
for i = 1, . . . N training samples, where di = +1
or di = −1.
 Also the weight vector w should minimize the
cost function: Θ(w) = 1 /2wT
w
 Obtaining the optimal solution
 The two optimality constraints can be expressed
in a form of single cost function.
(Eqn. 1)
Where αi are so called Lagrange multiplies.
 The optimal solution is found at the saddle
point of J(·) (J is minimized with respect to w
and b and maximized with respect to α)
 The saddle point is found by differentiating J
first with respect to w and then b and setting the
differentials equal to zero.
 Input data is transformed from input space with
dimension m0 to a higher dimension feature
space with dimension m1.
 The separating hyper plane i.e. the weights wj is
estimated in the feature space.
 The inner-product kernel can be used to
construct the optimal hyper plane in the feature
space without having to consider the feature
space itself in explicit form.
 Inner product kernel loosely speaking: It is a
function replacing activation function of a
single neuron network.
 The inner product kernel is a function that is
used to find the optimal hyper plane for a
support vector machine network.
 Inner product kernel is a function:
K(x, xi) = φ T
(x)φ(xi),
(Eqn. 3)
Where φ is a set of transformation function
φj(·), j = 1, . . . m1. m1 is the dimensionality of
the higher order space (original dimension
m0). xi is ith
training sample i.e. it is a known sample
unlike x.
 Depending on how the kernel is defined
different learning machines can be built using
SVM. Such machines are polynomial learning
machines, RBF networks, and two-layer
perceptrons.
Figure 4: Architecture of Support Vector Machine
 x = [x 1, x 2 . . . m0] ^T is input sample.
 K (·, ·) are inner product kernels. I x 1, x 2 . . .
x m1 are examples of input data. I after
applying inner product kernels to input sample
x, the data sample is mapped from input space
to feature space.
 An optimal hyper plane is searched for in the
feature space.
 Note the indexing: input vector element is
denoted by x 1 whereas x 1 denotes training
sample 1.
R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00
www.ijera.com 92|P a g e
V. CO-RELATION BETWEEN
FEATURE DETECTION AND
PERSONALITY
5.1 Up-Hill Line(Cheerfulness)
Writing "uphill" reveals the applicant
worthy of further trait-match evaluation. He's
optimistic, ambitious and cheerful.Healthy mental
energy & can stay busy active & constantly on the
go.
5.2 Down –Hill Line (Weariness)
Writing ''downhill" may be caused by a
temporary depression, ill health, or physical fatigue.
If this applicant has special skills necessary in your
business, it would be wise to have him return on
another day and obtain another sample of his
writing. The first down slant sample could be just a
temporary discouragement from job-hunting. If the
second sample has the same down slanted
appearance, it is a warning of an ingrained
pessimism which keeps this applicant on the job-
seeking circuit. Negative, disillusionment, constant
disappointment.
5.3 Constant Line(Reveals over control to
compensate for an inner fear )
The writer of a firm, straight, even baseline
controls his moods, allowing him to go directly
toward his goals without getting side-tracked.
Reveals over control to compensate for an inner fear
Healthy mental energy & can stay busy active &
constantly on the go.
VI. RESULTS AND DISCUSSIONS
6.1 Analysis of Single Line in Handwritten Text
Line segmentation was done using
morphological operations. Figure shows a binary
image classified as Ideal. This indicates lines with
constant slope. Figure shows the line classified as
weariness. This indicates temporary depression and
disillusionment and pessimism. The last
classification is cheerfulness as shown in the figure.
This indicates people with healthy mental energy
and optimism.
Figure. 5: Single line classified as ideal
Fig 6: Line classified as weariness
Figure 9: Line classified as cheerfulness
6.2 Analysis of Multiple Lines in Handwritten
Text
The experimentation is carried for multiple
lines. The SVM RBF kernel used has given
outstanding results.
Fig. 8: Multiple lines considered for classification
Figure 9: Multiple lines classified as weariness
Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94
www.ijera.com 93|P a g e
7 Handwriting Analysis of Celebrities and
Comparison with Graphologists
7.1 Hand Writing Analysis of Mr. Mittal (CEO of
Arcelor Mittal)
The figure shows the handwritten text of
famous personality Mr.Mittal. The network
classified his handwriting as Ideal. The
graphologists say he is controlled. Head rules his
heart.
Figure10: Handwriting Sample of Mr. Laxmi Mittal
Fig11: Image denoised and dilated
Figure 12:Mr.Mittals writing classified as ideal
VII. CONCLUSION
The current work is carried considered
single lines and multiple lines for better assessing
the personality trait. The training was done based on
SVM. The network was trained for unknown
samples of celebrities. The results were 94.4%.
Samples were collected from different people at
different point of time to make the network robust
and results invariant.
IX. FUTURE WORKS
This work can be extended for considering
other handwriting features such as margins, spaces
between characters and so on to better judge the
personality.
ACKNOWLEDGEMENTS
I would like to thank the Almighty above
all then my parents my husband my kids and my
guide for giving me encouragement in all kind of
endeavours directly or indirectly. I further extend
my thanks to the famous psychologist Gordon
Allport.
REFERENCES
[1]. Jorge Azorín-López, Marcelo Saval-Calvo,
Andrés Fuster-Guilló, José García-
Rodríguez,: Human Behaviour Recognition
Based On Trajectory Analysis Using
Neural Networks, 2014 , In Proc IEEE Intl.
Conf 2015.
[2]. Imran Ali Mirza,Shainila Mulla, Rishit
Parekh, Satej Sawant, Krishna Mohan
Singh : Generating Personalized Job Role
Recommendations For The IT Sector
Through Predictive Analytics And
Personality Traits, 2015, In Proc. IEEE Int.
Conf. On Technologies For Sustainable
Development.
[3]. Charlesh.Trafford And Rand H.Nelson,
Peterson : Directed Handwriting
Handwriting A Complete Guide To
Instruction Teaching Physical Patterns For
Reading And Writing Fluency ISBN 1-
890666-3 5-1, 2003.
[4]. Syeda Asra, Dr.Shubhangi D.C
:Personality Trait Identification Using
Unconstrained Cursive And Mood
Invariant Handwritten Text ,2015, In Intl
Journal Education And Management
Engineering, Volume 5 Ppl 20-31
[5]. Amit Kr. Yadav, Abdul Azeem, Akhilesh
Singh, Hasmat Malik : Application
Research Based On Artificial Neural
Network(ANN) To Predict No Load Loss
For Transformer’s Design, 2011,IEEE Intl
Conf On Communication Systems And
Network Technologies 2013.
[6]. Fereshteh Falah Chamasemani , Yashwant
Prasad Singh : Multi-Class Support Vector
Machine (SVM) Classifiers – An
Application In Hypothyroid Detection And
Classification , 2011. In IEEE Intl Conf On
Bio-Inspired Computing: Theories And
Applications, 2011.
[7]. José L. Vásquez, Carlos M. Travieso And
Jesús B. Alonso: Using Calligraphies
R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com
ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00
www.ijera.com 94|P a g e
Features For Off Line Writer Identification,
IEEE Intl Conf. 2013.
[8]. Jun Zhang : Image Segmentation Based On
2D Otsu Method With Histogram Analysis
,IEEE Intl Conf. On Computer Science
And Software Engineering 2008.
[9]. Wangsheng Yu, Xiaohua Tian ; Zhiqiang
Hou ; Anqi Huang : Region Edge
Histogram: A New Feature For Region-
Based Tracking In Procd Signal Processing
(ICSP), 2014 12th International Conference
On Oct 2014.
[10]. Chapel GN,Daruwala RD,Gofane MS:
Comparisions Of Robert, Prewitt, Sobel
Operator Based Edge Detection Methods
For Real Time Uses On FPGA.In Proc Intl
Conf On ICTSD,Feb 2015.
[11]. Fereshteh Falah Chamasemani , Yashwant
Prasad Singh Multi-Class Support Vector
Machine (SVM) Classifiers – An
Application In Hypothyroid Detection And
Classification , 2011. In IEEE Intl Conf On
Bio-Inspired Computing: Theories And
Applications, 2011.
[12]. Fereshteh Falah Chamasemani, Yashwant
Prasad Singh: Multi-Class Support Vector
Machine (SVM) Classifiers – An
Application In Hypothyroid Detection And
Classification. In Intl Conf IEEE On BIC
,Oct 2011.

Recomendados

A CHINESE CHARACTER RECOGNITION METHOD BASED ON POPULATION MATRIX AND RELATIO... por
A CHINESE CHARACTER RECOGNITION METHOD BASED ON POPULATION MATRIX AND RELATIO...A CHINESE CHARACTER RECOGNITION METHOD BASED ON POPULATION MATRIX AND RELATIO...
A CHINESE CHARACTER RECOGNITION METHOD BASED ON POPULATION MATRIX AND RELATIO...Teady Matius
159 visualizações6 slides
Textural Feature Extraction of Natural Objects for Image Classification por
Textural Feature Extraction of Natural Objects for Image ClassificationTextural Feature Extraction of Natural Objects for Image Classification
Textural Feature Extraction of Natural Objects for Image ClassificationCSCJournals
142 visualizações15 slides
A Novel Algorithm for Design Tree Classification with PCA por
A Novel Algorithm for Design Tree Classification with PCAA Novel Algorithm for Design Tree Classification with PCA
A Novel Algorithm for Design Tree Classification with PCAEditor Jacotech
388 visualizações6 slides
Comparison on PCA ICA and LDA in Face Recognition por
Comparison on PCA ICA and LDA in Face RecognitionComparison on PCA ICA and LDA in Face Recognition
Comparison on PCA ICA and LDA in Face Recognitionijdmtaiir
237 visualizações4 slides
50120130405020 por
5012013040502050120130405020
50120130405020IAEME Publication
277 visualizações10 slides
An Experiment with Sparse Field and Localized Region Based Active Contour Int... por
An Experiment with Sparse Field and Localized Region Based Active Contour Int...An Experiment with Sparse Field and Localized Region Based Active Contour Int...
An Experiment with Sparse Field and Localized Region Based Active Contour Int...CSCJournals
38 visualizações11 slides

Mais conteúdo relacionado

Mais procurados

Machine Learning Unit 4 Semester 3 MSc IT Part 2 Mumbai University por
Machine Learning Unit 4 Semester 3  MSc IT Part 2 Mumbai UniversityMachine Learning Unit 4 Semester 3  MSc IT Part 2 Mumbai University
Machine Learning Unit 4 Semester 3 MSc IT Part 2 Mumbai UniversityMadhav Mishra
408 visualizações87 slides
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM por
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM ijcisjournal
56 visualizações12 slides
Comparision of methods for combination of multiple classifiers that predict b... por
Comparision of methods for combination of multiple classifiers that predict b...Comparision of methods for combination of multiple classifiers that predict b...
Comparision of methods for combination of multiple classifiers that predict b...IJERA Editor
195 visualizações4 slides
Survey on Unsupervised Learning in Datamining por
Survey on Unsupervised Learning in DataminingSurvey on Unsupervised Learning in Datamining
Survey on Unsupervised Learning in DataminingIOSR Journals
448 visualizações8 slides
Medical diagnosis classification por
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classificationcsandit
315 visualizações11 slides
A new model for iris data set classification based on linear support vector m... por
A new model for iris data set classification based on linear support vector m...A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...IJECEIAES
32 visualizações6 slides

Mais procurados(18)

Machine Learning Unit 4 Semester 3 MSc IT Part 2 Mumbai University por Madhav Mishra
Machine Learning Unit 4 Semester 3  MSc IT Part 2 Mumbai UniversityMachine Learning Unit 4 Semester 3  MSc IT Part 2 Mumbai University
Machine Learning Unit 4 Semester 3 MSc IT Part 2 Mumbai University
Madhav Mishra408 visualizações
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM por ijcisjournal
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
Colour Image Segmentation Using Soft Rough Fuzzy-C-Means and Multi Class SVM
ijcisjournal56 visualizações
Comparision of methods for combination of multiple classifiers that predict b... por IJERA Editor
Comparision of methods for combination of multiple classifiers that predict b...Comparision of methods for combination of multiple classifiers that predict b...
Comparision of methods for combination of multiple classifiers that predict b...
IJERA Editor195 visualizações
Survey on Unsupervised Learning in Datamining por IOSR Journals
Survey on Unsupervised Learning in DataminingSurvey on Unsupervised Learning in Datamining
Survey on Unsupervised Learning in Datamining
IOSR Journals448 visualizações
Medical diagnosis classification por csandit
Medical diagnosis classificationMedical diagnosis classification
Medical diagnosis classification
csandit315 visualizações
A new model for iris data set classification based on linear support vector m... por IJECEIAES
A new model for iris data set classification based on linear support vector m...A new model for iris data set classification based on linear support vector m...
A new model for iris data set classification based on linear support vector m...
IJECEIAES32 visualizações
K-MEDOIDS CLUSTERING USING PARTITIONING AROUND MEDOIDS FOR PERFORMING FACE R... por ijscmc
K-MEDOIDS CLUSTERING  USING PARTITIONING AROUND MEDOIDS FOR PERFORMING FACE R...K-MEDOIDS CLUSTERING  USING PARTITIONING AROUND MEDOIDS FOR PERFORMING FACE R...
K-MEDOIDS CLUSTERING USING PARTITIONING AROUND MEDOIDS FOR PERFORMING FACE R...
ijscmc1.7K visualizações
40120140504011 por IAEME Publication
4012014050401140120140504011
40120140504011
IAEME Publication311 visualizações
Pillar k means por swathi b
Pillar k meansPillar k means
Pillar k means
swathi b1.3K visualizações
Types of clustering and different types of clustering algorithms por Prashanth Guntal
Types of clustering and different types of clustering algorithmsTypes of clustering and different types of clustering algorithms
Types of clustering and different types of clustering algorithms
Prashanth Guntal13.1K visualizações
Basics of Machine Learning por Pranav Challa
Basics of Machine LearningBasics of Machine Learning
Basics of Machine Learning
Pranav Challa1.4K visualizações
I1803026164 por IOSR Journals
I1803026164I1803026164
I1803026164
IOSR Journals132 visualizações
Parametric Comparison of K-means and Adaptive K-means Clustering Performance ... por IJECEIAES
Parametric Comparison of K-means and Adaptive K-means Clustering Performance ...Parametric Comparison of K-means and Adaptive K-means Clustering Performance ...
Parametric Comparison of K-means and Adaptive K-means Clustering Performance ...
IJECEIAES74 visualizações
Machine Learning Unit 3 Semester 3 MSc IT Part 2 Mumbai University por Madhav Mishra
Machine Learning Unit 3 Semester 3  MSc IT Part 2 Mumbai UniversityMachine Learning Unit 3 Semester 3  MSc IT Part 2 Mumbai University
Machine Learning Unit 3 Semester 3 MSc IT Part 2 Mumbai University
Madhav Mishra529 visualizações
Unsupervised learning clustering por Arshad Farhad
Unsupervised learning clusteringUnsupervised learning clustering
Unsupervised learning clustering
Arshad Farhad1K visualizações
Blind Image Seperation Using Forward Difference Method (FDM) por sipij
Blind Image Seperation Using Forward Difference Method (FDM)Blind Image Seperation Using Forward Difference Method (FDM)
Blind Image Seperation Using Forward Difference Method (FDM)
sipij35 visualizações
Combined cosine-linear regression model similarity with application to handwr... por IJECEIAES
Combined cosine-linear regression model similarity with application to handwr...Combined cosine-linear regression model similarity with application to handwr...
Combined cosine-linear regression model similarity with application to handwr...
IJECEIAES39 visualizações

Similar a SVM Based Identification of Psychological Personality Using Handwritten Text

Offline Character Recognition Using Monte Carlo Method and Neural Network por
Offline Character Recognition Using Monte Carlo Method and Neural NetworkOffline Character Recognition Using Monte Carlo Method and Neural Network
Offline Character Recognition Using Monte Carlo Method and Neural Networkijaia
682 visualizações16 slides
Brain Tumor Classification using Support Vector Machine por
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineIRJET Journal
283 visualizações6 slides
An efficient technique for color image classification based on lower feature ... por
An efficient technique for color image classification based on lower feature ...An efficient technique for color image classification based on lower feature ...
An efficient technique for color image classification based on lower feature ...Alexander Decker
263 visualizações7 slides
K044065257 por
K044065257K044065257
K044065257IJERA Editor
254 visualizações6 slides
Packet Inspection Using A Hierarchical Pattern Matching... por
Packet Inspection Using A Hierarchical Pattern Matching...Packet Inspection Using A Hierarchical Pattern Matching...
Packet Inspection Using A Hierarchical Pattern Matching...Crystal Jackson
2 visualizações43 slides
Paper id 24201433 por
Paper id 24201433Paper id 24201433
Paper id 24201433IJRAT
580 visualizações5 slides

Similar a SVM Based Identification of Psychological Personality Using Handwritten Text (20)

Offline Character Recognition Using Monte Carlo Method and Neural Network por ijaia
Offline Character Recognition Using Monte Carlo Method and Neural NetworkOffline Character Recognition Using Monte Carlo Method and Neural Network
Offline Character Recognition Using Monte Carlo Method and Neural Network
ijaia682 visualizações
Brain Tumor Classification using Support Vector Machine por IRJET Journal
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector Machine
IRJET Journal283 visualizações
An efficient technique for color image classification based on lower feature ... por Alexander Decker
An efficient technique for color image classification based on lower feature ...An efficient technique for color image classification based on lower feature ...
An efficient technique for color image classification based on lower feature ...
Alexander Decker263 visualizações
K044065257 por IJERA Editor
K044065257K044065257
K044065257
IJERA Editor254 visualizações
Packet Inspection Using A Hierarchical Pattern Matching... por Crystal Jackson
Packet Inspection Using A Hierarchical Pattern Matching...Packet Inspection Using A Hierarchical Pattern Matching...
Packet Inspection Using A Hierarchical Pattern Matching...
Crystal Jackson2 visualizações
Paper id 24201433 por IJRAT
Paper id 24201433Paper id 24201433
Paper id 24201433
IJRAT580 visualizações
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION... por cscpconf
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
MEDICAL DIAGNOSIS CLASSIFICATION USING MIGRATION BASED DIFFERENTIAL EVOLUTION...
cscpconf36 visualizações
report2.doc por butest
report2.docreport2.doc
report2.doc
butest396 visualizações
Methodological Study Of Opinion Mining And Sentiment Analysis Techniques por ijsc
Methodological Study Of Opinion Mining And Sentiment Analysis Techniques  Methodological Study Of Opinion Mining And Sentiment Analysis Techniques
Methodological Study Of Opinion Mining And Sentiment Analysis Techniques
ijsc47 visualizações
ANALYSIS AND COMPARISON STUDY OF DATA MINING ALGORITHMS USING RAPIDMINER por IJCSEA Journal
ANALYSIS AND COMPARISON STUDY OF DATA MINING ALGORITHMS USING RAPIDMINERANALYSIS AND COMPARISON STUDY OF DATA MINING ALGORITHMS USING RAPIDMINER
ANALYSIS AND COMPARISON STUDY OF DATA MINING ALGORITHMS USING RAPIDMINER
IJCSEA Journal164 visualizações
D05222528 por IOSR-JEN
D05222528D05222528
D05222528
IOSR-JEN406 visualizações
Cursive Handwriting Segmentation Using Ideal Distance Approach por IJECEIAES
Cursive Handwriting Segmentation Using Ideal Distance Approach Cursive Handwriting Segmentation Using Ideal Distance Approach
Cursive Handwriting Segmentation Using Ideal Distance Approach
IJECEIAES23 visualizações
50120140504015 por IAEME Publication
5012014050401550120140504015
50120140504015
IAEME Publication216 visualizações
A Novel Framework For Numerical Character Recognition With Zoning Distance Fe... por IJERD Editor
A Novel Framework For Numerical Character Recognition With Zoning Distance Fe...A Novel Framework For Numerical Character Recognition With Zoning Distance Fe...
A Novel Framework For Numerical Character Recognition With Zoning Distance Fe...
IJERD Editor526 visualizações
Classification Techniques: A Review por IOSRjournaljce
Classification Techniques: A ReviewClassification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce216 visualizações
Methodological study of opinion mining and sentiment analysis techniques por ijsc
Methodological study of opinion mining and sentiment analysis techniquesMethodological study of opinion mining and sentiment analysis techniques
Methodological study of opinion mining and sentiment analysis techniques
ijsc667 visualizações
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER por cscpconf
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCERKNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
cscpconf105 visualizações
IRJET- Object Detection using Hausdorff Distance por IRJET Journal
IRJET-  	  Object Detection using Hausdorff DistanceIRJET-  	  Object Detection using Hausdorff Distance
IRJET- Object Detection using Hausdorff Distance
IRJET Journal15 visualizações
SVM - Functional Verification por Sai Kiran Kadam
SVM - Functional VerificationSVM - Functional Verification
SVM - Functional Verification
Sai Kiran Kadam130 visualizações
IRJET - Object Detection using Hausdorff Distance por IRJET Journal
IRJET -  	  Object Detection using Hausdorff DistanceIRJET -  	  Object Detection using Hausdorff Distance
IRJET - Object Detection using Hausdorff Distance
IRJET Journal21 visualizações

Último

MK__Cert.pdf por
MK__Cert.pdfMK__Cert.pdf
MK__Cert.pdfHassan Khan
15 visualizações1 slide
802.11 Computer Networks por
802.11 Computer Networks802.11 Computer Networks
802.11 Computer NetworksTusharChoudhary72015
13 visualizações33 slides
REACTJS.pdf por
REACTJS.pdfREACTJS.pdf
REACTJS.pdfArthyR3
34 visualizações16 slides
Searching in Data Structure por
Searching in Data StructureSearching in Data Structure
Searching in Data Structureraghavbirla63
14 visualizações8 slides
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx por
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptxlwang78
109 visualizações19 slides
Update 42 models(Diode/General ) in SPICE PARK(DEC2023) por
Update 42 models(Diode/General ) in SPICE PARK(DEC2023)Update 42 models(Diode/General ) in SPICE PARK(DEC2023)
Update 42 models(Diode/General ) in SPICE PARK(DEC2023)Tsuyoshi Horigome
38 visualizações16 slides

Último(20)

MK__Cert.pdf por Hassan Khan
MK__Cert.pdfMK__Cert.pdf
MK__Cert.pdf
Hassan Khan15 visualizações
REACTJS.pdf por ArthyR3
REACTJS.pdfREACTJS.pdf
REACTJS.pdf
ArthyR334 visualizações
Searching in Data Structure por raghavbirla63
Searching in Data StructureSearching in Data Structure
Searching in Data Structure
raghavbirla6314 visualizações
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx por lwang78
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx
2023Dec ASU Wang NETR Group Research Focus and Facility Overview.pptx
lwang78109 visualizações
Update 42 models(Diode/General ) in SPICE PARK(DEC2023) por Tsuyoshi Horigome
Update 42 models(Diode/General ) in SPICE PARK(DEC2023)Update 42 models(Diode/General ) in SPICE PARK(DEC2023)
Update 42 models(Diode/General ) in SPICE PARK(DEC2023)
Tsuyoshi Horigome38 visualizações
Pitchbook Repowerlab.pdf por VictoriaGaleano
Pitchbook Repowerlab.pdfPitchbook Repowerlab.pdf
Pitchbook Repowerlab.pdf
VictoriaGaleano5 visualizações
Design_Discover_Develop_Campaign.pptx por ShivanshSeth6
Design_Discover_Develop_Campaign.pptxDesign_Discover_Develop_Campaign.pptx
Design_Discover_Develop_Campaign.pptx
ShivanshSeth637 visualizações
START Newsletter 3 por Start Project
START Newsletter 3START Newsletter 3
START Newsletter 3
Start Project6 visualizações
SUMIT SQL PROJECT SUPERSTORE 1.pptx por Sumit Jadhav
SUMIT SQL PROJECT SUPERSTORE 1.pptxSUMIT SQL PROJECT SUPERSTORE 1.pptx
SUMIT SQL PROJECT SUPERSTORE 1.pptx
Sumit Jadhav 18 visualizações
DESIGN OF SPRINGS-UNIT4.pptx por gopinathcreddy
DESIGN OF SPRINGS-UNIT4.pptxDESIGN OF SPRINGS-UNIT4.pptx
DESIGN OF SPRINGS-UNIT4.pptx
gopinathcreddy19 visualizações
sam_software_eng_cv.pdf por sammyigbinovia
sam_software_eng_cv.pdfsam_software_eng_cv.pdf
sam_software_eng_cv.pdf
sammyigbinovia8 visualizações
BCIC - Manufacturing Conclave - Technology-Driven Manufacturing for Growth por Innomantra
BCIC - Manufacturing Conclave -  Technology-Driven Manufacturing for GrowthBCIC - Manufacturing Conclave -  Technology-Driven Manufacturing for Growth
BCIC - Manufacturing Conclave - Technology-Driven Manufacturing for Growth
Innomantra 6 visualizações
Proposal Presentation.pptx por keytonallamon
Proposal Presentation.pptxProposal Presentation.pptx
Proposal Presentation.pptx
keytonallamon52 visualizações
_MAKRIADI-FOTEINI_diploma thesis.pptx por fotinimakriadi
_MAKRIADI-FOTEINI_diploma thesis.pptx_MAKRIADI-FOTEINI_diploma thesis.pptx
_MAKRIADI-FOTEINI_diploma thesis.pptx
fotinimakriadi8 visualizações
Design of Structures and Foundations for Vibrating Machines, Arya-ONeill-Pinc... por csegroupvn
Design of Structures and Foundations for Vibrating Machines, Arya-ONeill-Pinc...Design of Structures and Foundations for Vibrating Machines, Arya-ONeill-Pinc...
Design of Structures and Foundations for Vibrating Machines, Arya-ONeill-Pinc...
csegroupvn5 visualizações
Web Dev Session 1.pptx por VedVekhande
Web Dev Session 1.pptxWeb Dev Session 1.pptx
Web Dev Session 1.pptx
VedVekhande11 visualizações
ASSIGNMENTS ON FUZZY LOGIC IN TRAFFIC FLOW.pdf por AlhamduKure
ASSIGNMENTS ON FUZZY LOGIC IN TRAFFIC FLOW.pdfASSIGNMENTS ON FUZZY LOGIC IN TRAFFIC FLOW.pdf
ASSIGNMENTS ON FUZZY LOGIC IN TRAFFIC FLOW.pdf
AlhamduKure6 visualizações
fakenews_DBDA_Mar23.pptx por deepmitra8
fakenews_DBDA_Mar23.pptxfakenews_DBDA_Mar23.pptx
fakenews_DBDA_Mar23.pptx
deepmitra816 visualizações

SVM Based Identification of Psychological Personality Using Handwritten Text

  • 1. Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94 www.ijera.com 89|P a g e SVM Based Identification of Psychological Personality Using Handwritten Text Syeda Asra1, Dr.Shubhangi2 (1 Department of Computer Science & Engineering, Appa Institute of Engineering & Technology, Kalaburagi, India) (2 Visvesvaraya Technological University, Regional Centre, Kalaburagi, India ) ABSTRACT Identification of Personality is a complex process. To ease this process, a model is developed using cursive handwriting. Area based, width based and height based thresholds are set for only character selection, word selection and line selection. The rest is considered as noise. Followed by feature vector construction. Slope feature using slope calculation, shape features and edge detection done using Sobel filter and direction histogram is considered. Based on the direction of handwriting the analysis was done. Writing which rises to the right shows optimism and cheerfulness. Sagging to the right shows physical or mental weariness. The lines which are straight, reveals over-control to compensate for an inner fear of loss of control.The analysis was done using single line and multiple lines. Simple techniques have provided good results. The results using single line were 95% and multiple lines were 91%.The classification is done using SVM classifier. Index Terms— Support Vector Machine (SVM), Personality, Human Behavior. I. INTRODUCTION Human behavior [1] refers to the range of behaviors exhibited by humans and which are influenced by culture, attitudes, emotions, values, ethics, authority, rapport, hypnosis, persuasion, coercion and genetics. Human behavior is experienced throughout an individual’s entire lifetime. It includes the way they act based on different factors such as genetics, social norms, core faith, and attitude. Behavior is impacted by certain traits each individual has. The traits vary from person to person and can produce different actions or behavior from each person. Everyday conceptions of personality trait [2][3] make two key assumptions. First are stable over time. Most people accept that an individuals’ behavior naturally varies somewhat from occasion to occasion, but would maintain the core consistency which defines individual’s true nature like the unchangeable spots of the leopard. II. RELATED WORK A variety of systems have been designed and implemented. The previous and the most recent system consisted of single line and only slope features were considered based on line regression [4]. The network was trained using ANN [5] and SVM [6].The performances were compared using ANN and SVM. The results with SVM were found to be 97% and that of ANN was 85%. III. PROPOSED METHODOLOGY Trying to understand people’s inner motivations is notoriously uncertain science. Personality identification offers one of the few routes into this world. Handwriting is brain writing.Handwriting Analysis or Graphology [7] is a scientific method of identifying, evaluating and understanding personality through the strokes and patterns revealed by handwriting. Accuracy of handwriting depends on how skilled the analyst is. Perhaps Human intervention in handwriting analysis is effective but prone to fatigue and inaccurate. Hence a system is developed to automate this process. Pre processing Feature ExtractionPreprocessing Line Segmentation Marphological Operation Binarization using otsu’s method SVM Classify Feature Extraction Templates 1. Image Dilation 2.Measure the properties of image 1. Image Dilation 2. Edge Histogram based Features 1. Resize 2. Gray Conversion Knowledge Base Query Image Decision 1. Resize 2. Gray Conversion 1. Image Dilation 2. Edge Histogram based Features Training Testing Fig 1: Block diagram of proposed system RESEARCH ARTICLE OPEN ACCESS
  • 2. R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00 www.ijera.com 90|P a g e 3.1 Image Handwriting Acquisition and Database Creation Data samples of 500 in number were collected from people belonging to different works of life both equally from males & females. In order to make the results time and mood invariant the samples were collected in different days at different points of time. A4 paper with black ball point pen with a hard surface was used for writing .Three paragraphs were given to write. The images were scanned using laser jet scanner with a resolution of 2528x3507 pixels and 300dpi. 3.2 Noise Removal & Image Handwriting Pre processing A global threshold of the image is found using Otsu’s method [8].The image is then converted into binary image as shown in figure 2. Morphological based operation, image dilation is performed to bridge the gap between the characters in the cursive handwriting as shown in figure 3. Figure 2: Gray image converted into binary image Figure3: Image Dilated 3.3 Feature Detection and Psychological Representation Three features were extracted relevant for recognition, slope feature, shape feature and direction of histogram. 3.3.1 Slope Feature Slope feature was used to find the slope of the line 3.3.2 Shape Feature The shape feature was extracted using area, perimeter, form factor, major axis, minor axis, roundness compactness, density 3.3.3 Edge Orientation Histogram The basic idea is to build a histogram [9] with the directions of the gradients of the edges (borders or contours). It is possible to detect edges in an image but it in this we are interested in the detection of the angles. This is possible through Sobel operators [10]. IV. CLASSIFICATION 4.1 SVM’s Overview [11] SVM classification is based on the idea of decision hyper planes that determine decision boundaries in input space or high dimensional feature space. SVM constructs linear functions (hyper planes either in input space or in feature space) from a set of labelled training dataset. This hyper plane will try to split the positive samples from the negative samples. The linear separator is commonly constructed with maximum distance from the hyper plane to the closest negative and positive samples. Intuitively, this causes correct classification for training data which is near, but not equal to the testing data. Throughout training phase SVM takes a data matrix as input data and labels each one of samples as either belonging to a given class (positive) or not (negative).SVM treats each sample in the matrix as a row in a input space or high dimensional feature space, where the number of attributes identifies the dimensionality of the space. SVM learning algorithm determines the best hyper plane which separates each positive and negative training sample. The trained SVM can be deployed to perform predictions about a test samples (new) in the class. Nonlinear problems in SVM are solved by mapping the n- dimensional input space into a high dimensional feature space. Finally in this high dimensional feature space a linear classifier is constructed which acts as nonlinear classifier in input space.
  • 3. Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94 www.ijera.com 91|P a g e 4.2 Radial Basis Function [12](RBF) and Support Vector Machines (SVM) networks  The belief is that a classification problem cast into a higher dimensional space becomes more likely separable than in a lower dimensional space.  RBF network can be used find a set weights for a curve fitting problem. The weights are in higher dimensional space than the original data.  Learning is equivalent to finding a surface in high dimensional space that provides the best fit to training data.  Hidden layers provide a set of functions that constitute an arbitrary basis for input patterns when they are expanded to the hidden space; these functions are called radial basis functions.  Input layer + only one hidden layer responsible for spanning hidden space to which input vectors are mapped + a linear output layer.  The functions are nonlinear. → In a pattern recognition task this often guarantees better separation.  The functions map the samples from the input space to hidden space, in which the same samples are hopefully separable. 4.3 Radial Basis Function (RBF) 4.3.1 Gaussian functions φ(r) = exp ( − r 2 /2σ 2 ) for some σ > 0 and r ∈ R (Eqn. 1) Gaussian functions are probably the most used. In general, the selection depends on the application.  Support vectors are a set of training samples extracted by the algorithm used to find the optimal plane.  The distance between the separating hyper plane and the closest data point is called the margin of separation (denoted ρ in the book).  The goal of a support vector machine is to find the particular hyper plane that maximizes the margin of separation.  Furthermore, the goal is to determine such a separating hyper plane which is optimal  Optimality is defined here as di · (wT xi + b) ≥ 1 for i = 1, . . . N training samples, where di = +1 or di = −1.  Also the weight vector w should minimize the cost function: Θ(w) = 1 /2wT w  Obtaining the optimal solution  The two optimality constraints can be expressed in a form of single cost function. (Eqn. 1) Where αi are so called Lagrange multiplies.  The optimal solution is found at the saddle point of J(·) (J is minimized with respect to w and b and maximized with respect to α)  The saddle point is found by differentiating J first with respect to w and then b and setting the differentials equal to zero.  Input data is transformed from input space with dimension m0 to a higher dimension feature space with dimension m1.  The separating hyper plane i.e. the weights wj is estimated in the feature space.  The inner-product kernel can be used to construct the optimal hyper plane in the feature space without having to consider the feature space itself in explicit form.  Inner product kernel loosely speaking: It is a function replacing activation function of a single neuron network.  The inner product kernel is a function that is used to find the optimal hyper plane for a support vector machine network.  Inner product kernel is a function: K(x, xi) = φ T (x)φ(xi), (Eqn. 3) Where φ is a set of transformation function φj(·), j = 1, . . . m1. m1 is the dimensionality of the higher order space (original dimension m0). xi is ith training sample i.e. it is a known sample unlike x.  Depending on how the kernel is defined different learning machines can be built using SVM. Such machines are polynomial learning machines, RBF networks, and two-layer perceptrons. Figure 4: Architecture of Support Vector Machine  x = [x 1, x 2 . . . m0] ^T is input sample.  K (·, ·) are inner product kernels. I x 1, x 2 . . . x m1 are examples of input data. I after applying inner product kernels to input sample x, the data sample is mapped from input space to feature space.  An optimal hyper plane is searched for in the feature space.  Note the indexing: input vector element is denoted by x 1 whereas x 1 denotes training sample 1.
  • 4. R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00 www.ijera.com 92|P a g e V. CO-RELATION BETWEEN FEATURE DETECTION AND PERSONALITY 5.1 Up-Hill Line(Cheerfulness) Writing "uphill" reveals the applicant worthy of further trait-match evaluation. He's optimistic, ambitious and cheerful.Healthy mental energy & can stay busy active & constantly on the go. 5.2 Down –Hill Line (Weariness) Writing ''downhill" may be caused by a temporary depression, ill health, or physical fatigue. If this applicant has special skills necessary in your business, it would be wise to have him return on another day and obtain another sample of his writing. The first down slant sample could be just a temporary discouragement from job-hunting. If the second sample has the same down slanted appearance, it is a warning of an ingrained pessimism which keeps this applicant on the job- seeking circuit. Negative, disillusionment, constant disappointment. 5.3 Constant Line(Reveals over control to compensate for an inner fear ) The writer of a firm, straight, even baseline controls his moods, allowing him to go directly toward his goals without getting side-tracked. Reveals over control to compensate for an inner fear Healthy mental energy & can stay busy active & constantly on the go. VI. RESULTS AND DISCUSSIONS 6.1 Analysis of Single Line in Handwritten Text Line segmentation was done using morphological operations. Figure shows a binary image classified as Ideal. This indicates lines with constant slope. Figure shows the line classified as weariness. This indicates temporary depression and disillusionment and pessimism. The last classification is cheerfulness as shown in the figure. This indicates people with healthy mental energy and optimism. Figure. 5: Single line classified as ideal Fig 6: Line classified as weariness Figure 9: Line classified as cheerfulness 6.2 Analysis of Multiple Lines in Handwritten Text The experimentation is carried for multiple lines. The SVM RBF kernel used has given outstanding results. Fig. 8: Multiple lines considered for classification Figure 9: Multiple lines classified as weariness
  • 5. Syeda Asra. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 4) April 2016, pp.89-94 www.ijera.com 93|P a g e 7 Handwriting Analysis of Celebrities and Comparison with Graphologists 7.1 Hand Writing Analysis of Mr. Mittal (CEO of Arcelor Mittal) The figure shows the handwritten text of famous personality Mr.Mittal. The network classified his handwriting as Ideal. The graphologists say he is controlled. Head rules his heart. Figure10: Handwriting Sample of Mr. Laxmi Mittal Fig11: Image denoised and dilated Figure 12:Mr.Mittals writing classified as ideal VII. CONCLUSION The current work is carried considered single lines and multiple lines for better assessing the personality trait. The training was done based on SVM. The network was trained for unknown samples of celebrities. The results were 94.4%. Samples were collected from different people at different point of time to make the network robust and results invariant. IX. FUTURE WORKS This work can be extended for considering other handwriting features such as margins, spaces between characters and so on to better judge the personality. ACKNOWLEDGEMENTS I would like to thank the Almighty above all then my parents my husband my kids and my guide for giving me encouragement in all kind of endeavours directly or indirectly. I further extend my thanks to the famous psychologist Gordon Allport. REFERENCES [1]. Jorge Azorín-López, Marcelo Saval-Calvo, Andrés Fuster-Guilló, José García- Rodríguez,: Human Behaviour Recognition Based On Trajectory Analysis Using Neural Networks, 2014 , In Proc IEEE Intl. Conf 2015. [2]. Imran Ali Mirza,Shainila Mulla, Rishit Parekh, Satej Sawant, Krishna Mohan Singh : Generating Personalized Job Role Recommendations For The IT Sector Through Predictive Analytics And Personality Traits, 2015, In Proc. IEEE Int. Conf. On Technologies For Sustainable Development. [3]. Charlesh.Trafford And Rand H.Nelson, Peterson : Directed Handwriting Handwriting A Complete Guide To Instruction Teaching Physical Patterns For Reading And Writing Fluency ISBN 1- 890666-3 5-1, 2003. [4]. Syeda Asra, Dr.Shubhangi D.C :Personality Trait Identification Using Unconstrained Cursive And Mood Invariant Handwritten Text ,2015, In Intl Journal Education And Management Engineering, Volume 5 Ppl 20-31 [5]. Amit Kr. Yadav, Abdul Azeem, Akhilesh Singh, Hasmat Malik : Application Research Based On Artificial Neural Network(ANN) To Predict No Load Loss For Transformer’s Design, 2011,IEEE Intl Conf On Communication Systems And Network Technologies 2013. [6]. Fereshteh Falah Chamasemani , Yashwant Prasad Singh : Multi-Class Support Vector Machine (SVM) Classifiers – An Application In Hypothyroid Detection And Classification , 2011. In IEEE Intl Conf On Bio-Inspired Computing: Theories And Applications, 2011. [7]. José L. Vásquez, Carlos M. Travieso And Jesús B. Alonso: Using Calligraphies
  • 6. R.p Pathak.et al. Int. Journal of Engineering Research and Applications www.ijera.com ISSN: 2248-9622, Vol. 6, Issue 4, (Part - 1) April 2016, pp.00-00 www.ijera.com 94|P a g e Features For Off Line Writer Identification, IEEE Intl Conf. 2013. [8]. Jun Zhang : Image Segmentation Based On 2D Otsu Method With Histogram Analysis ,IEEE Intl Conf. On Computer Science And Software Engineering 2008. [9]. Wangsheng Yu, Xiaohua Tian ; Zhiqiang Hou ; Anqi Huang : Region Edge Histogram: A New Feature For Region- Based Tracking In Procd Signal Processing (ICSP), 2014 12th International Conference On Oct 2014. [10]. Chapel GN,Daruwala RD,Gofane MS: Comparisions Of Robert, Prewitt, Sobel Operator Based Edge Detection Methods For Real Time Uses On FPGA.In Proc Intl Conf On ICTSD,Feb 2015. [11]. Fereshteh Falah Chamasemani , Yashwant Prasad Singh Multi-Class Support Vector Machine (SVM) Classifiers – An Application In Hypothyroid Detection And Classification , 2011. In IEEE Intl Conf On Bio-Inspired Computing: Theories And Applications, 2011. [12]. Fereshteh Falah Chamasemani, Yashwant Prasad Singh: Multi-Class Support Vector Machine (SVM) Classifiers – An Application In Hypothyroid Detection And Classification. In Intl Conf IEEE On BIC ,Oct 2011.