SlideShare a Scribd company logo
1 of 2
Download to read offline
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 5 Issue 3, March-April 2021 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD39972 | Volume – 5 | Issue – 3 | March-April 2021 Page 800
Facial Emotion Recognition using Convolution Neural Network
Raheena Bagwan1, Sakshi Chintawar1, Komal Dhapudkar1,
Alisha Balamwar1, Prof. Sandeep Gore2
1Student, 2Professor,
1,2Department of Computer Engineering, GHRCEM, Wagholi, Pune, Maharashtra, India
ABSTRACT
Facial expression plays a major role in every aspect of human life for
communication. It has been a boon for the research in facial emotion with the
systems that give rise to the terminology of human-computer interaction in
real life. Humans socially interact with each other via emotions. In this
research paper, we have proposed an approach of building a system that
recognizes facial emotion using a Convolutional Neural Network (CNN)which
is one of the most popular Neural Network available. It is said to be a pattern
recognition Neural Network. Convolutional Neural Network reduces the
dimension for large resolution images and not losing the quality and giving a
prediction output what's expectedandcapturingofthefacial expressionseven
in odd angles makes it stand different from other models also i.e. itworkswell
for non-frontal images. But unfortunately, CNN based detector is
computationally heavy and is a challenge for usingCNN fora videoasaninput.
We will implement a facial emotion recognition system using a Convolutional
Neural Network using a dataset. Our system will predict the output based on
the input given to it. This system can be useful for sentimental analysis,canbe
used for clinical practices, can be useful for getting a person's review on a
certain product, and many more.
KEYWORDS: Facial Emotion Recognition, Deep Learning, CNN, ImageProcessing
How to cite this paper:Raheena Bagwan|
Sakshi Chintawar | Komal Dhapudkar |
Alisha Balamwar | Prof. Sandeep Gore
"Facial Emotion Recognition using
Convolution Neural
Network" Published
in International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-5 |
Issue-3, April 2021, pp.800-801, URL:
www.ijtsrd.com/papers/ijtsrd39972.pdf
Copyright © 2021 by author (s) and
International Journal ofTrendinScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by/4.0)
I. INTRODUCTION
In this world when a human beingbecomesspeechlessdueto
some reason at that moment his facial expression
communicates many things of his state of mind at that
particular moment. Humans always had the innate ability to
recognize and distinguish between faces (for ex the mother
and a child…...)[3]. Humans interact socially with the help of
emotions, which is considered a universal language. Facial
emotions are one of the important aspects of human
communication that help us understand the intentions of
others [4]. Hence, it is natural that research of facial emotion
has been acquiring a lot of attention over the past decades
with applications notonlyinperceptualandcognitivescience
but also in affective computing and computer animations
[24].
Human-Computer Interaction Technology (HCIT) refers to a
kind of technology that takes computer equipment as the
medium, to realize the interaction between human life and
computer systems [15]. Inrecentyearswiththerapidgrowth
and progress in pattern recognitionandartificialintelligence,
and many more new emerging technologies there are many
libraries and modules available specifically for image
processing in neural networks. Among which one of them is
Convolution Neural Network (CNN) best suited for facial
emotion recognition and pattern finding.
In this paper, we are going to go through Face Emotion
Recognition (FER) using a Convolutional Neural network for
a better result outcome. It is also best suited for any angle
emotion recognition i.e. it can recognize the face emotion at
any odd angle. Facial Expressions are responsible for
conveying information that is hard to perceive. It has been
applied in the fields of distance education, public security,
public review for certain things, and many more. Hence,
creating a system that is capable of face detection and
emotion recognition has become a crucial area of research.
II. PRELIMINARIES
2.1. Image Processing
In our paper, we are dealing with the concept of Image
Processing rigorously for emotion detection from an image.
Image Processing is generally known as a methodology of
performing someimportantkindofoperationonanimagefor
a certain output. In our paper, during this processing, we
have input as an image and output as a characteristic/
features associated with that image in the form of various
emotions such as anger, happiness,sadness, neutral,etc.that
are expressed by human beings.
2.1.1. Neural Network
Neural Networks are similar to neurons in the human brain
and works with concepts of weights, input, activation
function, channel, etc. as follows:
The set of elements represented by the set of input(x) in the
form of x1,x2,x3…..xn are connected to ut the connection
between the input activation function is drawn by the set of
weights()whicharerepresentedby1,2,3…..n.Besidesthis,we
have Bayer's letter ‘b’.
IJTSRD39972
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD39972 | Volume – 5 | Issue – 3 | March-April 2021 Page 801
After applying the output of the activation function
represented by (z) which is: y=(i wi*xi +b)
where xi is input, i is the weight of xi, a is the bias added in
this neuron, and is the activation function.
This is where we collect the summation of input as a single
unit. The other concept that is to be done is convolution
operation convolution in images. We have single input in an
image and we apply filters to it.
2.1.2. Activation Function
Generally, the Activation Function is used for determination
purposes i.e. the output of a neuralnetwork.Therearequitea
lot of commonly used Activation Functions, whereas in our
case depending upon the sum of weighted input either it is
larger than zero or not it acts as a filter deciding whether the
information will be passed on and how strong the signal will
be. On the other hand, if the value is equal to or less than zero
then the signal will vanish.
2.1.3. Stride
Stride denotes the number of steps to be taken during the
traversal of an array during the Pooling. The default value of
stride is generally 1 [16].
2.2. The algorithm that can be used
2.1.1. CNN
Among the several deep learning models available,
Convolutional Neural Network (CNN), in particular, deep
learning is one of the most popular neural networks [4].
Convolutional Neural Network is one of the Feed-Forward
Network to process and recognize image data with the grid
version. Being one of the NeuralNetworkitalsoconsistsofan
Input layer where the image is input, Hidden layers such as
Convolution Layer, ReLu Layer, Pooling Layer, and Fully
Connected Network.
Convolutional Layer - Converts images into an array
The size of the feature map is controlled by three variables:
Depth-Number of filters used for the convolution operation
[16].
Stride- Number of Pixels by which the filter matrix traverses
over the input matrix [16].
Padding-It’s good to input matrices with zeros around the
bordering matrix [16].
III. RELATED WORK
HONGLI ZHANG, ALIREZA JOLFAEI, AND MAMOUN
ALAZAB[1].The authors have proposed a facial expression
recognition method using the CNN model which extracts
facial features effectively. Superviseddeeplearningisusedas
the processing technique in the system. The proposed
method can automatically learn pattern features and reduce
the incompleteness caused by artificial design features. The
proposed method directly inputs the image pixel value
through training sample image data. The algorithmusedisR-
CNN.
Accuracy: 85%
The Datasets used are:
1. Fer-2013 facial expression database
2. LFW data set.
Advantages: Highly Accurate
Limitations: Facial expressions, in reality, may vary
depending upon various factors that may occurduringimage
capturing such as face posture it can be blurring, occlusion
may occur. It can have different noise and many more.
Zeynab Rzayeva and Emin Alasgarov[2].Theauthorshave
proposed a model based on Convolutional Neural Networks
(CNN), which is trained on Cohn-Kanade and RAVDESS
datasets. The proposedmodelgivestheexpectedoutcomefor
the said dataset in detecting macro facial emotions. The
algorithm used is RFM technique, clustering algorithms, and
multilayer perceptron (MLP) algorithm.
Accuracy: 95%
The Datasets used are: Cohn-KanadeandRAVDESSdatasets
Advantages: Distributed platforms allow us to train our
model with a higher number of images and do it efficiently
and effectively.
Limitations: The algorithm is not able to detect features
explicitly.
LehLuoh, Chih-Chang Huang, Hsues Yen Liu[3]. The
authors have proposed a system to build an emotion
detection system that can analyze basic facial expressions of
humans automatically. The experiment resultalsoshowsthe
facial emotion recognition rate is about 90% for the well-
known JAFFE database.
Accuracy: 90%
The Dataset used is the JAFFE dataset.
Advantages: Highly Accurate
Limitations: It faces problems in image processing, such as
detection of landmarks offaceandvarianceofcolororlightof
the environment.
IV. CONCLUSION
After so much researchand workingonthisproposedsystem
it has been in view that recognizing the emotion of a person
and knowing his/her state of mind is essential. The future
scope mentioned is endless to the counting and has many
effective results in different fields like Medical, Security and
Surveillance, Education, Marketing of Products, etc. with
more futuristic applications visible on the horizon especially
in the field of security and surveillance.
V. REFERENCES
[1] Hongli Zhang, Albireza Jolfaei,andMamounAlazab,"A
Face Emotion Recognition Method Using
Convolutional Neural Network and Image Edge
Computing" Access IEEE, vol. 7, pp. 159081 - 159089,
2019
[2] Zeynab Rzayeva and Emin Alasgarov, "Facial Emotion
Recognition using Convolution Neural Networks."
2019 IEEE 13th International Conference.Application
of Information and Communication Technologies
(AICT), 2020
[3] Leh Luoh, Chih-Chang Huang, Hsues Yen Liu. "Image
Processing based Emotion Recognition" 2010
International Conference. System Science and
Engineering, 2010
[4] X. Zhao, S. Zhang and B. Lei, "Facial expression
recognition based on local binary patterns and local
fisher discriminant analysis", WSEAS Transactions.
Signal Processing, vol. 8, no. 1, pp. 21-31, 2012.
[5] K He, X Zhang, S Ren et al., "Deep Residual Learning
for Image Recognition[C]", IEEE Conference.
Computer Vision and Pattern Recognition, pp. 770-
778, 2016.

More Related Content

What's hot

HUMAN EMOTION RECOGNIITION SYSTEM
HUMAN EMOTION RECOGNIITION SYSTEMHUMAN EMOTION RECOGNIITION SYSTEM
HUMAN EMOTION RECOGNIITION SYSTEMsoumi sarkar
 
Facial expression recognition system : survey
Facial expression recognition system : surveyFacial expression recognition system : survey
Facial expression recognition system : surveyMohamed Alhmdany
 
A deep learning facial expression recognition based scoring system for restau...
A deep learning facial expression recognition based scoring system for restau...A deep learning facial expression recognition based scoring system for restau...
A deep learning facial expression recognition based scoring system for restau...CloudTechnologies
 
Facial emotion recognition
Facial emotion recognitionFacial emotion recognition
Facial emotion recognitionAnukriti Dureha
 
Emotion recognition using image processing in deep learning
Emotion recognition using image     processing in deep learningEmotion recognition using image     processing in deep learning
Emotion recognition using image processing in deep learningvishnuv43
 
Synops emotion recognize
Synops emotion recognizeSynops emotion recognize
Synops emotion recognizeAvdhesh Gupta
 
Introduction to emotion detection
Introduction to emotion detectionIntroduction to emotion detection
Introduction to emotion detectionTyler Schnoebelen
 
4837410 automatic-facial-emotion-recognition
4837410 automatic-facial-emotion-recognition4837410 automatic-facial-emotion-recognition
4837410 automatic-facial-emotion-recognitionNgaire Taylor
 
Facial Expression Recognition (FER) using Deep Learning
Facial Expression Recognition (FER) using Deep LearningFacial Expression Recognition (FER) using Deep Learning
Facial Expression Recognition (FER) using Deep LearningEmmeline Tsen
 
Project presentation by Debendra Adhikari
Project presentation by Debendra AdhikariProject presentation by Debendra Adhikari
Project presentation by Debendra AdhikariDEBENDRA ADHIKARI
 
Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.Takrim Ul Islam Laskar
 
Facial emotion recognition
Facial emotion recognitionFacial emotion recognition
Facial emotion recognitionRahin Patel
 
Emotion detection using cnn.pptx
Emotion detection using cnn.pptxEmotion detection using cnn.pptx
Emotion detection using cnn.pptxRADO7900
 
Face Recognition Technology
Face Recognition TechnologyFace Recognition Technology
Face Recognition TechnologyShravan Halankar
 
Image classification using cnn
Image classification using cnnImage classification using cnn
Image classification using cnnSumeraHangi
 
Facial expression recognition
Facial expression recognitionFacial expression recognition
Facial expression recognitionSachin Mangad
 

What's hot (20)

HUMAN EMOTION RECOGNIITION SYSTEM
HUMAN EMOTION RECOGNIITION SYSTEMHUMAN EMOTION RECOGNIITION SYSTEM
HUMAN EMOTION RECOGNIITION SYSTEM
 
Facial expression recognition system : survey
Facial expression recognition system : surveyFacial expression recognition system : survey
Facial expression recognition system : survey
 
A deep learning facial expression recognition based scoring system for restau...
A deep learning facial expression recognition based scoring system for restau...A deep learning facial expression recognition based scoring system for restau...
A deep learning facial expression recognition based scoring system for restau...
 
Facial emotion recognition
Facial emotion recognitionFacial emotion recognition
Facial emotion recognition
 
Emotion recognition using image processing in deep learning
Emotion recognition using image     processing in deep learningEmotion recognition using image     processing in deep learning
Emotion recognition using image processing in deep learning
 
Synops emotion recognize
Synops emotion recognizeSynops emotion recognize
Synops emotion recognize
 
Introduction to emotion detection
Introduction to emotion detectionIntroduction to emotion detection
Introduction to emotion detection
 
4837410 automatic-facial-emotion-recognition
4837410 automatic-facial-emotion-recognition4837410 automatic-facial-emotion-recognition
4837410 automatic-facial-emotion-recognition
 
Facial Expression Recognition (FER) using Deep Learning
Facial Expression Recognition (FER) using Deep LearningFacial Expression Recognition (FER) using Deep Learning
Facial Expression Recognition (FER) using Deep Learning
 
Facial Expression Recognitino
Facial Expression RecognitinoFacial Expression Recognitino
Facial Expression Recognitino
 
Emotion recognition
Emotion recognitionEmotion recognition
Emotion recognition
 
Project presentation by Debendra Adhikari
Project presentation by Debendra AdhikariProject presentation by Debendra Adhikari
Project presentation by Debendra Adhikari
 
Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.Facial emotion detection on babies' emotional face using Deep Learning.
Facial emotion detection on babies' emotional face using Deep Learning.
 
Facial emotion recognition
Facial emotion recognitionFacial emotion recognition
Facial emotion recognition
 
Emotion detection using cnn.pptx
Emotion detection using cnn.pptxEmotion detection using cnn.pptx
Emotion detection using cnn.pptx
 
EMOTION DETECTION USING AI
EMOTION DETECTION USING AIEMOTION DETECTION USING AI
EMOTION DETECTION USING AI
 
Face Recognition Technology
Face Recognition TechnologyFace Recognition Technology
Face Recognition Technology
 
Image classification using cnn
Image classification using cnnImage classification using cnn
Image classification using cnn
 
Facial expression recognition
Facial expression recognitionFacial expression recognition
Facial expression recognition
 
Face recognition
Face recognitionFace recognition
Face recognition
 

Similar to Facial Emotion Recognition using Convolution Neural Network

Study on Different Human Emotions Using Back Propagation Method
Study on Different Human Emotions Using Back Propagation MethodStudy on Different Human Emotions Using Back Propagation Method
Study on Different Human Emotions Using Back Propagation Methodijiert bestjournal
 
Recognition of Sentiment using Deep Neural Network
Recognition of Sentiment using Deep Neural NetworkRecognition of Sentiment using Deep Neural Network
Recognition of Sentiment using Deep Neural Networkijtsrd
 
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...AI Therapist – Emotion Detection using Facial Detection and Recognition and S...
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...ijtsrd
 
Two Level Decision for Recognition of Human Facial Expressions using Neural N...
Two Level Decision for Recognition of Human Facial Expressions using Neural N...Two Level Decision for Recognition of Human Facial Expressions using Neural N...
Two Level Decision for Recognition of Human Facial Expressions using Neural N...IIRindia
 
Deep learning for pose-invariant face detection in unconstrained environment
Deep learning for pose-invariant face detection in unconstrained environmentDeep learning for pose-invariant face detection in unconstrained environment
Deep learning for pose-invariant face detection in unconstrained environmentIJECEIAES
 
Project report of thr facial expressionppt.pptx
Project report of thr facial expressionppt.pptxProject report of thr facial expressionppt.pptx
Project report of thr facial expressionppt.pptxtaxihig737
 
Deep learning based facial expressions recognition system for assisting visua...
Deep learning based facial expressions recognition system for assisting visua...Deep learning based facial expressions recognition system for assisting visua...
Deep learning based facial expressions recognition system for assisting visua...journalBEEI
 
Face Detection and Recognition using Back Propagation Neural Network (BPNN)
Face Detection and Recognition using Back Propagation Neural Network (BPNN)Face Detection and Recognition using Back Propagation Neural Network (BPNN)
Face Detection and Recognition using Back Propagation Neural Network (BPNN)IRJET Journal
 
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...BIJIAM Journal
 
Human Emotion Recognition using Machine Learning
Human Emotion Recognition using Machine LearningHuman Emotion Recognition using Machine Learning
Human Emotion Recognition using Machine Learningijtsrd
 
IRJET - Deep Learning Applications and Frameworks – A Review
IRJET -  	  Deep Learning Applications and Frameworks – A ReviewIRJET -  	  Deep Learning Applications and Frameworks – A Review
IRJET - Deep Learning Applications and Frameworks – A ReviewIRJET Journal
 
Age and gender detection using deep learning
Age and gender detection using deep learningAge and gender detection using deep learning
Age and gender detection using deep learningIRJET Journal
 
Sign Language Recognition using Deep Learning
Sign Language Recognition using Deep LearningSign Language Recognition using Deep Learning
Sign Language Recognition using Deep LearningIRJET Journal
 
Movie Sentiment Analysis using Deep Learning RNN
Movie Sentiment Analysis using Deep Learning RNNMovie Sentiment Analysis using Deep Learning RNN
Movie Sentiment Analysis using Deep Learning RNNijtsrd
 
Emotion Recognition through Speech Analysis using various Deep Learning Algor...
Emotion Recognition through Speech Analysis using various Deep Learning Algor...Emotion Recognition through Speech Analysis using various Deep Learning Algor...
Emotion Recognition through Speech Analysis using various Deep Learning Algor...IRJET Journal
 
Mind reading computers
Mind reading computersMind reading computers
Mind reading computersAnshu Maurya
 
Model for autism disorder detection using deep learning
Model for autism disorder detection using deep learningModel for autism disorder detection using deep learning
Model for autism disorder detection using deep learningIAESIJAI
 
Artificial Intelligence in Dentistry: What we need to Know?
Artificial Intelligence in Dentistry: What we need to Know?Artificial Intelligence in Dentistry: What we need to Know?
Artificial Intelligence in Dentistry: What we need to Know?semualkaira
 

Similar to Facial Emotion Recognition using Convolution Neural Network (20)

Study on Different Human Emotions Using Back Propagation Method
Study on Different Human Emotions Using Back Propagation MethodStudy on Different Human Emotions Using Back Propagation Method
Study on Different Human Emotions Using Back Propagation Method
 
Recognition of Sentiment using Deep Neural Network
Recognition of Sentiment using Deep Neural NetworkRecognition of Sentiment using Deep Neural Network
Recognition of Sentiment using Deep Neural Network
 
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...AI Therapist – Emotion Detection using Facial Detection and Recognition and S...
AI Therapist – Emotion Detection using Facial Detection and Recognition and S...
 
Ijsrdv8 i10424
Ijsrdv8 i10424Ijsrdv8 i10424
Ijsrdv8 i10424
 
Two Level Decision for Recognition of Human Facial Expressions using Neural N...
Two Level Decision for Recognition of Human Facial Expressions using Neural N...Two Level Decision for Recognition of Human Facial Expressions using Neural N...
Two Level Decision for Recognition of Human Facial Expressions using Neural N...
 
Ct35535539
Ct35535539Ct35535539
Ct35535539
 
Deep learning for pose-invariant face detection in unconstrained environment
Deep learning for pose-invariant face detection in unconstrained environmentDeep learning for pose-invariant face detection in unconstrained environment
Deep learning for pose-invariant face detection in unconstrained environment
 
Project report of thr facial expressionppt.pptx
Project report of thr facial expressionppt.pptxProject report of thr facial expressionppt.pptx
Project report of thr facial expressionppt.pptx
 
Deep learning based facial expressions recognition system for assisting visua...
Deep learning based facial expressions recognition system for assisting visua...Deep learning based facial expressions recognition system for assisting visua...
Deep learning based facial expressions recognition system for assisting visua...
 
Face Detection and Recognition using Back Propagation Neural Network (BPNN)
Face Detection and Recognition using Back Propagation Neural Network (BPNN)Face Detection and Recognition using Back Propagation Neural Network (BPNN)
Face Detection and Recognition using Back Propagation Neural Network (BPNN)
 
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
Hybrid Facial Expression Recognition (FER2013) Model for Real-Time Emotion Cl...
 
Human Emotion Recognition using Machine Learning
Human Emotion Recognition using Machine LearningHuman Emotion Recognition using Machine Learning
Human Emotion Recognition using Machine Learning
 
IRJET - Deep Learning Applications and Frameworks – A Review
IRJET -  	  Deep Learning Applications and Frameworks – A ReviewIRJET -  	  Deep Learning Applications and Frameworks – A Review
IRJET - Deep Learning Applications and Frameworks – A Review
 
Age and gender detection using deep learning
Age and gender detection using deep learningAge and gender detection using deep learning
Age and gender detection using deep learning
 
Sign Language Recognition using Deep Learning
Sign Language Recognition using Deep LearningSign Language Recognition using Deep Learning
Sign Language Recognition using Deep Learning
 
Movie Sentiment Analysis using Deep Learning RNN
Movie Sentiment Analysis using Deep Learning RNNMovie Sentiment Analysis using Deep Learning RNN
Movie Sentiment Analysis using Deep Learning RNN
 
Emotion Recognition through Speech Analysis using various Deep Learning Algor...
Emotion Recognition through Speech Analysis using various Deep Learning Algor...Emotion Recognition through Speech Analysis using various Deep Learning Algor...
Emotion Recognition through Speech Analysis using various Deep Learning Algor...
 
Mind reading computers
Mind reading computersMind reading computers
Mind reading computers
 
Model for autism disorder detection using deep learning
Model for autism disorder detection using deep learningModel for autism disorder detection using deep learning
Model for autism disorder detection using deep learning
 
Artificial Intelligence in Dentistry: What we need to Know?
Artificial Intelligence in Dentistry: What we need to Know?Artificial Intelligence in Dentistry: What we need to Know?
Artificial Intelligence in Dentistry: What we need to Know?
 

More from YogeshIJTSRD

Cosmetic Science An Overview
Cosmetic Science An OverviewCosmetic Science An Overview
Cosmetic Science An OverviewYogeshIJTSRD
 
Standardization and Formulations of Calotropis Procera
Standardization and Formulations of Calotropis ProceraStandardization and Formulations of Calotropis Procera
Standardization and Formulations of Calotropis ProceraYogeshIJTSRD
 
Review of the Diagnosis and Treatment of Paralysis
Review of the Diagnosis and Treatment of ParalysisReview of the Diagnosis and Treatment of Paralysis
Review of the Diagnosis and Treatment of ParalysisYogeshIJTSRD
 
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...YogeshIJTSRD
 
Criminology Educators Triumphs and Struggles
Criminology Educators Triumphs and StrugglesCriminology Educators Triumphs and Struggles
Criminology Educators Triumphs and StrugglesYogeshIJTSRD
 
A Review Herbal Drugs Used in Skin Disorder
A Review Herbal Drugs Used in Skin DisorderA Review Herbal Drugs Used in Skin Disorder
A Review Herbal Drugs Used in Skin DisorderYogeshIJTSRD
 
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...YogeshIJTSRD
 
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...YogeshIJTSRD
 
Data Security by AES Advanced Encryption Standard
Data Security by AES Advanced Encryption StandardData Security by AES Advanced Encryption Standard
Data Security by AES Advanced Encryption StandardYogeshIJTSRD
 
Antimicrobial and Phytochemical Screening of Phyllantus Niruri
Antimicrobial and Phytochemical Screening of Phyllantus NiruriAntimicrobial and Phytochemical Screening of Phyllantus Niruri
Antimicrobial and Phytochemical Screening of Phyllantus NiruriYogeshIJTSRD
 
Heat Sink for Underground Pipe Line
Heat Sink for Underground Pipe LineHeat Sink for Underground Pipe Line
Heat Sink for Underground Pipe LineYogeshIJTSRD
 
Newly Proposed Multi Channel Fiber Optic Cable Core
Newly Proposed Multi Channel Fiber Optic Cable CoreNewly Proposed Multi Channel Fiber Optic Cable Core
Newly Proposed Multi Channel Fiber Optic Cable CoreYogeshIJTSRD
 
Security Sector Reform toward Professionalism of Military and Police
Security Sector Reform toward Professionalism of Military and PoliceSecurity Sector Reform toward Professionalism of Military and Police
Security Sector Reform toward Professionalism of Military and PoliceYogeshIJTSRD
 
Stress An Undetachable Condition of Life
Stress An Undetachable Condition of LifeStress An Undetachable Condition of Life
Stress An Undetachable Condition of LifeYogeshIJTSRD
 
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...YogeshIJTSRD
 
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...YogeshIJTSRD
 
Novel Drug Delivery System An Overview
Novel Drug Delivery System An OverviewNovel Drug Delivery System An Overview
Novel Drug Delivery System An OverviewYogeshIJTSRD
 
Security Issues Related to Biometrics
Security Issues Related to BiometricsSecurity Issues Related to Biometrics
Security Issues Related to BiometricsYogeshIJTSRD
 
Comparative Analysis of Different Numerical Methods for the Solution of Initi...
Comparative Analysis of Different Numerical Methods for the Solution of Initi...Comparative Analysis of Different Numerical Methods for the Solution of Initi...
Comparative Analysis of Different Numerical Methods for the Solution of Initi...YogeshIJTSRD
 
Evaluation of Different Paving Mixes Using Optimum Stabilizing Content
Evaluation of Different Paving Mixes Using Optimum Stabilizing ContentEvaluation of Different Paving Mixes Using Optimum Stabilizing Content
Evaluation of Different Paving Mixes Using Optimum Stabilizing ContentYogeshIJTSRD
 

More from YogeshIJTSRD (20)

Cosmetic Science An Overview
Cosmetic Science An OverviewCosmetic Science An Overview
Cosmetic Science An Overview
 
Standardization and Formulations of Calotropis Procera
Standardization and Formulations of Calotropis ProceraStandardization and Formulations of Calotropis Procera
Standardization and Formulations of Calotropis Procera
 
Review of the Diagnosis and Treatment of Paralysis
Review of the Diagnosis and Treatment of ParalysisReview of the Diagnosis and Treatment of Paralysis
Review of the Diagnosis and Treatment of Paralysis
 
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...
Comparative Analysis of Forced Draft Cooling Tower Using Two Design Methods A...
 
Criminology Educators Triumphs and Struggles
Criminology Educators Triumphs and StrugglesCriminology Educators Triumphs and Struggles
Criminology Educators Triumphs and Struggles
 
A Review Herbal Drugs Used in Skin Disorder
A Review Herbal Drugs Used in Skin DisorderA Review Herbal Drugs Used in Skin Disorder
A Review Herbal Drugs Used in Skin Disorder
 
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...
Automatic Query Expansion Using Word Embedding Based on Fuzzy Graph Connectiv...
 
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
A New Proposal for Smartphone Based Drowsiness Detection and Warning System f...
 
Data Security by AES Advanced Encryption Standard
Data Security by AES Advanced Encryption StandardData Security by AES Advanced Encryption Standard
Data Security by AES Advanced Encryption Standard
 
Antimicrobial and Phytochemical Screening of Phyllantus Niruri
Antimicrobial and Phytochemical Screening of Phyllantus NiruriAntimicrobial and Phytochemical Screening of Phyllantus Niruri
Antimicrobial and Phytochemical Screening of Phyllantus Niruri
 
Heat Sink for Underground Pipe Line
Heat Sink for Underground Pipe LineHeat Sink for Underground Pipe Line
Heat Sink for Underground Pipe Line
 
Newly Proposed Multi Channel Fiber Optic Cable Core
Newly Proposed Multi Channel Fiber Optic Cable CoreNewly Proposed Multi Channel Fiber Optic Cable Core
Newly Proposed Multi Channel Fiber Optic Cable Core
 
Security Sector Reform toward Professionalism of Military and Police
Security Sector Reform toward Professionalism of Military and PoliceSecurity Sector Reform toward Professionalism of Military and Police
Security Sector Reform toward Professionalism of Military and Police
 
Stress An Undetachable Condition of Life
Stress An Undetachable Condition of LifeStress An Undetachable Condition of Life
Stress An Undetachable Condition of Life
 
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...
Comparative Studies of Diabetes in Adult Nigerians Lipid Profile and Antioxid...
 
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...
To Assess the Severity and Mortality among Covid 19 Patients after Having Vac...
 
Novel Drug Delivery System An Overview
Novel Drug Delivery System An OverviewNovel Drug Delivery System An Overview
Novel Drug Delivery System An Overview
 
Security Issues Related to Biometrics
Security Issues Related to BiometricsSecurity Issues Related to Biometrics
Security Issues Related to Biometrics
 
Comparative Analysis of Different Numerical Methods for the Solution of Initi...
Comparative Analysis of Different Numerical Methods for the Solution of Initi...Comparative Analysis of Different Numerical Methods for the Solution of Initi...
Comparative Analysis of Different Numerical Methods for the Solution of Initi...
 
Evaluation of Different Paving Mixes Using Optimum Stabilizing Content
Evaluation of Different Paving Mixes Using Optimum Stabilizing ContentEvaluation of Different Paving Mixes Using Optimum Stabilizing Content
Evaluation of Different Paving Mixes Using Optimum Stabilizing Content
 

Recently uploaded

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 

Recently uploaded (20)

mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 

Facial Emotion Recognition using Convolution Neural Network

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 5 Issue 3, March-April 2021 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD39972 | Volume – 5 | Issue – 3 | March-April 2021 Page 800 Facial Emotion Recognition using Convolution Neural Network Raheena Bagwan1, Sakshi Chintawar1, Komal Dhapudkar1, Alisha Balamwar1, Prof. Sandeep Gore2 1Student, 2Professor, 1,2Department of Computer Engineering, GHRCEM, Wagholi, Pune, Maharashtra, India ABSTRACT Facial expression plays a major role in every aspect of human life for communication. It has been a boon for the research in facial emotion with the systems that give rise to the terminology of human-computer interaction in real life. Humans socially interact with each other via emotions. In this research paper, we have proposed an approach of building a system that recognizes facial emotion using a Convolutional Neural Network (CNN)which is one of the most popular Neural Network available. It is said to be a pattern recognition Neural Network. Convolutional Neural Network reduces the dimension for large resolution images and not losing the quality and giving a prediction output what's expectedandcapturingofthefacial expressionseven in odd angles makes it stand different from other models also i.e. itworkswell for non-frontal images. But unfortunately, CNN based detector is computationally heavy and is a challenge for usingCNN fora videoasaninput. We will implement a facial emotion recognition system using a Convolutional Neural Network using a dataset. Our system will predict the output based on the input given to it. This system can be useful for sentimental analysis,canbe used for clinical practices, can be useful for getting a person's review on a certain product, and many more. KEYWORDS: Facial Emotion Recognition, Deep Learning, CNN, ImageProcessing How to cite this paper:Raheena Bagwan| Sakshi Chintawar | Komal Dhapudkar | Alisha Balamwar | Prof. Sandeep Gore "Facial Emotion Recognition using Convolution Neural Network" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-5 | Issue-3, April 2021, pp.800-801, URL: www.ijtsrd.com/papers/ijtsrd39972.pdf Copyright © 2021 by author (s) and International Journal ofTrendinScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by/4.0) I. INTRODUCTION In this world when a human beingbecomesspeechlessdueto some reason at that moment his facial expression communicates many things of his state of mind at that particular moment. Humans always had the innate ability to recognize and distinguish between faces (for ex the mother and a child…...)[3]. Humans interact socially with the help of emotions, which is considered a universal language. Facial emotions are one of the important aspects of human communication that help us understand the intentions of others [4]. Hence, it is natural that research of facial emotion has been acquiring a lot of attention over the past decades with applications notonlyinperceptualandcognitivescience but also in affective computing and computer animations [24]. Human-Computer Interaction Technology (HCIT) refers to a kind of technology that takes computer equipment as the medium, to realize the interaction between human life and computer systems [15]. Inrecentyearswiththerapidgrowth and progress in pattern recognitionandartificialintelligence, and many more new emerging technologies there are many libraries and modules available specifically for image processing in neural networks. Among which one of them is Convolution Neural Network (CNN) best suited for facial emotion recognition and pattern finding. In this paper, we are going to go through Face Emotion Recognition (FER) using a Convolutional Neural network for a better result outcome. It is also best suited for any angle emotion recognition i.e. it can recognize the face emotion at any odd angle. Facial Expressions are responsible for conveying information that is hard to perceive. It has been applied in the fields of distance education, public security, public review for certain things, and many more. Hence, creating a system that is capable of face detection and emotion recognition has become a crucial area of research. II. PRELIMINARIES 2.1. Image Processing In our paper, we are dealing with the concept of Image Processing rigorously for emotion detection from an image. Image Processing is generally known as a methodology of performing someimportantkindofoperationonanimagefor a certain output. In our paper, during this processing, we have input as an image and output as a characteristic/ features associated with that image in the form of various emotions such as anger, happiness,sadness, neutral,etc.that are expressed by human beings. 2.1.1. Neural Network Neural Networks are similar to neurons in the human brain and works with concepts of weights, input, activation function, channel, etc. as follows: The set of elements represented by the set of input(x) in the form of x1,x2,x3…..xn are connected to ut the connection between the input activation function is drawn by the set of weights()whicharerepresentedby1,2,3…..n.Besidesthis,we have Bayer's letter ‘b’. IJTSRD39972
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD39972 | Volume – 5 | Issue – 3 | March-April 2021 Page 801 After applying the output of the activation function represented by (z) which is: y=(i wi*xi +b) where xi is input, i is the weight of xi, a is the bias added in this neuron, and is the activation function. This is where we collect the summation of input as a single unit. The other concept that is to be done is convolution operation convolution in images. We have single input in an image and we apply filters to it. 2.1.2. Activation Function Generally, the Activation Function is used for determination purposes i.e. the output of a neuralnetwork.Therearequitea lot of commonly used Activation Functions, whereas in our case depending upon the sum of weighted input either it is larger than zero or not it acts as a filter deciding whether the information will be passed on and how strong the signal will be. On the other hand, if the value is equal to or less than zero then the signal will vanish. 2.1.3. Stride Stride denotes the number of steps to be taken during the traversal of an array during the Pooling. The default value of stride is generally 1 [16]. 2.2. The algorithm that can be used 2.1.1. CNN Among the several deep learning models available, Convolutional Neural Network (CNN), in particular, deep learning is one of the most popular neural networks [4]. Convolutional Neural Network is one of the Feed-Forward Network to process and recognize image data with the grid version. Being one of the NeuralNetworkitalsoconsistsofan Input layer where the image is input, Hidden layers such as Convolution Layer, ReLu Layer, Pooling Layer, and Fully Connected Network. Convolutional Layer - Converts images into an array The size of the feature map is controlled by three variables: Depth-Number of filters used for the convolution operation [16]. Stride- Number of Pixels by which the filter matrix traverses over the input matrix [16]. Padding-It’s good to input matrices with zeros around the bordering matrix [16]. III. RELATED WORK HONGLI ZHANG, ALIREZA JOLFAEI, AND MAMOUN ALAZAB[1].The authors have proposed a facial expression recognition method using the CNN model which extracts facial features effectively. Superviseddeeplearningisusedas the processing technique in the system. The proposed method can automatically learn pattern features and reduce the incompleteness caused by artificial design features. The proposed method directly inputs the image pixel value through training sample image data. The algorithmusedisR- CNN. Accuracy: 85% The Datasets used are: 1. Fer-2013 facial expression database 2. LFW data set. Advantages: Highly Accurate Limitations: Facial expressions, in reality, may vary depending upon various factors that may occurduringimage capturing such as face posture it can be blurring, occlusion may occur. It can have different noise and many more. Zeynab Rzayeva and Emin Alasgarov[2].Theauthorshave proposed a model based on Convolutional Neural Networks (CNN), which is trained on Cohn-Kanade and RAVDESS datasets. The proposedmodelgivestheexpectedoutcomefor the said dataset in detecting macro facial emotions. The algorithm used is RFM technique, clustering algorithms, and multilayer perceptron (MLP) algorithm. Accuracy: 95% The Datasets used are: Cohn-KanadeandRAVDESSdatasets Advantages: Distributed platforms allow us to train our model with a higher number of images and do it efficiently and effectively. Limitations: The algorithm is not able to detect features explicitly. LehLuoh, Chih-Chang Huang, Hsues Yen Liu[3]. The authors have proposed a system to build an emotion detection system that can analyze basic facial expressions of humans automatically. The experiment resultalsoshowsthe facial emotion recognition rate is about 90% for the well- known JAFFE database. Accuracy: 90% The Dataset used is the JAFFE dataset. Advantages: Highly Accurate Limitations: It faces problems in image processing, such as detection of landmarks offaceandvarianceofcolororlightof the environment. IV. CONCLUSION After so much researchand workingonthisproposedsystem it has been in view that recognizing the emotion of a person and knowing his/her state of mind is essential. The future scope mentioned is endless to the counting and has many effective results in different fields like Medical, Security and Surveillance, Education, Marketing of Products, etc. with more futuristic applications visible on the horizon especially in the field of security and surveillance. V. REFERENCES [1] Hongli Zhang, Albireza Jolfaei,andMamounAlazab,"A Face Emotion Recognition Method Using Convolutional Neural Network and Image Edge Computing" Access IEEE, vol. 7, pp. 159081 - 159089, 2019 [2] Zeynab Rzayeva and Emin Alasgarov, "Facial Emotion Recognition using Convolution Neural Networks." 2019 IEEE 13th International Conference.Application of Information and Communication Technologies (AICT), 2020 [3] Leh Luoh, Chih-Chang Huang, Hsues Yen Liu. "Image Processing based Emotion Recognition" 2010 International Conference. System Science and Engineering, 2010 [4] X. Zhao, S. Zhang and B. Lei, "Facial expression recognition based on local binary patterns and local fisher discriminant analysis", WSEAS Transactions. Signal Processing, vol. 8, no. 1, pp. 21-31, 2012. [5] K He, X Zhang, S Ren et al., "Deep Residual Learning for Image Recognition[C]", IEEE Conference. Computer Vision and Pattern Recognition, pp. 770- 778, 2016.