Unveiling Gender Through Handwriting Vidya
Unveiling Gender Through Handwriting Vidya
Unveiling Gender Through Handwriting Vidya
"Gender Prediction from Handwriting using The final product will be a gender prediction model that can
Machine Learning" by J. M. Nogueira, B. Nejima, and H. M. be used to automate the process of gender identification from
Rocha. (2018).This paper explores the use of machine handwritten text images.
learning for gender prediction from handwritten text images.
It discusses feature extraction techniques and the application
of ML algorithms for classification.
"Gender Classification of Handwriting Images Using
Convolutional Neural Networks" by S. S. Saeed, M. A.
Osman, and S. U. Hussain. (2019).This research focuses on
using Convolutional Neural Networks (CNNs) to classify
gender based on handwritten text images. It demonstrates the
effectiveness of deep learning in this context.
"Gender Identification by Text and Handwriting
Analysis" by M. Andrecut and M. Dumitrescu. (2016).This
paper investigates both text and handwriting analysis for
gender identification. It explores the use of machine learning
algorithms to achieve accurate predictions.
"Machine Learning-based Gender Prediction from
Handwritten Text" by A. Sharma, S. Purohit, and A. Fig 3.1 Flowchart
Suryavanshi. (2019).This study delves into the application of
machine learning for gender prediction from handwritten
text. It provides insights into feature extraction and model Firstly-processing steps are implemented on the
selection. data before selecting the models. The steps involve:
"Gender Prediction Using Handwriting Features
and Machine Learning" by K. Sharma and R. 3.1.Grayscale Conversion:
B. Chopade. (2018).This research paper discusses the
utilization of machine learning and feature extraction from Grayscale conversion is the method of transforming
handwritten text for gender prediction. an image from its original color format to either black and
"Gender Classification of Offline Handwritten Text white or various shades of gray. In a grayscale image, each
Documents" by S. Roy, S. Pal, and UGarain. (2009).This individual pixel is assigned a single value that reflects its
paper explores gender classification using offline handwritten brightness level. This brightness value typically spans a
text documents. It investigates the use of structural features spectrum from 0 (representing black) to 255 (representing
and ML algorithms for prediction. white), with intermediary values signifying different shades
of gray.
Grayscale conversion plays a crucial role in a most influential features, eventually leading to subsets that
diverse array of image processing applications, with one of exclusively contain data belonging to a single class[6].
its notable uses being in image compression techniques.
Moreover, it is a frequently employed technique in 4.2 Logistic Regression is a linear algorithm employed to
the field of printing, as grayscale images can be produced model the relationship between a binary outcome variable
more efficiently than their color counterparts. and one or more predictor variables. It estimates the
Grayscale conversion can help to reduce the amount probability of the outcome variable based on the values of the
of information contained in an image, making it easier to predictor variables[7].
process and analyze. Applying grayscale conversion to the
handwritten text image can serve as input for the machine 4.3 Linear Discriminant Analysis (LDA) is a linear
learning model. This approach can enhance the accuracy and algorithm that is used to model the difference between two or
dependability of the model by simplifying the data and more classes based on their features. It estimates the
eliminating any potential biases associated with color differences between the means and variances of the features
information[4]. for each class, and uses this information to classify new data.
3.2.Image Resizing:
K-Nearest Neighbors (KNN) is a non-parametric algorithm
used for data classification based on its closest neighbors in
Image resizing is the procedure of altering the size feature space. It assigns a new data point to the class that is
or dimensions of an image.This can be done for a variety of most frequently represented among its K nearest neighbors.
reasons, such as to make the image fit better within a layout,
reduce the image file size, or increase the image resolution. SVM, or Support Vector Machine, is a supervised learning
The handwritten text images may be of varying sizes. By algorithm suitable for both binary and multi-class
resizing the images to a standardized dimension, we can classification tasks. It aims to determine the optimal
enhance the accuracy of the machine learning model. This boundary or hyperplane that effectively separates different
process reduces data complexity and ensures uniformity in classes within the dataset. This boundary is established by
the size of all images, contributing to improved performance. maximizing the margin between the closest instances of
distinct classes, known as support vectors[8].