SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3530
Facial Gesture Recognition using Surface EMG and Multiclass Support
Vector Machine (SVM)
Amol R. Nikam1, Dr. R. N. Awale2
1M.Tech, Electronics, VJTI, H. R. Mahajani Road, Matunga, Mumbai 400019, INDIA
2Professor, Electrical Department, VJTI, H. R. Mahajani Road, Matunga, Mumbai 400019, INDIA
---------------------------------------------------------------------------***---------------------------------------------------------------------------
Abstract- Electromyography (EMG) based facial gesture
recognition using different machine learning techniques is
seen as potential medium in assistive technology and
rehabilitation. The aim of this paper is to contribute this
field of study by enabling system to recognize different facial
expressions using EMG. It includes the comprehensive study
on analysis of mutual action potential signals generated for
four different expressions with most discriminative features.
Different statistical features are derived in time domain like
Root mean square (RMS), variance (VAR), etc. for feature
classification. Finally, statistical features are classified using
Support vector machine (SVM) and k- nearest neighbor
(KNN). The results of the system are presented and
methodology used is efficient for predicting different
expressions which gives 92.76% accuracy using support
vector machines.
Key-words: Electromyography (EMG), Root Mean Square
(RMS), Variance (VAR) Standard Deviation (SD), Support
Vector Machines (SVM), k-Nearest Neighbor (KNN)
1. INTRODUCTION
Facial gestures are most visible and expressive
communication channels which contains complicated
muscles capable of generating delicate movements. These
facial gestures could convey non-verbal expressions, which
are important in interpersonal relations. Efficient analysis
of facial neuromuscular signals generated by different
facial expression can be used for characterization of
different facial gestures using surface electromyography
(sEMG). [1,2]
EMG signals are non-stationary and stochastics signals
which makes their analysis too complex. The recognition
of facial gestures depends on the effectiveness of the
feature selected and classification algorithm applied. Thus,
in order to discriminate the muscle movements i. e. facial
gestures ample amount of information is needed to be
gather from the selected features. The features of EMG
signals can be grouped in different categories based on the
type of analysis technique used: time, frequency, spatial
and time- frequency domain features. In our studies we
have focused on various times domain features which
provides the most discerning characteristic of different
movements. [3,7]
There are various techniques used for facial gestures
identification. Image processing is widely used technique
but it is ineffective to identify the movement of delicate
muscles. Electromyography provides upper edge to this
technique as it detects the tiny variations in signals for
different muscles movement for facial gestures. Thus, it is
helpful in many human machine interface (HMI)
applications where we can control applications like robot
or wheelchair using different facial expressions.[7]
In these studies, we have designed a system which
provides one more dimension to available techniques in
this field.
2. METHODOLOGY
2.1 System Overview
The block diagram of the proposed system is
shown in the Fig-1. The EMG signal is acquired using the
available dataset. Dataset consists of raw EMG signals of
four different expressions like frowning, puckering,
smiling and chewing. The raw EMG signal is passed
through band pass filter 30-450 Hz. Then for processing,
windowing of the signal is done to select the number of
samples of the EMG signal in the time domain. Further the
root mean square (RMS) features are extracted from non-
overlapping window of 256 samples. Other features
extracted are mean absolute value (MAV), standard
deviation (SD) and variance (VAR). Finally, the extracted
results of the active dataset are classified using Support
vector machine (SVM).
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3531
Figure-1: System Block Diagram
2.2 Collecting Dataset
The data consists of facial surface EMG signals
from the muscle’s corrugator supercilia, zygomaticus
major, orbicularis oris, orbicularis oculi, and masseter.
Fifteen participants (8 females, 7 males) participated in
the experiments for data collection. [9]. The above muscles
are most active muscles which provides ample variations
in signals for unlike expressions. Fig-2. Represents the
anatomy of human face and location of different active
muscles in facial expressions.
Figure-2: Electrode location for measuring facial EMG activity
3. FEATURE EXTRACTION AND CLASSIFICATION.
3.1 Feature Extraction
Feature extraction is one of the best methods for
reducing the dimensions of the large datasets. Here, we
convert an initial set of data in a specific derived values or
features which plays an important role in EMG signal
analysis.
There are three types of features in which a raw EMG
signal can be analyzed for feature extraction: time domain
features, frequency domain features and time-frequency
domain features. Here time domain features like root
mean square (RMS), mean absolute value (MAV), standard
deviations (SD) and Variance (VAR) are derived. Root
mean square (RMS) feature shows the energy content in
signal. Variance (VAR) and standard deviation (SD) gives
an idea about the variation or dispersion of data from
mean or spread out of the data. As EMG signals are non-
stationary and non-periodic signals a lot of variations are
observed for different gestures. Thus, the above defined
features provide more discerning variations in the range of
statistical value for different expressions.
Table I, represents the mathematical expressions for
mentioned statistical features.
Table-1
Mean Absolute
Value (MAV)
| |
Variance (VAR) ( )
Standard
Deviation (SD)
√
( )
Root mean
Square (RMS)
√ ( )
3.2 Classifications
Features extracted need to be classified in distinct
classes for recognition of the different facial expressions.
Classifiers used must be fast and proficient with better
sensitivity and accuracy. The selected classifiers for the
above experiments are Support vector machine (SVM) and
k- nearest neighbor(k-NN).
3.2.1 Support Vector Machine (SVM)
Support Vector Machines (SVMs) are supervised
learning model with associated learning algorithm that
analyze data for classification and regression analysis. In
SVM, a data point is viewed as a p- dimensional vector and
we want to know whether we can separate such points
with a (p-1) dimensional hyperplanes. It is called as linear
plane or linear SVM. In our design we are dealing with
multiple facial expressions which need to be classified with
multiclass classifier. Thus, kernel SVM is used i.e. nonlinear
SVM with kernel tricks [8]. Different types of kernels like
polynomial, Gaussian, Gaussian Radial Basis (RBF),
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3532
sigmoid kernel is available. Here, polynomial kernel of
degree 3 i.e. cubic SVM is been deployed for classification
of expressions. The mathematical expression for
polynomial regression is,
( ) ( )
Where d is the degree of the polynomial.
3.2.2 k-Nearest Neighbor (k-NN)
k- nearest neighbor (k-NN) finds the cluster of k-
data points in the training set close to the class object
based on the dominant class. Accuracy of k-NN depends k-
value as the classification depends on k-values and also on
the distance matrix name like Chebyshev, Euclidean,
Hamming etc.
4. RESULTS AND DISCUSSIONS
4.1 Raw EMG signals and Preprocessing
Fig-3, shows the plot of raw EMG signals for facial
expressions like frowning and its filtered signal. For pre-
processing the band pass filter of 5-450 Hz is used.
Figure-3: Signal plot and filtering
4.2 Classifier Results: SVM and k-NN
For the classification of data, confusion matrix a table
briefing the classification algorithm is used.
Fig-4, shows the confusion matrix for SVM. The accuracy
achieved is 92.76% for SVM for the polynomial regression
of degree 3. The 5- fold validation is used for data
prediction with 80-20% training -testing method.
Similarly, overall accuracy achieved for cubic k-NN is
91.20%.
Figure-4: Confusion Matrix for SVM
Figure-5: Confusion Matrix for k-NN
Receiver operating curve (ROC) is the true positive rate
(Sensitivity) is plot against the function of the false
positive rate (100-Specificity) for different cut-off points of
a parameter. Area under ROC curve indicates the
usefulness of the classification tests.
Fig-6 and Fig-7 are ROC curve for SVM and k-NN
respectively.
Figure-6: ROC curve for SVM
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3533
Figure-7: ROC curve for K-NN
The class wise accuracy table for SVM and k- NN is
given below. Table-2 is accuracy table for SVM and Table-3
is accuracy table for k-NN.
Table-2
Accuracy
(%)
Precision Recall F-
ratio
Class 1 93.76 0.95 0.93 0.94
Class 2 95.37 0.85 0.86 0.86
Class 3 96.78 0.88 0.92 0.90
Class 4 99.20 0.98 0.98 0.98
Table-3
Accuracy
(%)
Precision Recall F-
ratio
Class 1 94.77 0.96 0.93 0.95
Class 2 90.58 0.85 0.93 0.89
Class 3 96.78 0.90 0.90 0.90
Class 4 94.7 0.98 0.91 0.98
4.3 Comparison of SVM and k-NN Classifier
Table-4
Parameter SVM k-NN
Accuracy 93.76 91.20
Sensitivity 92.25 91.40
Specificity 91.50 92
F-ratio 92 90.75
5. CONCLUSION
The main aim of this paper is to recognize facial
expressions from facial EMG signals. Features like root
mean square (RMS), standard deviation (SD) and Mean
average value (MAV) are used for classification using
support vector machine (SVM) and k-nearest neighbor (k-
NN). The best classification accuracy is 92.76% for cubic
SVM to detect facial gesture using 80-20 training testing
method.
REFERENCES:
[1] Mahyar Hamedi, Sh-Hussain Salleh, Kamarulafizam
Ismail, Alias Mohd Noor, “Time-Frequency Facial Gestures
EMG Analysis using Bilinear Distribution”, in IEEE
International Conference on Signal and Image Processing
Applications (ICSIPA), Oct 2015.
[2] Ç. Topçu et al., "Entropy analysis of surface EMG for
classification of face movements," 2015 23nd Signal
Processing and Communications Applications Conference
(SIU), Malatya, 2015, pp.1647-
1650.doi:10.1109/SIU.2015.7130167
[3] M. Hamedi, I. Mohammad Rezazadeh, and M. P.
Firoozabadi, “Facial Gesture Recognition using Two-
Channel Biosensors Configuration and Fuzzy Classifier: a
Pilot Study,” in International Conference on Electrical,
Control and Computer Engineering (INECCE), pp. 338–343,
June 2011.
[4] L.B.P. Ang ; E.F. Belen ; R.A. Bernardo ; E.R.
Boongaling ; G.H. Briones ; J.B. Coronel, “Facial expression
recognition through pattern analysis of facial muscle
movements utilizing electromyogram sensors. ” in 2004
IEEE Region 10 Conference TENCON 2004, Nov 2004
[5] Mahyar Hamedi, Sh-Hussain Salleh, Chee-Ming Ting,
Mehdi Astaraki and Alias Mohd Noor , “Robust Facial
Expression Recognition for MuCI: A Comprehensive
Neuromuscular Signal Analysis.” DOI
10.1109/TAFFC.2016. 2569098, IEEE Transactions on
Affective Computing.
[6] Meredith J. Cler, and Cara E. Stepp, “Discrete Versus
Continuous Mapping of Facial Electromyography for
Human–Machine Interface Control: Performance and
Training Effects.”, IEEE Transaction on Neural Systems and
Rehabilitation Engineering, VOL. 23, NO. 4, JULY 2015.
[7 ]Vikram Kehri, Rahul Ingle and R. N. Awale “Analysis of
Facial EMG Signal for Emotion Recognition Using Wavelet
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3534
Packet Transform and SVM,” International Conference on
Machine Intelligence and Signal Processing (MISP 2017),
IIT-Indore, India, 2017. (DOI: 10.1007/978-981-13-0923-
6_21)
[8 ]Kehri V, Awale R. N. EMG Signal Analysis for Diagnosis
of Muscular Dystrophy Using Wavelet Transform, SVM and
ANN. Biomed Pharmacol J 2018;11(3).
[9] Mimetic Interfaces: Facial Surface EMG Dataset
2015, 2016-05-19, Ville Rantanen (author), Ville Rantanen
(distributor), Etsin research data
finder,2019. urn:nbn:fi:csc-kata20160519232206569792
[10] Hend Ab. ELLaban , A. A. Ewees , “A Real-Time
System for Facial Expression Recognition using Support
Vector Machines and k-Nearest Neighbor Classifier”, in
International Journal of Computer Applications (0975 –
8887) Volume 159 – No 8, February 2017
[11] Mahyar Hamedi, Sh-Hussain Salleh, Mehdi Astaraki,
“EMG-based facial gesture recognition through versatile
elliptic basis function neural network”, Hamedi et al.
BioMedical Engineering OnLine 2013, 12:73
[12] Benjamin A. Kent, Zahi M. Kakish “Adaptive Synergy
Control of a Dexterous Artificial Hand to Rotate Objects in
Multiple Orientations Via EMG Facial Recognition”, 2014
IEEE International Conference on Robotics & Automation
(ICRA) May 31 - June 7, 2014. Hong Kong, China

More Related Content

What's hot

Simplified Multimodal Biometric Identification
Simplified Multimodal Biometric IdentificationSimplified Multimodal Biometric Identification
Simplified Multimodal Biometric Identificationijeei-iaes
 
IRJET- Performance Analysis of Optimization Techniques by using Clustering
IRJET- Performance Analysis of Optimization Techniques by using ClusteringIRJET- Performance Analysis of Optimization Techniques by using Clustering
IRJET- Performance Analysis of Optimization Techniques by using ClusteringIRJET Journal
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET 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
 
IRJET - Finger Vein Extraction and Authentication System for ATM
IRJET -  	  Finger Vein Extraction and Authentication System for ATMIRJET -  	  Finger Vein Extraction and Authentication System for ATM
IRJET - Finger Vein Extraction and Authentication System for ATMIRJET Journal
 
IRJET- Multi Image Morphing: A Review
IRJET- Multi Image Morphing: A ReviewIRJET- Multi Image Morphing: A Review
IRJET- Multi Image Morphing: A ReviewIRJET Journal
 
Property based fusion for multifocus images
Property based fusion for multifocus imagesProperty based fusion for multifocus images
Property based fusion for multifocus imagesIAEME Publication
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...sipij
 
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...IJCI JOURNAL
 
Implementation of miml framework using annotated
Implementation of miml framework using annotatedImplementation of miml framework using annotated
Implementation of miml framework using annotatedEditor IJMTER
 
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...Sreekanth Sivaraman
 
Persian character recognition using new
Persian character recognition using newPersian character recognition using new
Persian character recognition using newijcsity
 
Classification of voltage disturbance using machine learning
Classification of voltage disturbance using machine learning Classification of voltage disturbance using machine learning
Classification of voltage disturbance using machine learning Mohan Kashyap
 
IRJET- A Review on Face Detection and Expression Recognition
IRJET-  	  A Review on Face Detection and Expression RecognitionIRJET-  	  A Review on Face Detection and Expression Recognition
IRJET- A Review on Face Detection and Expression RecognitionIRJET Journal
 
[update] Introductory Parts of the Book "Dive into Deep Learning"
[update] Introductory Parts of the Book "Dive into Deep Learning"[update] Introductory Parts of the Book "Dive into Deep Learning"
[update] Introductory Parts of the Book "Dive into Deep Learning"Young-Min kang
 

What's hot (19)

Simplified Multimodal Biometric Identification
Simplified Multimodal Biometric IdentificationSimplified Multimodal Biometric Identification
Simplified Multimodal Biometric Identification
 
IRJET- Performance Analysis of Optimization Techniques by using Clustering
IRJET- Performance Analysis of Optimization Techniques by using ClusteringIRJET- Performance Analysis of Optimization Techniques by using Clustering
IRJET- Performance Analysis of Optimization Techniques by using Clustering
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of Diabetes
 
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 - Finger Vein Extraction and Authentication System for ATM
IRJET -  	  Finger Vein Extraction and Authentication System for ATMIRJET -  	  Finger Vein Extraction and Authentication System for ATM
IRJET - Finger Vein Extraction and Authentication System for ATM
 
IRJET- Multi Image Morphing: A Review
IRJET- Multi Image Morphing: A ReviewIRJET- Multi Image Morphing: A Review
IRJET- Multi Image Morphing: A Review
 
Property based fusion for multifocus images
Property based fusion for multifocus imagesProperty based fusion for multifocus images
Property based fusion for multifocus images
 
50120140502012
5012014050201250120140502012
50120140502012
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...
FREE- REFERENCE IMAGE QUALITY ASSESSMENT FRAMEWORK USING METRICS FUSION AND D...
 
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
FINGERPRINT MATCHING USING HYBRID SHAPE AND ORIENTATION DESCRIPTOR -AN IMPROV...
 
Implementation of miml framework using annotated
Implementation of miml framework using annotatedImplementation of miml framework using annotated
Implementation of miml framework using annotated
 
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...
A VBA Based Computer Program for Nonlinear FEA of Large Displacement 2D Beam ...
 
Ji3416861690
Ji3416861690Ji3416861690
Ji3416861690
 
Persian character recognition using new
Persian character recognition using newPersian character recognition using new
Persian character recognition using new
 
Classification of voltage disturbance using machine learning
Classification of voltage disturbance using machine learning Classification of voltage disturbance using machine learning
Classification of voltage disturbance using machine learning
 
IRJET- A Review on Face Detection and Expression Recognition
IRJET-  	  A Review on Face Detection and Expression RecognitionIRJET-  	  A Review on Face Detection and Expression Recognition
IRJET- A Review on Face Detection and Expression Recognition
 
[update] Introductory Parts of the Book "Dive into Deep Learning"
[update] Introductory Parts of the Book "Dive into Deep Learning"[update] Introductory Parts of the Book "Dive into Deep Learning"
[update] Introductory Parts of the Book "Dive into Deep Learning"
 

Similar to IRJET- Facial Gesture Recognition using Surface EMG and Multiclass Support Vector Machine (SVM)

Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...
Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...
Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...IRJET Journal
 
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET Journal
 
Ijmer 41023842
Ijmer 41023842Ijmer 41023842
Ijmer 41023842IJMER
 
Detection of DC Voltage Fault in SRM Drives Using K-Means Clustering and Cla...
Detection of DC Voltage Fault in SRM Drives Using K-Means  Clustering and Cla...Detection of DC Voltage Fault in SRM Drives Using K-Means  Clustering and Cla...
Detection of DC Voltage Fault in SRM Drives Using K-Means Clustering and Cla...IJMER
 
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBP
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBPIRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBP
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBPIRJET Journal
 
Performance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsPerformance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsIAEME Publication
 
Performance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsPerformance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsIAEME Publication
 
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...IRJET Journal
 
Support Vector Machine Optimal Kernel Selection
Support Vector Machine Optimal Kernel SelectionSupport Vector Machine Optimal Kernel Selection
Support Vector Machine Optimal Kernel SelectionIRJET Journal
 
IRJET - Stock Market Prediction using Machine Learning Algorithm
IRJET - Stock Market Prediction using Machine Learning AlgorithmIRJET - Stock Market Prediction using Machine Learning Algorithm
IRJET - Stock Market Prediction using Machine Learning AlgorithmIRJET Journal
 
IRJET- Development of GUI based Simulator for the EBI Signal
IRJET- 	  Development of GUI based Simulator for the EBI SignalIRJET- 	  Development of GUI based Simulator for the EBI Signal
IRJET- Development of GUI based Simulator for the EBI SignalIRJET Journal
 
IRJET-Electromyogram Signals for Multiuser Interface- A Review
IRJET-Electromyogram Signals for Multiuser Interface- A ReviewIRJET-Electromyogram Signals for Multiuser Interface- A Review
IRJET-Electromyogram Signals for Multiuser Interface- A ReviewIRJET Journal
 
Final Thesis Presentation
Final Thesis PresentationFinal Thesis Presentation
Final Thesis PresentationSajid Rasheed
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET Journal
 
Using deep neural networks in classifying electromyography signals for hand g...
Using deep neural networks in classifying electromyography signals for hand g...Using deep neural networks in classifying electromyography signals for hand g...
Using deep neural networks in classifying electromyography signals for hand g...IAESIJAI
 
Iaetsd recognition of emg based hand gestures
Iaetsd recognition of emg based hand gesturesIaetsd recognition of emg based hand gestures
Iaetsd recognition of emg based hand gesturesIaetsd Iaetsd
 
Segmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain TumorSegmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain TumorIRJET Journal
 
Comparative Analysis of Hand Gesture Recognition Techniques
Comparative Analysis of Hand Gesture Recognition TechniquesComparative Analysis of Hand Gesture Recognition Techniques
Comparative Analysis of Hand Gesture Recognition TechniquesIJERA Editor
 
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 ProcessIRJET Journal
 

Similar to IRJET- Facial Gesture Recognition using Surface EMG and Multiclass Support Vector Machine (SVM) (20)

Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...
Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...
Surface Electromyography (SEMG) Based Fuzzy Logic Controller for Footballer b...
 
IRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different ClassifierIRJET-Analysis of Face Recognition System for Different Classifier
IRJET-Analysis of Face Recognition System for Different Classifier
 
Ijmer 41023842
Ijmer 41023842Ijmer 41023842
Ijmer 41023842
 
Detection of DC Voltage Fault in SRM Drives Using K-Means Clustering and Cla...
Detection of DC Voltage Fault in SRM Drives Using K-Means  Clustering and Cla...Detection of DC Voltage Fault in SRM Drives Using K-Means  Clustering and Cla...
Detection of DC Voltage Fault in SRM Drives Using K-Means Clustering and Cla...
 
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBP
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBPIRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBP
IRJET- Diabetic Haemorrhage Detection using DWT and Elliptical LBP
 
Performance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsPerformance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systems
 
Performance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systemsPerformance enhanced beamforming algorithms for mimo systems
Performance enhanced beamforming algorithms for mimo systems
 
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...
Hybrid Feature Extraction Model For Emg Classification Used In Exoskeleton Ro...
 
Support Vector Machine Optimal Kernel Selection
Support Vector Machine Optimal Kernel SelectionSupport Vector Machine Optimal Kernel Selection
Support Vector Machine Optimal Kernel Selection
 
IRJET - Stock Market Prediction using Machine Learning Algorithm
IRJET - Stock Market Prediction using Machine Learning AlgorithmIRJET - Stock Market Prediction using Machine Learning Algorithm
IRJET - Stock Market Prediction using Machine Learning Algorithm
 
IRJET- Development of GUI based Simulator for the EBI Signal
IRJET- 	  Development of GUI based Simulator for the EBI SignalIRJET- 	  Development of GUI based Simulator for the EBI Signal
IRJET- Development of GUI based Simulator for the EBI Signal
 
IRJET-Electromyogram Signals for Multiuser Interface- A Review
IRJET-Electromyogram Signals for Multiuser Interface- A ReviewIRJET-Electromyogram Signals for Multiuser Interface- A Review
IRJET-Electromyogram Signals for Multiuser Interface- A Review
 
Final Thesis Presentation
Final Thesis PresentationFinal Thesis Presentation
Final Thesis Presentation
 
IRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and ClassificationIRJET- Detection of Cataract by Statistical Features and Classification
IRJET- Detection of Cataract by Statistical Features and Classification
 
Using deep neural networks in classifying electromyography signals for hand g...
Using deep neural networks in classifying electromyography signals for hand g...Using deep neural networks in classifying electromyography signals for hand g...
Using deep neural networks in classifying electromyography signals for hand g...
 
Iaetsd recognition of emg based hand gestures
Iaetsd recognition of emg based hand gesturesIaetsd recognition of emg based hand gestures
Iaetsd recognition of emg based hand gestures
 
Segmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain TumorSegmentation and Classification of MRI Brain Tumor
Segmentation and Classification of MRI Brain Tumor
 
Comparative Analysis of Hand Gesture Recognition Techniques
Comparative Analysis of Hand Gesture Recognition TechniquesComparative Analysis of Hand Gesture Recognition Techniques
Comparative Analysis of Hand Gesture Recognition Techniques
 
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
 
Towards more accurate iris recognition system by using hybrid approach for f...
Towards more accurate iris recognition system by using hybrid  approach for f...Towards more accurate iris recognition system by using hybrid  approach for f...
Towards more accurate iris recognition system by using hybrid approach for f...
 

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 STRUCTUREIRJET 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 CharacteristicsIRJET 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 ADASIRJET 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 ProIRJET 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 SystemIRJET 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 bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET 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 DesignIRJET 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

UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduitsrknatarajan
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 

Recently uploaded (20)

UNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular ConduitsUNIT-II FMM-Flow Through Circular Conduits
UNIT-II FMM-Flow Through Circular Conduits
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 

IRJET- Facial Gesture Recognition using Surface EMG and Multiclass Support Vector Machine (SVM)

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3530 Facial Gesture Recognition using Surface EMG and Multiclass Support Vector Machine (SVM) Amol R. Nikam1, Dr. R. N. Awale2 1M.Tech, Electronics, VJTI, H. R. Mahajani Road, Matunga, Mumbai 400019, INDIA 2Professor, Electrical Department, VJTI, H. R. Mahajani Road, Matunga, Mumbai 400019, INDIA ---------------------------------------------------------------------------***--------------------------------------------------------------------------- Abstract- Electromyography (EMG) based facial gesture recognition using different machine learning techniques is seen as potential medium in assistive technology and rehabilitation. The aim of this paper is to contribute this field of study by enabling system to recognize different facial expressions using EMG. It includes the comprehensive study on analysis of mutual action potential signals generated for four different expressions with most discriminative features. Different statistical features are derived in time domain like Root mean square (RMS), variance (VAR), etc. for feature classification. Finally, statistical features are classified using Support vector machine (SVM) and k- nearest neighbor (KNN). The results of the system are presented and methodology used is efficient for predicting different expressions which gives 92.76% accuracy using support vector machines. Key-words: Electromyography (EMG), Root Mean Square (RMS), Variance (VAR) Standard Deviation (SD), Support Vector Machines (SVM), k-Nearest Neighbor (KNN) 1. INTRODUCTION Facial gestures are most visible and expressive communication channels which contains complicated muscles capable of generating delicate movements. These facial gestures could convey non-verbal expressions, which are important in interpersonal relations. Efficient analysis of facial neuromuscular signals generated by different facial expression can be used for characterization of different facial gestures using surface electromyography (sEMG). [1,2] EMG signals are non-stationary and stochastics signals which makes their analysis too complex. The recognition of facial gestures depends on the effectiveness of the feature selected and classification algorithm applied. Thus, in order to discriminate the muscle movements i. e. facial gestures ample amount of information is needed to be gather from the selected features. The features of EMG signals can be grouped in different categories based on the type of analysis technique used: time, frequency, spatial and time- frequency domain features. In our studies we have focused on various times domain features which provides the most discerning characteristic of different movements. [3,7] There are various techniques used for facial gestures identification. Image processing is widely used technique but it is ineffective to identify the movement of delicate muscles. Electromyography provides upper edge to this technique as it detects the tiny variations in signals for different muscles movement for facial gestures. Thus, it is helpful in many human machine interface (HMI) applications where we can control applications like robot or wheelchair using different facial expressions.[7] In these studies, we have designed a system which provides one more dimension to available techniques in this field. 2. METHODOLOGY 2.1 System Overview The block diagram of the proposed system is shown in the Fig-1. The EMG signal is acquired using the available dataset. Dataset consists of raw EMG signals of four different expressions like frowning, puckering, smiling and chewing. The raw EMG signal is passed through band pass filter 30-450 Hz. Then for processing, windowing of the signal is done to select the number of samples of the EMG signal in the time domain. Further the root mean square (RMS) features are extracted from non- overlapping window of 256 samples. Other features extracted are mean absolute value (MAV), standard deviation (SD) and variance (VAR). Finally, the extracted results of the active dataset are classified using Support vector machine (SVM).
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3531 Figure-1: System Block Diagram 2.2 Collecting Dataset The data consists of facial surface EMG signals from the muscle’s corrugator supercilia, zygomaticus major, orbicularis oris, orbicularis oculi, and masseter. Fifteen participants (8 females, 7 males) participated in the experiments for data collection. [9]. The above muscles are most active muscles which provides ample variations in signals for unlike expressions. Fig-2. Represents the anatomy of human face and location of different active muscles in facial expressions. Figure-2: Electrode location for measuring facial EMG activity 3. FEATURE EXTRACTION AND CLASSIFICATION. 3.1 Feature Extraction Feature extraction is one of the best methods for reducing the dimensions of the large datasets. Here, we convert an initial set of data in a specific derived values or features which plays an important role in EMG signal analysis. There are three types of features in which a raw EMG signal can be analyzed for feature extraction: time domain features, frequency domain features and time-frequency domain features. Here time domain features like root mean square (RMS), mean absolute value (MAV), standard deviations (SD) and Variance (VAR) are derived. Root mean square (RMS) feature shows the energy content in signal. Variance (VAR) and standard deviation (SD) gives an idea about the variation or dispersion of data from mean or spread out of the data. As EMG signals are non- stationary and non-periodic signals a lot of variations are observed for different gestures. Thus, the above defined features provide more discerning variations in the range of statistical value for different expressions. Table I, represents the mathematical expressions for mentioned statistical features. Table-1 Mean Absolute Value (MAV) | | Variance (VAR) ( ) Standard Deviation (SD) √ ( ) Root mean Square (RMS) √ ( ) 3.2 Classifications Features extracted need to be classified in distinct classes for recognition of the different facial expressions. Classifiers used must be fast and proficient with better sensitivity and accuracy. The selected classifiers for the above experiments are Support vector machine (SVM) and k- nearest neighbor(k-NN). 3.2.1 Support Vector Machine (SVM) Support Vector Machines (SVMs) are supervised learning model with associated learning algorithm that analyze data for classification and regression analysis. In SVM, a data point is viewed as a p- dimensional vector and we want to know whether we can separate such points with a (p-1) dimensional hyperplanes. It is called as linear plane or linear SVM. In our design we are dealing with multiple facial expressions which need to be classified with multiclass classifier. Thus, kernel SVM is used i.e. nonlinear SVM with kernel tricks [8]. Different types of kernels like polynomial, Gaussian, Gaussian Radial Basis (RBF),
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3532 sigmoid kernel is available. Here, polynomial kernel of degree 3 i.e. cubic SVM is been deployed for classification of expressions. The mathematical expression for polynomial regression is, ( ) ( ) Where d is the degree of the polynomial. 3.2.2 k-Nearest Neighbor (k-NN) k- nearest neighbor (k-NN) finds the cluster of k- data points in the training set close to the class object based on the dominant class. Accuracy of k-NN depends k- value as the classification depends on k-values and also on the distance matrix name like Chebyshev, Euclidean, Hamming etc. 4. RESULTS AND DISCUSSIONS 4.1 Raw EMG signals and Preprocessing Fig-3, shows the plot of raw EMG signals for facial expressions like frowning and its filtered signal. For pre- processing the band pass filter of 5-450 Hz is used. Figure-3: Signal plot and filtering 4.2 Classifier Results: SVM and k-NN For the classification of data, confusion matrix a table briefing the classification algorithm is used. Fig-4, shows the confusion matrix for SVM. The accuracy achieved is 92.76% for SVM for the polynomial regression of degree 3. The 5- fold validation is used for data prediction with 80-20% training -testing method. Similarly, overall accuracy achieved for cubic k-NN is 91.20%. Figure-4: Confusion Matrix for SVM Figure-5: Confusion Matrix for k-NN Receiver operating curve (ROC) is the true positive rate (Sensitivity) is plot against the function of the false positive rate (100-Specificity) for different cut-off points of a parameter. Area under ROC curve indicates the usefulness of the classification tests. Fig-6 and Fig-7 are ROC curve for SVM and k-NN respectively. Figure-6: ROC curve for SVM
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3533 Figure-7: ROC curve for K-NN The class wise accuracy table for SVM and k- NN is given below. Table-2 is accuracy table for SVM and Table-3 is accuracy table for k-NN. Table-2 Accuracy (%) Precision Recall F- ratio Class 1 93.76 0.95 0.93 0.94 Class 2 95.37 0.85 0.86 0.86 Class 3 96.78 0.88 0.92 0.90 Class 4 99.20 0.98 0.98 0.98 Table-3 Accuracy (%) Precision Recall F- ratio Class 1 94.77 0.96 0.93 0.95 Class 2 90.58 0.85 0.93 0.89 Class 3 96.78 0.90 0.90 0.90 Class 4 94.7 0.98 0.91 0.98 4.3 Comparison of SVM and k-NN Classifier Table-4 Parameter SVM k-NN Accuracy 93.76 91.20 Sensitivity 92.25 91.40 Specificity 91.50 92 F-ratio 92 90.75 5. CONCLUSION The main aim of this paper is to recognize facial expressions from facial EMG signals. Features like root mean square (RMS), standard deviation (SD) and Mean average value (MAV) are used for classification using support vector machine (SVM) and k-nearest neighbor (k- NN). The best classification accuracy is 92.76% for cubic SVM to detect facial gesture using 80-20 training testing method. REFERENCES: [1] Mahyar Hamedi, Sh-Hussain Salleh, Kamarulafizam Ismail, Alias Mohd Noor, “Time-Frequency Facial Gestures EMG Analysis using Bilinear Distribution”, in IEEE International Conference on Signal and Image Processing Applications (ICSIPA), Oct 2015. [2] Ç. Topçu et al., "Entropy analysis of surface EMG for classification of face movements," 2015 23nd Signal Processing and Communications Applications Conference (SIU), Malatya, 2015, pp.1647- 1650.doi:10.1109/SIU.2015.7130167 [3] M. Hamedi, I. Mohammad Rezazadeh, and M. P. Firoozabadi, “Facial Gesture Recognition using Two- Channel Biosensors Configuration and Fuzzy Classifier: a Pilot Study,” in International Conference on Electrical, Control and Computer Engineering (INECCE), pp. 338–343, June 2011. [4] L.B.P. Ang ; E.F. Belen ; R.A. Bernardo ; E.R. Boongaling ; G.H. Briones ; J.B. Coronel, “Facial expression recognition through pattern analysis of facial muscle movements utilizing electromyogram sensors. ” in 2004 IEEE Region 10 Conference TENCON 2004, Nov 2004 [5] Mahyar Hamedi, Sh-Hussain Salleh, Chee-Ming Ting, Mehdi Astaraki and Alias Mohd Noor , “Robust Facial Expression Recognition for MuCI: A Comprehensive Neuromuscular Signal Analysis.” DOI 10.1109/TAFFC.2016. 2569098, IEEE Transactions on Affective Computing. [6] Meredith J. Cler, and Cara E. Stepp, “Discrete Versus Continuous Mapping of Facial Electromyography for Human–Machine Interface Control: Performance and Training Effects.”, IEEE Transaction on Neural Systems and Rehabilitation Engineering, VOL. 23, NO. 4, JULY 2015. [7 ]Vikram Kehri, Rahul Ingle and R. N. Awale “Analysis of Facial EMG Signal for Emotion Recognition Using Wavelet
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 06 | June 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 3534 Packet Transform and SVM,” International Conference on Machine Intelligence and Signal Processing (MISP 2017), IIT-Indore, India, 2017. (DOI: 10.1007/978-981-13-0923- 6_21) [8 ]Kehri V, Awale R. N. EMG Signal Analysis for Diagnosis of Muscular Dystrophy Using Wavelet Transform, SVM and ANN. Biomed Pharmacol J 2018;11(3). [9] Mimetic Interfaces: Facial Surface EMG Dataset 2015, 2016-05-19, Ville Rantanen (author), Ville Rantanen (distributor), Etsin research data finder,2019. urn:nbn:fi:csc-kata20160519232206569792 [10] Hend Ab. ELLaban , A. A. Ewees , “A Real-Time System for Facial Expression Recognition using Support Vector Machines and k-Nearest Neighbor Classifier”, in International Journal of Computer Applications (0975 – 8887) Volume 159 – No 8, February 2017 [11] Mahyar Hamedi, Sh-Hussain Salleh, Mehdi Astaraki, “EMG-based facial gesture recognition through versatile elliptic basis function neural network”, Hamedi et al. BioMedical Engineering OnLine 2013, 12:73 [12] Benjamin A. Kent, Zahi M. Kakish “Adaptive Synergy Control of a Dexterous Artificial Hand to Rotate Objects in Multiple Orientations Via EMG Facial Recognition”, 2014 IEEE International Conference on Robotics & Automation (ICRA) May 31 - June 7, 2014. Hong Kong, China