SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3600
Sign Detection from Hearing Impaired
Manu E S L1, Hariprasad E2, Mohammed Fahd N3, Premalatha K4
123Department of Electrical and Engineering, Kumaraguru College of Technology[autonomous],
Coimbatore, India
4Associate Professor, Department of Electrical and Engineering, Kumaraguru College of Technology[autonomous],
Coimbatore, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Sign language is the mode of communication
among the speech and hearing-impaired community. It is
hard for common people who are not familiar with sign
language to communicate without an interpreter. This
paper focuses on transcribing the gestures from sign
language to a spoken language which is easily understood
by the listening. Alphabets and words from static images are
among the motions that have been translated This becomes
more important for the people who completely rely on
gestural sign language for communication when they try to
communicate with a person who does not understand the
sign language. Most of the systems that are currently
developed can recognize the gestures based on the skin
color. This paper focuses on creating a filter that can detect
the gestural features of the hand irrespective of the color.
The detection is possible with the advent of computer vision
and AI technologies like ML and DL. The systems currently
employed use Vector machine Algorithms (ML) which has
less accurate results. This paper focuses on using CNN (DL)
for training of the AI model.
Key Words: Vector machine, Convolutional Neural
Network (CNN), Deep learning, Computer Vision,
Machine learning (ML)
1.INTRODUCTION
People with hearing loss either by birth or any injury may
not be able to talk. They converse with others via sign
language. Usually sign language is not suitable to
communicate with others. Only people in their close circle
may be able to understand it. This paper focuses on
providing an aid that helps hearing impaired people to
communicate with the general public at ease.
[1] Using computer Vision, gestures can be detected at
93.17% accuracy. Gestures can also be Translated using
capacitive touch sensor with 92% accuracy, also with
some disadvantages. [2] Multiclass SVM could also be used
to detect as fast as 0.017s as it is used for classification of
multiple gestures trained. [3] As common people cannot
always use an interpreter everywhere; we believe this will
be an easier means of communication. The gestures are
captured and converted into text messages. [4] The
hardware could be a wrist band that takes video of the
hands while gesturing. Analyzing the angles of fingers in
each gesture, edge detection and threshold to the image
should be done for appropriate results. [5] With the help
of the camera, the signs are recognized and classified
according to each class. The hand color differs from person
to person, the images with dark background are involved.
[6] Using CNN instead of SVM could predict the results
with 6-7% increased accuracy. The recognition is done by
CNN model and assisted by a microprocessor to point to
the specific user message or action.
2. PROPOSED WORK
In this paper, we proposed a model that is built using
Convolutional Neural Networks, that detects the sign given
by the hearing-impaired people using OpenCv - a
computer vision technology that helps in image processing
and enables real-time recognition. We begin by preparing
the dataset by taking pictures of the hand gestures and
preprocessing them.
Having 26 classes of signs, 250 images per class were
taken that sum up to a total of 6500 images in the dataset.
Much more images were generated by data augmentation
like rotation, flipping. Shear range, Cropping etc. The CNN
model was built using Keras-a deep-learning API that
works over Tensorflow specially built for AI practices. Fig-
1 displays a high-level block diagram of the overall
process. For the mathematical process in training, Numpy
is used. The trained model is saved as a pickle file and
tested against the test dataset, finally accuracy is obtained.
The saved model is deployed on a microprocessor that
does the real-Time analysis of images. The AI detects a
specific class of the sign and sends digital input to a
microcontroller like an arduino and a text-to-speech
converter like E-speak that gives speech output specific to
the class detected on a speaker. The arduino then makes
the processes like calling a trusted person in case of
emergency or sending location via SMS using GSM and
GPS. Also, the detected sign has a set of words or
sentences that are shown on a display on the gadget.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3601
Fig -1: Block Diagram
3. IMPLEMENTATION AND RESULT ANALYSIS
3.1 COLLECTION OF IMAGE DATASET
The proposed system uses different images of faces with
different angles and different poses. The images are taken
by a specially developed code that captures images from
the real time video. They are handled carefully and made
into 26 classes. The taken images are then separated for
test and training dataset. Training set contains 75% of the
images taken and the 25% else goes to the test set. The
images are categorized into 26 directories and labeled
with alphabets for building purposes.
Fig -2: Dataset
3.2 PREPROCESSING OF IMAGES
Pre-processing is the common operations made with
images at the lowest level of abstraction. The aim of pre-
processing is to improve the image data that suppresses
unwanted distortions or to enhance some image features
which are more important for further processing. The
captured images in the RGB color model are converted
into gray scale images by using HSV color transformation
where; H – Hue (Dominant Wavelength), S – Saturation
(Purity / shades of the color) and V – Value (Intensity).
The HSV method is taken to get high efficiency output.
Image segmentation is a process by which an image is
partitioned into different regions. Image segmentation
process includes background subtraction and foreground
detection, followed by morphological operations of
dilation and erosion.
3.3 BUILDING AND TRAINING OF THE AI MODEL
In the proposed architecture, the convolution was
executed in the input data using a filter or kernel to create
a feature map. However, convolution is done by sliding the
input filter of 3x3. Finally, a map of various features and
kept them together as the ultimate output of the
convolutional layer. The output of the convolution passed
through the activation functions such as Rectified Linear
unit (ReLU) functions. Because it is nonlinear and provides
the capacity to not stimulate all neurons at the same time,
ReLU is the most extensively utilized activation function.
After every level of convolution, a pooling layer was added
within the CNN layer. The MaxPooling2D layer is a very
basic layer in which no learning takes place and only
dimension reduction occurs. It helps in reducing the
number of learned parameters, thus reducing the
computation and memory load.
The categorization was done in the fully-connected layer
after the convolution and pooling layers. This fully-
connected layer can only accept one-dimensional data. To
convert 2D data to 1D data Python Flatten function is used.
The flatten function is used to get a copy of a given array
collapsed into one dimension. The fully connected layer is
known as the Dense layer. The layer has 256 neurons.
Each neuron in the flatten layer is connected to each
neuron in the fully connected layer. 29 Dropout is used
when a large feed forward neural network is trained on a
small training set, it typically performs poorly on held-out
test data which leads to “overfitting”. Fig 3 shows the no.
of epochs trained, all the layers used dimensions of each
layer, and total number of trainable parameters.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3602
Fig -3: Model Parameters
3.5 ANALYSIS OF THE PREDICTION
The trained model is now saved as a pickle file and then it
is tested against a test set. Then the model is deployed in
the local system and tested for real time recognition.
Numpy and pandas helps greatly in analyzing the accuracy
in graphical form. Also, Confusion matrix is obtained to
visually to differentiate the class level precision. Fig-4
displays a confusion matrix where the prediction for each
class is clear and nearly 1 with some classes having 0.95
prediction value.
FINAL ACCURACY: 99.25% accuracy on the test set
Fig -4: Confusion Matrix
4. TESTING AND RESULT EVALUATION
4.1 REAL-TIME TESTING
After the computational analysis of the prediction, the
built model is tested in real-time. Fig-5 depicts a correct
recognition of the class labeled ‘G’ then forwarded to a
meaningful message - Good Morning that represents the
class. The prediction accuracy depends on the resolution
of the camera used and also the lighting of the
surrounding area. The signs are to be shown in a green
colored box, only there they are converted to grayscale
and processed. For converting the colored to grayscale
image, trackbars are used so that Hue, Saturation, and
Value are adjusted and hands are distinguished from the
background.
Fig -5: Sign Prediction
4.2. RESULTS
The model, the processing code, OpenCV code for video
Processing are dumped into the hardware. Fig-7 shows
that the accuracy was initially low and it attains a constant
value near to 100 as the time increases. The predicted
classes are then passed to a microprocessor and node MCU
to make the expected outputs like emergency calling,
location sharing and a speech output by speaker circuit.
Fig -6: Accuracy Chart
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3603
Fig -7: Accuracy Chart
5. CONCLUSION
This proposed system automatically detects the sign given
by a speaking impaired person and converts it into a
hearable voice. This project aims to develop a useful tool
that uses gesture recognition for reducing the
communication barrier between the deaf and dumb
community and the normal people. Using this design, it is
possible to convert hand gestures into speech which can
be understood easily by normal people. The proposed
system's concept provides more potential for future
expansion. If more programming logic is introduced, more
gestures could be incorporated. The proposed system
successfully predicts the signs and some common words
under different lighting conditions and different speeds.
Accurate masking of the images is being done by giving a
range of values that could detect the human hand
dynamically. Also, at times of emergency, the exact
location of the person wearing the gadget is sent to their
trustable one and makes a phone call to a preferred
person.
6. FUTURE SCOPE
This proposed idea could pave the way for the
development of a wearable gadget that hearing impaired
people can use to make sounds in emergency situations.
Also, in future full conversation of the hearing-impaired
people can be detected from Sign Language and converted
to speech format. The same methodology can be used to
make a tech that could automate homes using gestures.
This can also be applied to other gadgets like changing the
channels of television, control of other household products
even in driving cars using Gestures.
7. REFERENCES
[1] Chen, F., Deng, J., Pang, Z., Baghaei Nejad, M., Yang, H.,
and Yang, G. (2018). Finger Angle-Based Hand Gesture
Recognition for Smart Infrastructure Using Wearable
Wrist-Worn Camera. Applied Sciences, 8(3),
369.doi:10.3390/app8030369.
[2] Dardas, N. H., and Georganas, N. D. (2011). Real –Time
Hand Gesture Detection and Recognition Using Bag-of-
Features and Support Vector Machine Techniques.
IEEE Transactions on Instrumentation and
Measurement, 60(11), 3592–3607.
doi:10.1109/tim.2011.2161140.
[3] Airò Farulla G, Russo LO, Pintor C, Pianu D, Micotti G,
Salgarella AR, Indaco M (2014). Real-Time Single
Camera Hand Gesture Recognition System for Remote
Deaf-Blind Communication. Augmented and Virtual
Reality, 35–52. doi:10.1007/978-3-319-13969-2_3.
[4] Abhishek K S, Qubeley L C F, Ho D. (2016). Glove-
based hand gesture recognition sign language
translator using capacitive touch sensor, 2016 IEEE
International Conference on Electron Devices and
Solid-State Circuits (EDSSC).
doi:10.1109/edssc.2016.7785276
[5] V.Padmanabhan and M. Sornalatha. Hand gesture
recognition and voice conversion system for dumb
people International Journal of Scientific &
Engineering Research, Volume Issue 5, May-2014.
[6] David J. Rios-Soria, Satu E. Schaeffer Sara, E. Garza-
Villarreal, Hand-gesture recognition using computer-
vision techniques Universidad Autónoma de Nuevo
León (UANL) San Nicolás de los Garza, NL, México
elisa.schaeffer@gmail.com.
[7] E K, Vyshakh C B and Shameer U Shahul. Gesture
Controlled Speaking Assistance for Dump and Deaf
National Conference On Discrete Mathematics &
Computing (NCDMC-2017) e-ISSN: 2278-0661, p-
ISSN: 2278-8727.

More Related Content

Similar to Sign Detection from Hearing Impaired

IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET Journal
 
Image Classification using Deep Learning
Image Classification using Deep LearningImage Classification using Deep Learning
Image Classification using Deep Learning
IRJET Journal
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level Process
IRJET Journal
 
Traffic Sign Recognition System
Traffic Sign Recognition SystemTraffic Sign Recognition System
Traffic Sign Recognition System
IRJET Journal
 
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
IRJET Journal
 
IRJET- Face Recognition using Machine Learning
IRJET- Face Recognition using Machine LearningIRJET- Face Recognition using Machine Learning
IRJET- Face Recognition using Machine Learning
IRJET Journal
 
IMAGE SEGMENTATION AND ITS TECHNIQUES
IMAGE SEGMENTATION AND ITS TECHNIQUESIMAGE SEGMENTATION AND ITS TECHNIQUES
IMAGE SEGMENTATION AND ITS TECHNIQUES
IRJET Journal
 
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTMVIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
IRJET Journal
 
Deep Learning for Natural Language Processing
Deep Learning for Natural Language ProcessingDeep Learning for Natural Language Processing
Deep Learning for Natural Language Processing
IRJET Journal
 
IMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNINGIMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNING
IRJET Journal
 
Blood Cell Image Classification for Detecting Malaria using CNN
Blood Cell Image Classification for Detecting Malaria using CNNBlood Cell Image Classification for Detecting Malaria using CNN
Blood Cell Image Classification for Detecting Malaria using CNN
IRJET Journal
 
IRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-TimeIRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-Time
IRJET Journal
 
DEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTIONDEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTION
IRJET Journal
 
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLESIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
IRJET Journal
 
IRJET- Low Light Image Enhancement using Convolutional Neural Network
IRJET-  	  Low Light Image Enhancement using Convolutional Neural NetworkIRJET-  	  Low Light Image Enhancement using Convolutional Neural Network
IRJET- Low Light Image Enhancement using Convolutional Neural Network
IRJET Journal
 
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
IRJET Journal
 
Car Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep LearningCar Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep Learning
IRJET Journal
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
IRJET Journal
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET Journal
 
IRJET- Semantic Segmentation using Deep Learning
IRJET- Semantic Segmentation using Deep LearningIRJET- Semantic Segmentation using Deep Learning
IRJET- Semantic Segmentation using Deep Learning
IRJET Journal
 

Similar to Sign Detection from Hearing Impaired (20)

IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
IRJET- Automated Student’s Attendance Management using Convolutional Neural N...
 
Image Classification using Deep Learning
Image Classification using Deep LearningImage Classification using Deep Learning
Image Classification using Deep Learning
 
IRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level ProcessIRJET- Advanced Control Strategies for Mold Level Process
IRJET- Advanced Control Strategies for Mold Level Process
 
Traffic Sign Recognition System
Traffic Sign Recognition SystemTraffic Sign Recognition System
Traffic Sign Recognition System
 
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...IRJET-  	  A Vision based Hand Gesture Recognition System using Convolutional...
IRJET- A Vision based Hand Gesture Recognition System using Convolutional...
 
IRJET- Face Recognition using Machine Learning
IRJET- Face Recognition using Machine LearningIRJET- Face Recognition using Machine Learning
IRJET- Face Recognition using Machine Learning
 
IMAGE SEGMENTATION AND ITS TECHNIQUES
IMAGE SEGMENTATION AND ITS TECHNIQUESIMAGE SEGMENTATION AND ITS TECHNIQUES
IMAGE SEGMENTATION AND ITS TECHNIQUES
 
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTMVIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
 
Deep Learning for Natural Language Processing
Deep Learning for Natural Language ProcessingDeep Learning for Natural Language Processing
Deep Learning for Natural Language Processing
 
IMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNINGIMAGE CAPTION GENERATOR USING DEEP LEARNING
IMAGE CAPTION GENERATOR USING DEEP LEARNING
 
Blood Cell Image Classification for Detecting Malaria using CNN
Blood Cell Image Classification for Detecting Malaria using CNNBlood Cell Image Classification for Detecting Malaria using CNN
Blood Cell Image Classification for Detecting Malaria using CNN
 
IRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-TimeIRJET- Emotion and Gender Classification in Real-Time
IRJET- Emotion and Gender Classification in Real-Time
 
DEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTIONDEEP LEARNING BASED BRAIN STROKE DETECTION
DEEP LEARNING BASED BRAIN STROKE DETECTION
 
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLESIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
SIGN LANGUAGE INTERFACE SYSTEM FOR HEARING IMPAIRED PEOPLE
 
IRJET- Low Light Image Enhancement using Convolutional Neural Network
IRJET-  	  Low Light Image Enhancement using Convolutional Neural NetworkIRJET-  	  Low Light Image Enhancement using Convolutional Neural Network
IRJET- Low Light Image Enhancement using Convolutional Neural Network
 
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
IRJET - Effective Workflow for High-Performance Recognition of Fruits using M...
 
Car Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep LearningCar Steering Angle Prediction Using Deep Learning
Car Steering Angle Prediction Using Deep Learning
 
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of GlaucomaComparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
Comparative Study of Pre-Trained Neural Network Models in Detection of Glaucoma
 
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
IRJET- Identification of Scene Images using Convolutional Neural Networks - A...
 
IRJET- Semantic Segmentation using Deep Learning
IRJET- Semantic Segmentation using Deep LearningIRJET- Semantic Segmentation using Deep Learning
IRJET- Semantic Segmentation using Deep Learning
 

More from IRJET Journal

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

More from IRJET Journal (20)

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

Recently uploaded

Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
Dr Ramhari Poudyal
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
NazakatAliKhoso2
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
mamamaam477
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
171ticu
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Sinan KOZAK
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
kandramariana6
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
MIGUELANGEL966976
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
JamalHussainArman
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
sachin chaurasia
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
camseq
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
rpskprasana
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
Hitesh Mohapatra
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
Madan Karki
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
co23btech11018
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
IJNSA Journal
 
Recycled Concrete Aggregate in Construction Part II
Recycled Concrete Aggregate in Construction Part IIRecycled Concrete Aggregate in Construction Part II
Recycled Concrete Aggregate in Construction Part II
Aditya Rajan Patra
 

Recently uploaded (20)

Literature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptxLiterature Review Basics and Understanding Reference Management.pptx
Literature Review Basics and Understanding Reference Management.pptx
 
Textile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdfTextile Chemical Processing and Dyeing.pdf
Textile Chemical Processing and Dyeing.pdf
 
Engine Lubrication performance System.pdf
Engine Lubrication performance System.pdfEngine Lubrication performance System.pdf
Engine Lubrication performance System.pdf
 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
 
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样学校原版美国波士顿大学毕业证学历学位证书原版一模一样
学校原版美国波士顿大学毕业证学历学位证书原版一模一样
 
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
Optimizing Gradle Builds - Gradle DPE Tour Berlin 2024
 
132/33KV substation case study Presentation
132/33KV substation case study Presentation132/33KV substation case study Presentation
132/33KV substation case study Presentation
 
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdfBPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
BPV-GUI-01-Guide-for-ASME-Review-Teams-(General)-10-10-2023.pdf
 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
 
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptxML Based Model for NIDS MSc Updated Presentation.v2.pptx
ML Based Model for NIDS MSc Updated Presentation.v2.pptx
 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.The Python for beginners. This is an advance computer language.
The Python for beginners. This is an advance computer language.
 
Modelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdfModelagem de um CSTR com reação endotermica.pdf
Modelagem de um CSTR com reação endotermica.pdf
 
CSM Cloud Service Management Presentarion
CSM Cloud Service Management PresentarionCSM Cloud Service Management Presentarion
CSM Cloud Service Management Presentarion
 
Generative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of contentGenerative AI leverages algorithms to create various forms of content
Generative AI leverages algorithms to create various forms of content
 
spirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptxspirit beverages ppt without graphics.pptx
spirit beverages ppt without graphics.pptx
 
Computational Engineering IITH Presentation
Computational Engineering IITH PresentationComputational Engineering IITH Presentation
Computational Engineering IITH Presentation
 
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMSA SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
A SYSTEMATIC RISK ASSESSMENT APPROACH FOR SECURING THE SMART IRRIGATION SYSTEMS
 
Recycled Concrete Aggregate in Construction Part II
Recycled Concrete Aggregate in Construction Part IIRecycled Concrete Aggregate in Construction Part II
Recycled Concrete Aggregate in Construction Part II
 

Sign Detection from Hearing Impaired

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3600 Sign Detection from Hearing Impaired Manu E S L1, Hariprasad E2, Mohammed Fahd N3, Premalatha K4 123Department of Electrical and Engineering, Kumaraguru College of Technology[autonomous], Coimbatore, India 4Associate Professor, Department of Electrical and Engineering, Kumaraguru College of Technology[autonomous], Coimbatore, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Sign language is the mode of communication among the speech and hearing-impaired community. It is hard for common people who are not familiar with sign language to communicate without an interpreter. This paper focuses on transcribing the gestures from sign language to a spoken language which is easily understood by the listening. Alphabets and words from static images are among the motions that have been translated This becomes more important for the people who completely rely on gestural sign language for communication when they try to communicate with a person who does not understand the sign language. Most of the systems that are currently developed can recognize the gestures based on the skin color. This paper focuses on creating a filter that can detect the gestural features of the hand irrespective of the color. The detection is possible with the advent of computer vision and AI technologies like ML and DL. The systems currently employed use Vector machine Algorithms (ML) which has less accurate results. This paper focuses on using CNN (DL) for training of the AI model. Key Words: Vector machine, Convolutional Neural Network (CNN), Deep learning, Computer Vision, Machine learning (ML) 1.INTRODUCTION People with hearing loss either by birth or any injury may not be able to talk. They converse with others via sign language. Usually sign language is not suitable to communicate with others. Only people in their close circle may be able to understand it. This paper focuses on providing an aid that helps hearing impaired people to communicate with the general public at ease. [1] Using computer Vision, gestures can be detected at 93.17% accuracy. Gestures can also be Translated using capacitive touch sensor with 92% accuracy, also with some disadvantages. [2] Multiclass SVM could also be used to detect as fast as 0.017s as it is used for classification of multiple gestures trained. [3] As common people cannot always use an interpreter everywhere; we believe this will be an easier means of communication. The gestures are captured and converted into text messages. [4] The hardware could be a wrist band that takes video of the hands while gesturing. Analyzing the angles of fingers in each gesture, edge detection and threshold to the image should be done for appropriate results. [5] With the help of the camera, the signs are recognized and classified according to each class. The hand color differs from person to person, the images with dark background are involved. [6] Using CNN instead of SVM could predict the results with 6-7% increased accuracy. The recognition is done by CNN model and assisted by a microprocessor to point to the specific user message or action. 2. PROPOSED WORK In this paper, we proposed a model that is built using Convolutional Neural Networks, that detects the sign given by the hearing-impaired people using OpenCv - a computer vision technology that helps in image processing and enables real-time recognition. We begin by preparing the dataset by taking pictures of the hand gestures and preprocessing them. Having 26 classes of signs, 250 images per class were taken that sum up to a total of 6500 images in the dataset. Much more images were generated by data augmentation like rotation, flipping. Shear range, Cropping etc. The CNN model was built using Keras-a deep-learning API that works over Tensorflow specially built for AI practices. Fig- 1 displays a high-level block diagram of the overall process. For the mathematical process in training, Numpy is used. The trained model is saved as a pickle file and tested against the test dataset, finally accuracy is obtained. The saved model is deployed on a microprocessor that does the real-Time analysis of images. The AI detects a specific class of the sign and sends digital input to a microcontroller like an arduino and a text-to-speech converter like E-speak that gives speech output specific to the class detected on a speaker. The arduino then makes the processes like calling a trusted person in case of emergency or sending location via SMS using GSM and GPS. Also, the detected sign has a set of words or sentences that are shown on a display on the gadget.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3601 Fig -1: Block Diagram 3. IMPLEMENTATION AND RESULT ANALYSIS 3.1 COLLECTION OF IMAGE DATASET The proposed system uses different images of faces with different angles and different poses. The images are taken by a specially developed code that captures images from the real time video. They are handled carefully and made into 26 classes. The taken images are then separated for test and training dataset. Training set contains 75% of the images taken and the 25% else goes to the test set. The images are categorized into 26 directories and labeled with alphabets for building purposes. Fig -2: Dataset 3.2 PREPROCESSING OF IMAGES Pre-processing is the common operations made with images at the lowest level of abstraction. The aim of pre- processing is to improve the image data that suppresses unwanted distortions or to enhance some image features which are more important for further processing. The captured images in the RGB color model are converted into gray scale images by using HSV color transformation where; H – Hue (Dominant Wavelength), S – Saturation (Purity / shades of the color) and V – Value (Intensity). The HSV method is taken to get high efficiency output. Image segmentation is a process by which an image is partitioned into different regions. Image segmentation process includes background subtraction and foreground detection, followed by morphological operations of dilation and erosion. 3.3 BUILDING AND TRAINING OF THE AI MODEL In the proposed architecture, the convolution was executed in the input data using a filter or kernel to create a feature map. However, convolution is done by sliding the input filter of 3x3. Finally, a map of various features and kept them together as the ultimate output of the convolutional layer. The output of the convolution passed through the activation functions such as Rectified Linear unit (ReLU) functions. Because it is nonlinear and provides the capacity to not stimulate all neurons at the same time, ReLU is the most extensively utilized activation function. After every level of convolution, a pooling layer was added within the CNN layer. The MaxPooling2D layer is a very basic layer in which no learning takes place and only dimension reduction occurs. It helps in reducing the number of learned parameters, thus reducing the computation and memory load. The categorization was done in the fully-connected layer after the convolution and pooling layers. This fully- connected layer can only accept one-dimensional data. To convert 2D data to 1D data Python Flatten function is used. The flatten function is used to get a copy of a given array collapsed into one dimension. The fully connected layer is known as the Dense layer. The layer has 256 neurons. Each neuron in the flatten layer is connected to each neuron in the fully connected layer. 29 Dropout is used when a large feed forward neural network is trained on a small training set, it typically performs poorly on held-out test data which leads to “overfitting”. Fig 3 shows the no. of epochs trained, all the layers used dimensions of each layer, and total number of trainable parameters.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3602 Fig -3: Model Parameters 3.5 ANALYSIS OF THE PREDICTION The trained model is now saved as a pickle file and then it is tested against a test set. Then the model is deployed in the local system and tested for real time recognition. Numpy and pandas helps greatly in analyzing the accuracy in graphical form. Also, Confusion matrix is obtained to visually to differentiate the class level precision. Fig-4 displays a confusion matrix where the prediction for each class is clear and nearly 1 with some classes having 0.95 prediction value. FINAL ACCURACY: 99.25% accuracy on the test set Fig -4: Confusion Matrix 4. TESTING AND RESULT EVALUATION 4.1 REAL-TIME TESTING After the computational analysis of the prediction, the built model is tested in real-time. Fig-5 depicts a correct recognition of the class labeled ‘G’ then forwarded to a meaningful message - Good Morning that represents the class. The prediction accuracy depends on the resolution of the camera used and also the lighting of the surrounding area. The signs are to be shown in a green colored box, only there they are converted to grayscale and processed. For converting the colored to grayscale image, trackbars are used so that Hue, Saturation, and Value are adjusted and hands are distinguished from the background. Fig -5: Sign Prediction 4.2. RESULTS The model, the processing code, OpenCV code for video Processing are dumped into the hardware. Fig-7 shows that the accuracy was initially low and it attains a constant value near to 100 as the time increases. The predicted classes are then passed to a microprocessor and node MCU to make the expected outputs like emergency calling, location sharing and a speech output by speaker circuit. Fig -6: Accuracy Chart
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 05 | May 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 3603 Fig -7: Accuracy Chart 5. CONCLUSION This proposed system automatically detects the sign given by a speaking impaired person and converts it into a hearable voice. This project aims to develop a useful tool that uses gesture recognition for reducing the communication barrier between the deaf and dumb community and the normal people. Using this design, it is possible to convert hand gestures into speech which can be understood easily by normal people. The proposed system's concept provides more potential for future expansion. If more programming logic is introduced, more gestures could be incorporated. The proposed system successfully predicts the signs and some common words under different lighting conditions and different speeds. Accurate masking of the images is being done by giving a range of values that could detect the human hand dynamically. Also, at times of emergency, the exact location of the person wearing the gadget is sent to their trustable one and makes a phone call to a preferred person. 6. FUTURE SCOPE This proposed idea could pave the way for the development of a wearable gadget that hearing impaired people can use to make sounds in emergency situations. Also, in future full conversation of the hearing-impaired people can be detected from Sign Language and converted to speech format. The same methodology can be used to make a tech that could automate homes using gestures. This can also be applied to other gadgets like changing the channels of television, control of other household products even in driving cars using Gestures. 7. REFERENCES [1] Chen, F., Deng, J., Pang, Z., Baghaei Nejad, M., Yang, H., and Yang, G. (2018). Finger Angle-Based Hand Gesture Recognition for Smart Infrastructure Using Wearable Wrist-Worn Camera. Applied Sciences, 8(3), 369.doi:10.3390/app8030369. [2] Dardas, N. H., and Georganas, N. D. (2011). Real –Time Hand Gesture Detection and Recognition Using Bag-of- Features and Support Vector Machine Techniques. IEEE Transactions on Instrumentation and Measurement, 60(11), 3592–3607. doi:10.1109/tim.2011.2161140. [3] Airò Farulla G, Russo LO, Pintor C, Pianu D, Micotti G, Salgarella AR, Indaco M (2014). Real-Time Single Camera Hand Gesture Recognition System for Remote Deaf-Blind Communication. Augmented and Virtual Reality, 35–52. doi:10.1007/978-3-319-13969-2_3. [4] Abhishek K S, Qubeley L C F, Ho D. (2016). Glove- based hand gesture recognition sign language translator using capacitive touch sensor, 2016 IEEE International Conference on Electron Devices and Solid-State Circuits (EDSSC). doi:10.1109/edssc.2016.7785276 [5] V.Padmanabhan and M. Sornalatha. Hand gesture recognition and voice conversion system for dumb people International Journal of Scientific & Engineering Research, Volume Issue 5, May-2014. [6] David J. Rios-Soria, Satu E. Schaeffer Sara, E. Garza- Villarreal, Hand-gesture recognition using computer- vision techniques Universidad Autónoma de Nuevo León (UANL) San Nicolás de los Garza, NL, México elisa.schaeffer@gmail.com. [7] E K, Vyshakh C B and Shameer U Shahul. Gesture Controlled Speaking Assistance for Dump and Deaf National Conference On Discrete Mathematics & Computing (NCDMC-2017) e-ISSN: 2278-0661, p- ISSN: 2278-8727.