SlideShare a Scribd company logo
International Refereed Journal of Engineering and Science (IRJES)
ISSN (Online) 2319-183X, (Print) 2319-1821
Volume 4, Issue 4 (April 2015), PP.01-05
www.irjes.com 1 | Page
Inheritance of Handwriting Features
Monika Saini1
, Aishwarya Srinivasan2
and Anup Kumar Kapoor3
1
UGC-JRF and 3
Professor, Department of Anthropology, University of Delhi, Delhi-110007,
2
Engineer, Vellore Institute of Technology, Chennai-600048
Abstract:- Handwriting is one of the acquired characteristics of humans.It is a mixture of nature and nurture.
Parents play an important part in teaching pre-writing skills to their children. Genetics also has a role in shaping
the writing habits of the writer (such as handedness and handwriting positions). This paper examines the
handwritings of parents and their biological off-springs to determine the inheritance of handwriting features
from one generation to the next generation. In this scheme,resemblances in the handwriting features of parents-
off springs were studied using computational features based on MATLAB 8.3 software.
Keywords:- Genetics, Inheritance, Resemblance, Handwriting Features.
I. INTRODUCTION
Handwriting is a neuromuscular task which depends on the cognitive skill and a coordinated hand-eye
movement of the writer.The development and progress of one’s handwriting passes through four stages in the
course of a lifetime. (1) the formative stage, (2) the impressionable or adolescent stage, (3) the mature stage, (4)
the stage of degeneration.It is the learning stage for all persons, where letter designs are being developed and
writing skills are being mastered. In the latter stages, changes are likely to occur in the fluency or design; the
former usually being the result of writing frequency and, the latter usually being the product of a particular
occupation.
Parents are the children’s learning models. A preschooler is influenced by the handwriting of his or her
parents.He learns to write letters by imitating or copying the letters formed by the parents. For example, a son
may like the shape of a letter written by his father so he practices making that letter until he thinks it is like his
father’s. When he is satisfied with the way he writes it, how it looks (because it is like his father), he will begin
to write it without paying attention to its details. By repeated attempts to copy this basic pattern the child
incorporates the peculiarities of writing of his parents into his writing habits. The better his memory of forms
and the more time he spends practicing letter forms written by his parents, the more habitual his movement
becomes and the closer the new writing form will be to the parental writing model.
This tendency also occurs during adolescence, when the writer is developing and experimenting with
his/her writing.As a writer matures he incorporates more individuality in his writing but he is still influenced by
the previous writing system features and his writing may very well become a combination of the two. How
much of a combination depends upon the writing habits he develops (Morris, 2000).
Writing habits of the off-springs are also shaped by genetic factors. These writing habits may include
handedness, writing posture, pen position, learning and thinking ability. A few studies have also been done on
familial resemblance with respect to hand preference, handwriting posture and specific cognitive abilities.
(McKeever, 1979 & 2000; DeFries et al, 1979)
II. RELATED WORK
The earliest published comment respecting the possibility of writing similarities due to familial
relationship is one in the December 2, 1911 issue of Scientific American that reports an article by R.H.
Chandler. The article illustrates three cases in which some general similarity is noted between brothers, sisters
or fathers and sons, but the similarity was not so great. Stevens () conducted a comparison of the writings from
three control groups in with the writings of eight members (seven females) of one family, all of whom were
dextral writers, taught in the same schools by the same teachers and with the palmer writing system. The control
groups were matched as closely as possible in age and sex, but were unrelated to each other. Nine elements were
said to have been considered including stroke endings, continuity, slant, letter forms, proportions, size, speed,
skills and pictorial appearance. The results indicated that there was greater similarity and less variation between
the members of the family than there was in the control groups. Munch (1987) reported on the similarity found
in one case in the writings of a mother and daughter. The questioned material was limited to three sets of
initials. While there were disparities between the questioned and known writings they were not so consistent or
so fundamental that they could not have been attributed to natural variations.
The present study concerns with similarities in the handwritings of parents and their off-springs using
computational method. The writers also wished to determine, first whether like sex siblings show a greater
Inheritance of Handwriting Features
www.irjes.com 2 | Page
degree of resemblance than unlike sex; and second whether older off-springs show a greater degree of
resemblance than younger off-spring.
In the next section we describe about three processing stages: Pre-Processing, Feature Extraction and
Post-Processing. Section III is concerned with experimental tests and results. Finally some conclusions are
drawn in section 4.
III. METHODOLOGY
Similar to any pattern recognition system, the handwritten recognition system in MATLAB
contains the following basic components: Pre-Processing, Feature Extraction and Post-Processing.
The basic structure for the proposed study is as follows:
Figure 1: Basic Structure of the Proposed System
Inheritance of Handwriting Features
www.irjes.com 3 | Page
1. Pre-Processing
This section elaborates the details of the pre-processing shown in Figure 1:
Loading scanned image:
Scanned Handwritten image is imported into the Graphical User Interface by clicking on the image
menu and selecting open. Both JPG and TIF file formats are supported.
Noise Removal (Median Filtering)
Median filtering is a nonlinear method used to remove noise from images. It is widely used as it is very
effective at removing noise while preserving edges.The median filter works by moving through the image pixel
by pixel, replacing each value with the median value of neighboring pixels. The pattern of neighbours is called
the "window", which slides, pixel by pixel over the entire image pixel, over the entire image. The median is
calculated by first sorting all the pixel values from the window into numerical order, and then replacing the pixel
being considered with the middle (median) pixel value.
Binarization
Binarization or thresholding is such a widely-used method and generally, its process is to first
determine a gray threshold according to some objective criteria and then assigns each pixel to one class (such as
the foreground) if its gray level or gray value is greater than the determined threshold and otherwise to the other
class (such as the background) (Chen & li, 2006).
If the input image is not a grayscale image, MATLAB converts the input image to grayscale, and then converts
this grayscale image to binary image by thresholding.
Scanned Image
Binary Image
Inheritance of Handwriting Features
www.irjes.com 4 | Page
Contour Detection, Contour Enhancement and Object Filling
Contour detection or Edge detection is an image processing technique for finding the boundaries of
objects within images. It works by detecting discontinuities in brightness. It is used for imagesegmentation and
data extraction in areas such as image processing, computer vision, and machine vision.
Contour Enhancement or Image Dilation adds pixels to the boundaries of objects in an image. The value of the
output pixel is the maximum value of all the pixels in the input pixel’s neighborhood.In a binary image, if any of
the pixels is set to the value 1, the output pixel is set to 1.
Object filling or Image filling is the process of filling holes in a binary image. A hole is a set of background
pixels that cannot be reached by filling in the background from the edge of the image.
Segmentation
Segmentation refers to the process in which an image is subdivided into constituent regions or objects.
These objects can be further processed or analyzed for the extraction of quantitative information.
Labeling the Segmented Character
After segmentation process, each segmented character will appear in the box below the binarization and
segmentation command box. With the help of class label command, a user can label the character.
Saving the Labels
Segmented character and labels can be saved by clicking on the data menu and then selecting save.
2. Feature Extraction
Each character image samples can be expressed as set of quantifiable attributes called features. Feature
Extraction is defined as the problem of “extracting from the raw data the information which is most relevant for
classification purposes, in the sense of minimizing the within-class pattern variability while enhancing the
between-class pattern variability (Devijver & Kittler, 1982). Features can be classified into two main categories,
structural features (like strokes end points, intersections of line segments etc.) and statistical features (derived
from statistical distribution of points like zoning, moments) (Heutte et al, 1998). Instatistical approach, a
character image is represented using a set of n features which can be considered as a point in n-dimensional
feature space.
Shape is an important visual feature and it is one of the basic features usedto describe image
content.Shape representation and description techniques can be generally classi1edinto two class of methods:
contour-based methods and region-based methods.The classification is based on whether shape features are
extracted from the contour only or are extracted from the whole shape region. In the region based method,
moment descriptors are very useful tools to describe shapes.Moments can provide characteristics of an object
that uniquely represent its shape. Important information about a shape such as its size, center location and
orientation are all moment-based attributes. The 2-D moments of the character are:
mpq= ∑ ∑ xp
yq
f(x,y) p,q=0,1,2L
Moment’s theory can be used to analyze the contour and region of an object. In the present study,
statistical and region based features are taken into consideration. The region based descriptors include moment
invariants, Zernike moments, Radial Chebyshev moments, etc.
Regional feature vectors like Centroid, Eccentricity, Orientation, Skewness, Kurtosis, Mean and Standard
deviations are also calculated.
Centroid- It is the measure of the center of the mass of the region.
Eccentricity- It is the scalar that specifies that eccentricity of the ellipse that has the same second moments as
the region.
Orientation- It is the scalar value which is the measure of angle in degrees between the x-axis and the major axis
of the ellipse that has the same second moments.
Skewness- It is a measure of the degree of asymmetry of the distribution of a variable about its mean.
Kurtosis- It is the measure of the height and sharpness of the peak relative to the rest of the data.
Mean- It is defined as the average value of a region.
Standard deviation- It is the measure of the dispersion of a set of data from its mean.
IV. EXPERIMENTAL TEST AND RESULT
For the experimental purpose, a data set (Handwriting sample) of 130 families with an average of 3
members in each family (Two Parents and one/two offspring) was obtained. The samples were then scanned
x y
Inheritance of Handwriting Features
www.irjes.com 5 | Page
through high resolution scanner at 600 dpi and then it was used for further analysis. The similarities in
handwriting features for familial resemblance were expressed by percentage similarity.
Table 1: Average Percentage Similarity of Handwriting Features among Closed
Genotypic Family Members
Relationship Average Percentage Difference (%)
Eccentricity Orientation Skewness Kurtosis Cumulative
Father – son 99.08 94.94 98.48 99.00 97.87
Father – daughter 99.27 94.90 98.07 98.99 97.80
Mother – son 98.43 95.11 98.21 98.96 97.67
Mother – daughter 98.23 94.15 97.73 98.92 97.25
Siblings 98.16 93.87 97.01 98.79 96.95
It is seen from the result that the orientation feature of the handwriting has the least similarity among
different genotypic relationships the least inherited characteristics. On the other side, father-son relationship
shows maximum percentage of similarity whereas siblings reflects minimum percentage of resemblances in
handwriting features.
V. CONCLUSION
The experiment was conducted to find the influence of inheritance on handwriting characteristics. The
similarities in the behavior and anatomy of a person are dependent on the inherited characters which in another
way influence the handwriting. In the present study the father-son relationship has most of the similarities in
handwriting features which may be due to the same sex influence and male gene dominance. Similarities
obtained in handwriting features of parent-off spring and siblings validates that genes play an important role in
transmission of writing habits from one generation to next generation and within the same generation.
ACKNOWLEDGEMENTS
The authors are grateful to all the subjects for their cooperation in data collection. Ms. Monika Saini is
equally thankful to University Grant Commission for providing financial support in the form of Junior Research
fellowship. The authors also acknowledge Mathworks for developing Matlab software, which immensely
benefitted in completion of this research.
REFERENCES
[1]. Chen, S., & Li, D. (2006). Image binarization focusing on objects.Neurocomputing, 69(16), 2411-2415.
[2]. DeFries, J. C., Johnson, R. C., Kuse, A. R., McClearn, G. E., Polovina, J., Vandenberg, S. G., &
Wilson, J. R. (1979). Familial resemblance for specific cognitive abilities. Behavior Genetics, 9(1), 23-
43.
[3]. Devijver, P. A., & Kittler, J. (1982). Pattern recognition: A statistical approach(Vol. 761). London:
Prentice-Hall.
[4]. Hansen, J. (2002). A Matlab Project in Optical Character Recognition (OCR). DSP Lab, University of
Rhode Island, 6.
[5]. Heutte, L., Paquet, T., Moreau, J. V., Lecourtier, Y., & Olivier, C. (1998). A structural/statistical
feature based vector for handwritten character recognition.Pattern recognition letters, 19(7), 629-641.
[6]. Hu, M. K. (1962). Visual pattern recognition by moment invariants. Information Theory, IRE
Transactions on, 8(2), 179-187.
[7]. McKeever, W. F. (1979). Handwriting posture in left-handers: Sex, familial sinistrality and language
laterality correlates. Neuropsychologia, 17(5), 429-444.
[8]. McKeever, W. F. (2000). A new family handedness sample with findings consistent with X‐linked
transmission. British Journal of Psychology, 91(1), 21-39.
[9]. Morris, R., & Morris, R. N. (2000). Forensic handwriting identification: fundamental concepts and
principles. Academic press.

More Related Content

What's hot

Relational database
Relational databaseRelational database
Relational database
SanthiNivas
 
All_Data_DBMS_MODELS 130725130028-phpapp01
All_Data_DBMS_MODELS 130725130028-phpapp01All_Data_DBMS_MODELS 130725130028-phpapp01
All_Data_DBMS_MODELS 130725130028-phpapp01
RollyTripathi
 
=Acs07 tania experim= copy
=Acs07 tania experim= copy=Acs07 tania experim= copy
=Acs07 tania experim= copy
Laura Cruz Reyes
 
E R model
E R modelE R model
Week 3 Classification of Database Management Systems & Data Modeling
Week 3 Classification of Database Management Systems & Data ModelingWeek 3 Classification of Database Management Systems & Data Modeling
Week 3 Classification of Database Management Systems & Data Modeling
oudesign
 
Class Diagram
Class DiagramClass Diagram
Class Diagram
Rana_brothers
 
UML Training for Business Analysts
UML Training for Business AnalystsUML Training for Business Analysts
UML Training for Business Analysts
SwatiS-BA
 
Introduction to UML
Introduction to UMLIntroduction to UML
Introduction to UML
SwatiS-BA
 
Previous question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEBPrevious question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEB
Shabeeb Shabi
 
Doc format.
Doc format.Doc format.
Doc format.
butest
 
Seminar(Pattern Recognition)
Seminar(Pattern Recognition)Seminar(Pattern Recognition)
Seminar(Pattern Recognition)
anurodhsinha
 
Chapter 3 Entity Relationship Model
Chapter 3 Entity Relationship ModelChapter 3 Entity Relationship Model
Chapter 3 Entity Relationship Model
Eddyzulham Mahluzydde
 
06 class diagrams
06 class diagrams06 class diagrams
06 class diagrams
Baskarkncet
 
Networking site for instititue
Networking site for instititueNetworking site for instititue
Networking site for instititue
Jenish Bajracharya
 
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
ijdms
 
Object relationship model of software engineering,a subtopic of object orient...
Object relationship model of software engineering,a subtopic of object orient...Object relationship model of software engineering,a subtopic of object orient...
Object relationship model of software engineering,a subtopic of object orient...
julia121214
 
1 rdm concepts
1 rdm concepts1 rdm concepts
1 rdm concepts
Mr Patrick NIYISHAKA
 
Review of research on devnagari character recognition
Review of research on devnagari character recognitionReview of research on devnagari character recognition
Review of research on devnagari character recognition
Vikas Dongre
 
Object oriented database model
Object oriented database modelObject oriented database model
Object oriented database model
Janecatalla
 

What's hot (19)

Relational database
Relational databaseRelational database
Relational database
 
All_Data_DBMS_MODELS 130725130028-phpapp01
All_Data_DBMS_MODELS 130725130028-phpapp01All_Data_DBMS_MODELS 130725130028-phpapp01
All_Data_DBMS_MODELS 130725130028-phpapp01
 
=Acs07 tania experim= copy
=Acs07 tania experim= copy=Acs07 tania experim= copy
=Acs07 tania experim= copy
 
E R model
E R modelE R model
E R model
 
Week 3 Classification of Database Management Systems & Data Modeling
Week 3 Classification of Database Management Systems & Data ModelingWeek 3 Classification of Database Management Systems & Data Modeling
Week 3 Classification of Database Management Systems & Data Modeling
 
Class Diagram
Class DiagramClass Diagram
Class Diagram
 
UML Training for Business Analysts
UML Training for Business AnalystsUML Training for Business Analysts
UML Training for Business Analysts
 
Introduction to UML
Introduction to UMLIntroduction to UML
Introduction to UML
 
Previous question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEBPrevious question papers of Database Management System (DBMS) By SHABEEB
Previous question papers of Database Management System (DBMS) By SHABEEB
 
Doc format.
Doc format.Doc format.
Doc format.
 
Seminar(Pattern Recognition)
Seminar(Pattern Recognition)Seminar(Pattern Recognition)
Seminar(Pattern Recognition)
 
Chapter 3 Entity Relationship Model
Chapter 3 Entity Relationship ModelChapter 3 Entity Relationship Model
Chapter 3 Entity Relationship Model
 
06 class diagrams
06 class diagrams06 class diagrams
06 class diagrams
 
Networking site for instititue
Networking site for instititueNetworking site for instititue
Networking site for instititue
 
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
DESIGN METHODOLOGY FOR RELATIONAL DATABASES: ISSUES RELATED TO TERNARY RELATI...
 
Object relationship model of software engineering,a subtopic of object orient...
Object relationship model of software engineering,a subtopic of object orient...Object relationship model of software engineering,a subtopic of object orient...
Object relationship model of software engineering,a subtopic of object orient...
 
1 rdm concepts
1 rdm concepts1 rdm concepts
1 rdm concepts
 
Review of research on devnagari character recognition
Review of research on devnagari character recognitionReview of research on devnagari character recognition
Review of research on devnagari character recognition
 
Object oriented database model
Object oriented database modelObject oriented database model
Object oriented database model
 

Similar to Inheritance of Handwriting Features

Anatomical Survey Based Feature Vector for Text Pattern Detection
Anatomical Survey Based Feature Vector for Text Pattern DetectionAnatomical Survey Based Feature Vector for Text Pattern Detection
Anatomical Survey Based Feature Vector for Text Pattern Detection
IJEACS
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
ijcax
 
Sangeetha seminar (1)
Sangeetha  seminar (1)Sangeetha  seminar (1)
Sangeetha seminar (1)
Sangeetha Mathew
 
Entity Resolution in Large Graphs
Entity Resolution in Large GraphsEntity Resolution in Large Graphs
Entity Resolution in Large Graphs
Apurva Kumar
 
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
ijaia
 
Survey on Supervised Method for Face Image Retrieval Based on Euclidean Dist...
Survey on Supervised Method for Face Image Retrieval  Based on Euclidean Dist...Survey on Supervised Method for Face Image Retrieval  Based on Euclidean Dist...
Survey on Supervised Method for Face Image Retrieval Based on Euclidean Dist...
Editor IJCATR
 
Sub1547
Sub1547Sub1547
Interactive Analysis of Word Vector Embeddings
Interactive Analysis of Word Vector EmbeddingsInteractive Analysis of Word Vector Embeddings
Interactive Analysis of Word Vector Embeddings
gleicher
 
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGNPROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
ijpla
 
organic information design
organic information designorganic information design
organic information design
rosa qin
 
Issues in Sentiment analysis
Issues in Sentiment analysisIssues in Sentiment analysis
Issues in Sentiment analysis
IOSR Journals
 
Scene text recognition in mobile applications by character descriptor and str...
Scene text recognition in mobile applications by character descriptor and str...Scene text recognition in mobile applications by character descriptor and str...
Scene text recognition in mobile applications by character descriptor and str...
eSAT Journals
 
Learning from similarity and information extraction from structured documents...
Learning from similarity and information extraction from structured documents...Learning from similarity and information extraction from structured documents...
Learning from similarity and information extraction from structured documents...
Infrrd
 
Feature integration for image information retrieval using image mining techni...
Feature integration for image information retrieval using image mining techni...Feature integration for image information retrieval using image mining techni...
Feature integration for image information retrieval using image mining techni...
iaemedu
 

Similar to Inheritance of Handwriting Features (20)

Anatomical Survey Based Feature Vector for Text Pattern Detection
Anatomical Survey Based Feature Vector for Text Pattern DetectionAnatomical Survey Based Feature Vector for Text Pattern Detection
Anatomical Survey Based Feature Vector for Text Pattern Detection
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGESNEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
NEW ONTOLOGY RETRIEVAL IMAGE METHOD IN 5K COREL IMAGES
 
Sangeetha seminar (1)
Sangeetha  seminar (1)Sangeetha  seminar (1)
Sangeetha seminar (1)
 
Entity Resolution in Large Graphs
Entity Resolution in Large GraphsEntity Resolution in Large Graphs
Entity Resolution in Large Graphs
 
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
AUTOMATIC TRAINING DATA SYNTHESIS FOR HANDWRITING RECOGNITION USING THE STRUC...
 
Survey on Supervised Method for Face Image Retrieval Based on Euclidean Dist...
Survey on Supervised Method for Face Image Retrieval  Based on Euclidean Dist...Survey on Supervised Method for Face Image Retrieval  Based on Euclidean Dist...
Survey on Supervised Method for Face Image Retrieval Based on Euclidean Dist...
 
Sub1547
Sub1547Sub1547
Sub1547
 
Interactive Analysis of Word Vector Embeddings
Interactive Analysis of Word Vector EmbeddingsInteractive Analysis of Word Vector Embeddings
Interactive Analysis of Word Vector Embeddings
 
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGNPROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
PROPERTIES OF RELATIONSHIPS AMONG OBJECTS IN OBJECT-ORIENTED SOFTWARE DESIGN
 
organic information design
organic information designorganic information design
organic information design
 
Issues in Sentiment analysis
Issues in Sentiment analysisIssues in Sentiment analysis
Issues in Sentiment analysis
 
Scene text recognition in mobile applications by character descriptor and str...
Scene text recognition in mobile applications by character descriptor and str...Scene text recognition in mobile applications by character descriptor and str...
Scene text recognition in mobile applications by character descriptor and str...
 
Learning from similarity and information extraction from structured documents...
Learning from similarity and information extraction from structured documents...Learning from similarity and information extraction from structured documents...
Learning from similarity and information extraction from structured documents...
 
Feature integration for image information retrieval using image mining techni...
Feature integration for image information retrieval using image mining techni...Feature integration for image information retrieval using image mining techni...
Feature integration for image information retrieval using image mining techni...
 

More from irjes

Automatic Safety Door Lock System for Car
Automatic Safety Door Lock System for CarAutomatic Safety Door Lock System for Car
Automatic Safety Door Lock System for Car
irjes
 
Squared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & OptimizationSquared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & Optimization
irjes
 
Analysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling ModelAnalysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling Model
irjes
 
Effects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface RoughnessEffects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface Roughness
irjes
 
Possible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constantsPossible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constants
irjes
 
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
irjes
 
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
irjes
 
Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model
irjes
 
Energy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart CitiesEnergy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart Cities
irjes
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
irjes
 
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
irjes
 
An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...
irjes
 
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
irjes
 
Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...
irjes
 
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
irjes
 
The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...
irjes
 
Understanding the Concept of Strategic Intent
Understanding the Concept of Strategic IntentUnderstanding the Concept of Strategic Intent
Understanding the Concept of Strategic Intent
irjes
 
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
irjes
 
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of AgeRelation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
irjes
 
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block ArmorWave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
irjes
 

More from irjes (20)

Automatic Safety Door Lock System for Car
Automatic Safety Door Lock System for CarAutomatic Safety Door Lock System for Car
Automatic Safety Door Lock System for Car
 
Squared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & OptimizationSquared Multi-hole Extrusion Process: Experimentation & Optimization
Squared Multi-hole Extrusion Process: Experimentation & Optimization
 
Analysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling ModelAnalysis of Agile and Multi-Agent Based Process Scheduling Model
Analysis of Agile and Multi-Agent Based Process Scheduling Model
 
Effects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface RoughnessEffects of Cutting Tool Parameters on Surface Roughness
Effects of Cutting Tool Parameters on Surface Roughness
 
Possible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constantsPossible limits of accuracy in measurement of fundamental physical constants
Possible limits of accuracy in measurement of fundamental physical constants
 
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
Performance Comparison of Energy Detection Based Spectrum Sensing for Cogniti...
 
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
Comparative Study of Pre-Engineered and Conventional Steel Frames for Differe...
 
Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model Flip bifurcation and chaos control in discrete-time Prey-predator model
Flip bifurcation and chaos control in discrete-time Prey-predator model
 
Energy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart CitiesEnergy Awareness and the Role of “Critical Mass” In Smart Cities
Energy Awareness and the Role of “Critical Mass” In Smart Cities
 
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
A Firefly Algorithm for Optimizing Spur Gear Parameters Under Non-Lubricated ...
 
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
The Effect of Orientation of Vortex Generators on Aerodynamic Drag Reduction ...
 
An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...An Assessment of The Relationship Between The Availability of Financial Resou...
An Assessment of The Relationship Between The Availability of Financial Resou...
 
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
The Choice of Antenatal Care and Delivery Place in Surabaya (Based on Prefere...
 
Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...Prediction of the daily global solar irradiance received on a horizontal surf...
Prediction of the daily global solar irradiance received on a horizontal surf...
 
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
HARMONIC ANALYSIS ASSOCIATED WITH A GENERALIZED BESSEL-STRUVE OPERATOR ON THE...
 
The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...The Role of Community Participation in Planning Processes of Emerging Urban C...
The Role of Community Participation in Planning Processes of Emerging Urban C...
 
Understanding the Concept of Strategic Intent
Understanding the Concept of Strategic IntentUnderstanding the Concept of Strategic Intent
Understanding the Concept of Strategic Intent
 
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
The (R, Q) Control of A Mixture Inventory Model with Backorders and Lost Sale...
 
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of AgeRelation Between Stress And Menstrual Cycle At 18-21 Years Of Age
Relation Between Stress And Menstrual Cycle At 18-21 Years Of Age
 
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block ArmorWave Transmission on Submerged Breakwater with Interlocking D-Block Armor
Wave Transmission on Submerged Breakwater with Interlocking D-Block Armor
 

Recently uploaded

Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Paige Cruz
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
Adtran
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
Tomaz Bratanic
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
Kumud Singh
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
Neo4j
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
innovationoecd
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
Zilliz
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Speck&Tech
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
Daiki Mogmet Ito
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
Zilliz
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
Quotidiano Piemontese
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
IndexBug
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
Mariano Tinti
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
DianaGray10
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 

Recently uploaded (20)

Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdfObservability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
Observability Concepts EVERY Developer Should Know -- DeveloperWeek Europe.pdf
 
Pushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 daysPushing the limits of ePRTC: 100ns holdover for 100 days
Pushing the limits of ePRTC: 100ns holdover for 100 days
 
GraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracyGraphRAG for Life Science to increase LLM accuracy
GraphRAG for Life Science to increase LLM accuracy
 
Mind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AIMind map of terminologies used in context of Generative AI
Mind map of terminologies used in context of Generative AI
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
GraphSummit Singapore | Enhancing Changi Airport Group's Passenger Experience...
 
Presentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of GermanyPresentation of the OECD Artificial Intelligence Review of Germany
Presentation of the OECD Artificial Intelligence Review of Germany
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Full-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalizationFull-RAG: A modern architecture for hyper-personalization
Full-RAG: A modern architecture for hyper-personalization
 
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
Cosa hanno in comune un mattoncino Lego e la backdoor XZ?
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
How to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For FlutterHow to use Firebase Data Connect For Flutter
How to use Firebase Data Connect For Flutter
 
Infrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI modelsInfrastructure Challenges in Scaling RAG with Custom AI models
Infrastructure Challenges in Scaling RAG with Custom AI models
 
National Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practicesNational Security Agency - NSA mobile device best practices
National Security Agency - NSA mobile device best practices
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial IntelligenceAI 101: An Introduction to the Basics and Impact of Artificial Intelligence
AI 101: An Introduction to the Basics and Impact of Artificial Intelligence
 
Mariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceXMariano G Tinti - Decoding SpaceX
Mariano G Tinti - Decoding SpaceX
 
UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6UiPath Test Automation using UiPath Test Suite series, part 6
UiPath Test Automation using UiPath Test Suite series, part 6
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 

Inheritance of Handwriting Features

  • 1. International Refereed Journal of Engineering and Science (IRJES) ISSN (Online) 2319-183X, (Print) 2319-1821 Volume 4, Issue 4 (April 2015), PP.01-05 www.irjes.com 1 | Page Inheritance of Handwriting Features Monika Saini1 , Aishwarya Srinivasan2 and Anup Kumar Kapoor3 1 UGC-JRF and 3 Professor, Department of Anthropology, University of Delhi, Delhi-110007, 2 Engineer, Vellore Institute of Technology, Chennai-600048 Abstract:- Handwriting is one of the acquired characteristics of humans.It is a mixture of nature and nurture. Parents play an important part in teaching pre-writing skills to their children. Genetics also has a role in shaping the writing habits of the writer (such as handedness and handwriting positions). This paper examines the handwritings of parents and their biological off-springs to determine the inheritance of handwriting features from one generation to the next generation. In this scheme,resemblances in the handwriting features of parents- off springs were studied using computational features based on MATLAB 8.3 software. Keywords:- Genetics, Inheritance, Resemblance, Handwriting Features. I. INTRODUCTION Handwriting is a neuromuscular task which depends on the cognitive skill and a coordinated hand-eye movement of the writer.The development and progress of one’s handwriting passes through four stages in the course of a lifetime. (1) the formative stage, (2) the impressionable or adolescent stage, (3) the mature stage, (4) the stage of degeneration.It is the learning stage for all persons, where letter designs are being developed and writing skills are being mastered. In the latter stages, changes are likely to occur in the fluency or design; the former usually being the result of writing frequency and, the latter usually being the product of a particular occupation. Parents are the children’s learning models. A preschooler is influenced by the handwriting of his or her parents.He learns to write letters by imitating or copying the letters formed by the parents. For example, a son may like the shape of a letter written by his father so he practices making that letter until he thinks it is like his father’s. When he is satisfied with the way he writes it, how it looks (because it is like his father), he will begin to write it without paying attention to its details. By repeated attempts to copy this basic pattern the child incorporates the peculiarities of writing of his parents into his writing habits. The better his memory of forms and the more time he spends practicing letter forms written by his parents, the more habitual his movement becomes and the closer the new writing form will be to the parental writing model. This tendency also occurs during adolescence, when the writer is developing and experimenting with his/her writing.As a writer matures he incorporates more individuality in his writing but he is still influenced by the previous writing system features and his writing may very well become a combination of the two. How much of a combination depends upon the writing habits he develops (Morris, 2000). Writing habits of the off-springs are also shaped by genetic factors. These writing habits may include handedness, writing posture, pen position, learning and thinking ability. A few studies have also been done on familial resemblance with respect to hand preference, handwriting posture and specific cognitive abilities. (McKeever, 1979 & 2000; DeFries et al, 1979) II. RELATED WORK The earliest published comment respecting the possibility of writing similarities due to familial relationship is one in the December 2, 1911 issue of Scientific American that reports an article by R.H. Chandler. The article illustrates three cases in which some general similarity is noted between brothers, sisters or fathers and sons, but the similarity was not so great. Stevens () conducted a comparison of the writings from three control groups in with the writings of eight members (seven females) of one family, all of whom were dextral writers, taught in the same schools by the same teachers and with the palmer writing system. The control groups were matched as closely as possible in age and sex, but were unrelated to each other. Nine elements were said to have been considered including stroke endings, continuity, slant, letter forms, proportions, size, speed, skills and pictorial appearance. The results indicated that there was greater similarity and less variation between the members of the family than there was in the control groups. Munch (1987) reported on the similarity found in one case in the writings of a mother and daughter. The questioned material was limited to three sets of initials. While there were disparities between the questioned and known writings they were not so consistent or so fundamental that they could not have been attributed to natural variations. The present study concerns with similarities in the handwritings of parents and their off-springs using computational method. The writers also wished to determine, first whether like sex siblings show a greater
  • 2. Inheritance of Handwriting Features www.irjes.com 2 | Page degree of resemblance than unlike sex; and second whether older off-springs show a greater degree of resemblance than younger off-spring. In the next section we describe about three processing stages: Pre-Processing, Feature Extraction and Post-Processing. Section III is concerned with experimental tests and results. Finally some conclusions are drawn in section 4. III. METHODOLOGY Similar to any pattern recognition system, the handwritten recognition system in MATLAB contains the following basic components: Pre-Processing, Feature Extraction and Post-Processing. The basic structure for the proposed study is as follows: Figure 1: Basic Structure of the Proposed System
  • 3. Inheritance of Handwriting Features www.irjes.com 3 | Page 1. Pre-Processing This section elaborates the details of the pre-processing shown in Figure 1: Loading scanned image: Scanned Handwritten image is imported into the Graphical User Interface by clicking on the image menu and selecting open. Both JPG and TIF file formats are supported. Noise Removal (Median Filtering) Median filtering is a nonlinear method used to remove noise from images. It is widely used as it is very effective at removing noise while preserving edges.The median filter works by moving through the image pixel by pixel, replacing each value with the median value of neighboring pixels. The pattern of neighbours is called the "window", which slides, pixel by pixel over the entire image pixel, over the entire image. The median is calculated by first sorting all the pixel values from the window into numerical order, and then replacing the pixel being considered with the middle (median) pixel value. Binarization Binarization or thresholding is such a widely-used method and generally, its process is to first determine a gray threshold according to some objective criteria and then assigns each pixel to one class (such as the foreground) if its gray level or gray value is greater than the determined threshold and otherwise to the other class (such as the background) (Chen & li, 2006). If the input image is not a grayscale image, MATLAB converts the input image to grayscale, and then converts this grayscale image to binary image by thresholding. Scanned Image Binary Image
  • 4. Inheritance of Handwriting Features www.irjes.com 4 | Page Contour Detection, Contour Enhancement and Object Filling Contour detection or Edge detection is an image processing technique for finding the boundaries of objects within images. It works by detecting discontinuities in brightness. It is used for imagesegmentation and data extraction in areas such as image processing, computer vision, and machine vision. Contour Enhancement or Image Dilation adds pixels to the boundaries of objects in an image. The value of the output pixel is the maximum value of all the pixels in the input pixel’s neighborhood.In a binary image, if any of the pixels is set to the value 1, the output pixel is set to 1. Object filling or Image filling is the process of filling holes in a binary image. A hole is a set of background pixels that cannot be reached by filling in the background from the edge of the image. Segmentation Segmentation refers to the process in which an image is subdivided into constituent regions or objects. These objects can be further processed or analyzed for the extraction of quantitative information. Labeling the Segmented Character After segmentation process, each segmented character will appear in the box below the binarization and segmentation command box. With the help of class label command, a user can label the character. Saving the Labels Segmented character and labels can be saved by clicking on the data menu and then selecting save. 2. Feature Extraction Each character image samples can be expressed as set of quantifiable attributes called features. Feature Extraction is defined as the problem of “extracting from the raw data the information which is most relevant for classification purposes, in the sense of minimizing the within-class pattern variability while enhancing the between-class pattern variability (Devijver & Kittler, 1982). Features can be classified into two main categories, structural features (like strokes end points, intersections of line segments etc.) and statistical features (derived from statistical distribution of points like zoning, moments) (Heutte et al, 1998). Instatistical approach, a character image is represented using a set of n features which can be considered as a point in n-dimensional feature space. Shape is an important visual feature and it is one of the basic features usedto describe image content.Shape representation and description techniques can be generally classi1edinto two class of methods: contour-based methods and region-based methods.The classification is based on whether shape features are extracted from the contour only or are extracted from the whole shape region. In the region based method, moment descriptors are very useful tools to describe shapes.Moments can provide characteristics of an object that uniquely represent its shape. Important information about a shape such as its size, center location and orientation are all moment-based attributes. The 2-D moments of the character are: mpq= ∑ ∑ xp yq f(x,y) p,q=0,1,2L Moment’s theory can be used to analyze the contour and region of an object. In the present study, statistical and region based features are taken into consideration. The region based descriptors include moment invariants, Zernike moments, Radial Chebyshev moments, etc. Regional feature vectors like Centroid, Eccentricity, Orientation, Skewness, Kurtosis, Mean and Standard deviations are also calculated. Centroid- It is the measure of the center of the mass of the region. Eccentricity- It is the scalar that specifies that eccentricity of the ellipse that has the same second moments as the region. Orientation- It is the scalar value which is the measure of angle in degrees between the x-axis and the major axis of the ellipse that has the same second moments. Skewness- It is a measure of the degree of asymmetry of the distribution of a variable about its mean. Kurtosis- It is the measure of the height and sharpness of the peak relative to the rest of the data. Mean- It is defined as the average value of a region. Standard deviation- It is the measure of the dispersion of a set of data from its mean. IV. EXPERIMENTAL TEST AND RESULT For the experimental purpose, a data set (Handwriting sample) of 130 families with an average of 3 members in each family (Two Parents and one/two offspring) was obtained. The samples were then scanned x y
  • 5. Inheritance of Handwriting Features www.irjes.com 5 | Page through high resolution scanner at 600 dpi and then it was used for further analysis. The similarities in handwriting features for familial resemblance were expressed by percentage similarity. Table 1: Average Percentage Similarity of Handwriting Features among Closed Genotypic Family Members Relationship Average Percentage Difference (%) Eccentricity Orientation Skewness Kurtosis Cumulative Father – son 99.08 94.94 98.48 99.00 97.87 Father – daughter 99.27 94.90 98.07 98.99 97.80 Mother – son 98.43 95.11 98.21 98.96 97.67 Mother – daughter 98.23 94.15 97.73 98.92 97.25 Siblings 98.16 93.87 97.01 98.79 96.95 It is seen from the result that the orientation feature of the handwriting has the least similarity among different genotypic relationships the least inherited characteristics. On the other side, father-son relationship shows maximum percentage of similarity whereas siblings reflects minimum percentage of resemblances in handwriting features. V. CONCLUSION The experiment was conducted to find the influence of inheritance on handwriting characteristics. The similarities in the behavior and anatomy of a person are dependent on the inherited characters which in another way influence the handwriting. In the present study the father-son relationship has most of the similarities in handwriting features which may be due to the same sex influence and male gene dominance. Similarities obtained in handwriting features of parent-off spring and siblings validates that genes play an important role in transmission of writing habits from one generation to next generation and within the same generation. ACKNOWLEDGEMENTS The authors are grateful to all the subjects for their cooperation in data collection. Ms. Monika Saini is equally thankful to University Grant Commission for providing financial support in the form of Junior Research fellowship. The authors also acknowledge Mathworks for developing Matlab software, which immensely benefitted in completion of this research. REFERENCES [1]. Chen, S., & Li, D. (2006). Image binarization focusing on objects.Neurocomputing, 69(16), 2411-2415. [2]. DeFries, J. C., Johnson, R. C., Kuse, A. R., McClearn, G. E., Polovina, J., Vandenberg, S. G., & Wilson, J. R. (1979). Familial resemblance for specific cognitive abilities. Behavior Genetics, 9(1), 23- 43. [3]. Devijver, P. A., & Kittler, J. (1982). Pattern recognition: A statistical approach(Vol. 761). London: Prentice-Hall. [4]. Hansen, J. (2002). A Matlab Project in Optical Character Recognition (OCR). DSP Lab, University of Rhode Island, 6. [5]. Heutte, L., Paquet, T., Moreau, J. V., Lecourtier, Y., & Olivier, C. (1998). A structural/statistical feature based vector for handwritten character recognition.Pattern recognition letters, 19(7), 629-641. [6]. Hu, M. K. (1962). Visual pattern recognition by moment invariants. Information Theory, IRE Transactions on, 8(2), 179-187. [7]. McKeever, W. F. (1979). Handwriting posture in left-handers: Sex, familial sinistrality and language laterality correlates. Neuropsychologia, 17(5), 429-444. [8]. McKeever, W. F. (2000). A new family handedness sample with findings consistent with X‐linked transmission. British Journal of Psychology, 91(1), 21-39. [9]. Morris, R., & Morris, R. N. (2000). Forensic handwriting identification: fundamental concepts and principles. Academic press.