FACIAL EXPRESSION RECOGNITION USING ARTIFICIAL NEURAL NETWORKS

Size: px
Start display at page:

Download "FACIAL EXPRESSION RECOGNITION USING ARTIFICIAL NEURAL NETWORKS"

Transcription

1 FACIAL EXPRESSION RECOGNITION USING ARTIFICIAL NEURAL NETWORKS M.Gargesha and P.Kuchi EEE 511 Artificial Neural Computation Systems, Spring 2002 Department of Electrical Engineering Arizona State University Tempe, AZ Instructor: Dr. Kari Torkkola Abstract Analysis and recognition of human facial expressions from images and video forms the basis for understanding image content at a higher semantic level. Expression recognition forms the core task of intelligent systems based on human computer interaction (HCI). In this paper, we explore the use of Artificial Neural Networks in performing expression recognition. We analyze seven basic types of human expressions neutral, happy, sad, disgust, anger, surprise and fear. The expression recognition task is divided into two steps an automatic facial feature extraction step, and a classification step that employs Multi Layer Perceptrons and Radial Basis Function Networks. Simulation results demonstrate an expression classification accuracy of 73% on the JAFFE database (using MLP networks), which is significant for a system whose preliminary feature extraction step is automatic. 1. Introduction The ability of humans to recognize a wide variety of facial expressions is unparalleled. Researchers in the recent past have been trying to automate this task on a computer, employing a combination of image/ video processing techniques, along with machine learning techniques like ANNs. A brief survey of the existing techniques for facial expression analysis is presented next. Approaches for facial expression analysis from both static images [3,4,5,7,11] and video [1,2,9,10] have been proposed in the literature. Since temporal information yields crucial cues, it is relatively easier to analyze and recognize expressions from a temporal sequence of images (video). Ekman and Friesen [13] have produced a system for describing all visually distinguishable facial movements, called the Facial Action Coding System, which has been referred to in recent literature [6,8]. It is based on the enumeration of all Action Units on a face that cause facial movements. There are 46 such AUs in FACS that account for changes in facial expression. Researchers have used the FACS as the basis for their expression recognition research. For e.g., Lien et al [6], have developed a computer vision system that specifically recognizes individual AUs or AU combinations in the upper face. Ding et al [8] note that discovering rules that relate AUs to specific expressions associated with emotional states anger, fear, happiness, disgust, surprise and sadness, is difficult, since it cannot be defined by any regular mathematical function. This is where neural networks come into play. Most of the approaches employing neural networks for facial expression recognition, involve a preliminary facial feature extraction / tracking step that employs a wide variety of methods like Point Contour Detection Method [5], optical flow based tracking [2], etc. This is then followed by an expression classification step in which various features extracted from the faces (for e.g., simple geometric coordinates and Gabor Jet coefficients [14], etc.) are fed into Neural Network structures (MLPs, RBFs, Hopfield Neural Nets, SVMs, etc.). In this paper, we adopt a similar approach- we first automatically extract the facial features that are essential for discriminating between facial expressions. This is an improvement over the manual annotation method for Facial Characteristic Points (FCPs) described in [14]. Then, we feed geometric data derived from the contour points of the features for the given image and and its corresponding neutral image, along with Hu-moment invariants [12] describing the shapes of the facial features enclosed by the contour point, to MLP and RBF networks for classification. We assume the availability of neutral expression for a given face and classify facial expressions based on this neutral image. 1

2 between the left and right corners of the mouth as compared to the upper and lower lips. Also, eyes tend to be wide open and hence larger in size. Eyebrows tend to be drawn upwards as compared to their neutral position. Therefore, an accurate extraction of contours of these facial features would enable us to automatically recognize these expressions. Facial feature extraction is performed in two stages (1) Search region identification and adaptive thresholding with connected components analysis to obtain a tighter bounding box, and (2) an accurate contour fitting step involving active contour models (snakes). Figure 1. Sample images from JAFFE database We use a subset of the Japanese Female Facial Expression (JAFFE) Database [15] to conduct our experiments. The database has 213 images in all, of which we use 115 images for our experiments. The images feature 10 different subjects with 7 different expression categories neutral, happy, sad, disgust, anger, surprise and fear. Some sample images from the database are shown in Figure 1.Simulation results suggest that MLPs (73%) perform better than RBFs (65%). The reason for the moderate performance is the automatic feature extraction step, which currently extracts only the positions of the eyes, eyebrows and mouth. However, by extracting other feature points on the face automatically, we can improve this performance. The rest of the paper is organized as follows. We describe the facial feature extraction step in detail in section 2. Section 3 discusses the data model to be used to train the ANNs considered for classification purposes. Simulation results are provided in section 4, which also describes the optimal structure of MLPs and RBFs for solving the given problem and compares their performance for expression classification. Finally section 5 concludes the paper and discusses future work. 2. Facial Feature Extraction The first step to be performed in expression recognition is localization of facial feature points whose position and deformation are characteristic of each basic expression. We analyze seven basic types of human expressions neutral, happy, sad, disgust, anger, surprise and fear. For example, happiness is characterized by a larger separation between the left and right corners of the mouth as compared to the upper and lower lips. Eyebrows and eyes tend to be relaxed for a happy expression. On the other hand, surprise/ fear is generally characterized by the mouth being wide open, which means a smaller separation 2.1. Search region identification We studied a few sample images from the JAFFE database to derive some heuristics to isolate search regions for the five facial features left and right eyebrows, left and right eyes, and mouth. Figure 2(a) shows a sample image, and figure 2(b) shows the search areas for the facial features. Once the search regions were identified in terms of bounding boxes around them, a morphological edge intensity image [5] was obtained by subtracting an eroded image from a dilated image of the search region. A threshold was adaptively chosen based on intensity distribution in the gradient image and was applied to it. The resulting binary image was analyzed for the connected component with the largest area. A tighter bounding box was obtained for the facial feature from this largest connected component. Figure 2(c) shows the sample image with a tighter bounding box around the facial features Contour Fitting After an accurate bounding box has been obtained for a facial feature, we employ an adaptive contour fitting technique that uses an Active Contour Model (or a snake ) based on Gradient Vector Flow[16], which is an energy minimizing spline. We initialize a contour by a set of control points and define an energy function. The objective of the contour fitting process is to minimize the energy function, which is achieved by iteratively moving the control points closer to regions in the image that contain edges and maxima and minima in intensity, curvature, etc. After a finite number of iterations, the snake attains a minimum energy configuration and either shrinks or spreads out to cover the contour (depending on the initial shape). The final shape of the contour is defined by a set of control points, which can be obtained by subsampling the snake control points. These points give us an accurate estimate of the various Facial Characteristic Points (FCPs) [14] that are needed for facial expression 2

3 (a) Figure 3. Image with detected contour points (b) compared them with that of a neutral image of the same person. We could immediately note that each expression had a characteristic displacement of these points as compared with the neutral image. Also, the inter-feature distances were characteristic of each expression when compared with those of the neutral image. This motivated us to feed in the following data into the neural network (i) The geometric coordinates of the FCPs for the image carrying an expression and the corresponding neutral image (ii) Euclidean distances between the corresponding contour points of the given image and the neutral image (iii) Differences in inter-feature distances computed for the given and neutral image Hu-Moment Invariants (c) Figure 2. (a) Sample image (b) Search regions for facial features (c) Tighter bounding box for facial features recognition. Figure 3 shows the contour points on the eyes, eyebrows and mouth, for the sample image in Figure 2(a). 3. Data Model for the ANN The next problem to be addressed is the selection of the right kind of data to be fed into the MLP or RBFN for training. We analyzed the geometric coordinates of the contour points of the features for a given image and In addition to the geometric data, we explored the possibility of utilizing shape information conveyed by the contour points, to train the MLP / RBF. Moments have been used to code shape information. They have been used very effectively in optical character recognition. During any expression change, there is a change in the shape of the features in the face. Since, moments describe shape information, we felt we could use moments for expression recognition. In this regard, we compute the Hu-moment invariants [12]. Hu moments are invariant to scale, rotation and translation. We use the first 3 out of 7 invariant moments as shape descriptors for each of the 5 facial features, for both the given and neutral images. We do away with the other 4 moments because then the neural network would learn the specifics of the facial feature shape associated with a person, not the expression. We feed these moments along with their differences into the MLP / RBF. 3

4 3.2. Dimensions of the data The feature vector for training the RBF / MLP had a dimension of 395, which consisted of the following 200 geometric coordinates, 50 Euclidean distances between corresponding feature points in given and neutral images, 100 differences in inter-feature distances, and 45 Humoment values. The 45 Hu moment values are 15 for the expressed face (3 for each feature), 15 for the neutral image and 15 differences between the moments of the neutral face and the expressed face. 4. Test Results The JAFFE database [15] consists of 213 images of which we have used a subset of 115 images consisting of all 7 expressions from 10 subjects (repetitions in subjects and expressions) from which data is extracted automatically. 105 images were set aside for training and 10 images were set aside for testing/ cross-validation. We deviated slightly from the classical method of model selection by cross validation, because we use the same sizes of training / test sets for both model selection and final performance evaluation Model Selection for MLP network An MLP with an input layer, a single hidden layer and an output layer was used for training. For selecting the optimal structure (number of hidden layers and weight decay parameter), the 115 images were randomly partitioned into a training set of 105 images and a crossvalidation set of 10 images. The number of hidden layers and the weight decay parameter was varied for the MLP. The result of this model selection is depicted in Figure 4. After the optimal network structure was selected for the MLP, 10 random partitions of the 115 images into 105 training images and 10 test images were performed. We averaged the network classification performance over these 10 trials. We note that model selection was performed using only 300 epochs because the error was driven to a sufficiently small value by then. Once the optimal parameters were determined, we used 500 epochs of training while evaluating network performance. Hence, the mean classification rate shown in Table 1 below (73%) is significantly higher than that obtained during model selection (62.5%). NumberHidden = [ ] decay = [ ] Best classification performance = 62.5% Ideal parameter set : NumberHidden = 200, decay = training cycles with scg algorithm. Figure 4. Model Selection for MLP Trial Correct % Correct Classifications 1 8/ / / / / / / / / /10 80 Mean classification rate = 73% Table 1. Classification performance of MLP 4.2. Model Selection for RBF network An RBF network was used with Gaussian basis functions and linear output activation function. For selecting the optimal structure (number of basis functions and regularization parameter), the 115 images were randomly partitioned into a training set of 105 images and a crossvalidation set of 10 images. The number of basis functions (hidden neurons) and regularization parameter was varied for the RBF. The following performance was observed (as shown in Figure 5). 4

5 After the optimal network structure was selected for the RBF, 10 random partitions of the 115 images into 105 training images and 10 test images were performed. We averaged the network classification performance over these 10 trials. A mean classification accuracy of 65% was obtained for the RBFN, as shown in Table 2. many cases, there are only very subtle variations in the actual geometric and shape data fed into the neural network. The classes have a high degree of overlap in the output space. Hence, the RBF network using Gaussian basis functions is not able to learn as well as an MLP with the same (comparable) number of hidden layer neurons. 5. Conclusions and Future Work An automatic facial expression recognition system was developed that consisted of two stages a feature extraction engine to determine the contours of the facial feature points that are crucial for discriminating between expressions, and an Artificial Neural Network that trains on specific features of the contour points to perform expression classification. We tested the system on the JAFFE database with both MLP and RBF networks. Simulation results demonstrate show that the MLP (73 % classification accuracy) performs better than the RBF (65 % classification accuracy). number_hidden =[ ] lambda = [ ] Best classification performance =62% Ideal parameter set: NumberHidden = 300, regularization = epochs of training Fig 5. Model Selection for RBF Trial Correct % correct Classifications 1 8/ / / / / / / / / /10 60 Mean classification rate = 65% Table 2. Classification performance of RBFN From the simulation results, we can see that the MLP networks, on the whole, perform better than RBF networks. Let us analyze the reason for this behavior. In The reason for the moderate performance is the automatic feature extraction step, which currently extracts only the positions of the eyes, eyebrows and mouth. However, by extracting other feature points on the face automatically, we can improve this performance. The performance results can also be improved by exploring more discriminatory and effective image features to the extracted from the facial images. We also need to improve the accuracy of the contour estimation technique, because this is a crucial step for accurate facial expression recognition. Finally, a better training strategy and a better choice of network structure (for e.g., MLP with multiple hidden layers) may yield better classification results. We will explore these aspects as part of our future work. References [1] Essa, I.A.; Pentland, A.P., Facial expression recognition using a dynamic model and motion energy, Fifth International Conference on Computer Vision, Page(s): [2] Essa, I.A.; Pentland, A.P., Coding, analysis, interpretation, and recognition of facial expressions, IEEE Transactions on Pattern Analysis and Machine Intelligence, Volume:19,Issue:7,July 1997, Page(s): [3] Yoneyama, M.; Ohtake, A.; Iwano, Y.; Shirai, K., Facial expressions recognition using discrete Hopfield neural networks, Proceedings., International Conference 5

6 on Image Processing, Volume: 1, 1997 Page(s): [4] Pantic, M.; Rothkrantz, L.J.M., An expert system for multiple emotional classification of facial expressions, Proceedings, 11th IEEE International Conference on Tools with Artificial Intelligence, 1999, Page(s): [5] Jyh-Yeong Chang; Jia-Lin Chen, A facial expression recognition system using neural networks, IJCNN '99. International Joint Conference on Neural Networks, 1999, Volume:5, 1999 Page(s): [6] Lien, J.J.; Kanade, T.; Cohn, J.F.; Ching-Chung Li, Automated facial expression recognition based on FACS action units, Proceedings, Third IEEE International Conference on Automatic Face and Gesture Recognition, Page(s): [7] Kobayashi, H.; Hara, F., Recognition of Six basic facial expression and their strength by neural network, Proceedings, IEEE International Workshop on Robot and Human Communication,1992, Page(s): [13] P.Ekman and W.V. Friesen, Facial Action Coding System, Palo Alto, Calif.: Consulting Psychologists Press Inc., [14] Zhengyou Zhang; Lyons, M.; Schuster, M.; Akamatsu, S., Comparison between geometry-based and Gabor-wavelets-based facial expression recognition using multi-layer perceptron, Proceedings. Third IEEE International Conference on Automatic Face and Gesture Recognition, 1998, Page(s): [15] JAFFE database: The paper which describes the database: Michael J. Lyons, Shigeru Akamatsu, Miyuki Kamachi & Jiro Gyoba, Coding Facial Expressions with Gabor Wavelets, Proceedings,Third IEEE International Conference on Automatic Face and Gesture Recognition,April , Nara Japan, IEEE Computer Society, pp [16] Chenyang Xu and Jerry L. Prince, Snakes, Shapes, and Gradient Vector Flow,Image Analysis and Communications Laboratory,Department of Electrical and Computer Engineering,The Johns Hopkins University,Baltimore, MD. [8] Ding, J.; Shimaniura, M.; Kobayashi, H.; Nakamura, T. Neural Network Structures For Expression Recognition, IJCNN '93-Nagoya. Proceedings of 1993 International Joint Conference on Neural Networks,1993.,Volume:2, Page(s): [9] Ira Cohen, Nicu Sebe, Larry Chen, Ashutosh Garg, Thomas S. Huang, Facial Expression Recognition from Video Sequences: Temporal and Static Modelling, Beckman Institute for Advanced Science and Technology, University of Illinois at Urbana-Champaign [10] Rosenblum, M.; Yacoob, Y.; Davis, L.S., Human expression recognition from motion using a radial basis function network architecture, IEEE Transactions on Neural Networks, Volume: 7 Issue: 5, Sept. 1996, Page(s): [11] Iwano, Y.; Yoneyama, M.; Shirai, K., Recognition of facial expressions using associative memory, Proceedings, IEEE Digital Signal Processing Workshop 1996., Page(s): [12] M.-K. Hu, Visual pattern Recognition by moment invariants, IRE Trans. Information Theory, vol IT-8, pp , Feb

Classification of Upper and Lower Face Action Units and Facial Expressions using Hybrid Tracking System and Probabilistic Neural Networks

Classification of Upper and Lower Face Action Units and Facial Expressions using Hybrid Tracking System and Probabilistic Neural Networks Classification of Upper and Lower Face Action Units and Facial Expressions using Hybrid Tracking System and Probabilistic Neural Networks HADI SEYEDARABI*, WON-SOOK LEE**, ALI AGHAGOLZADEH* AND SOHRAB

More information

Facial Emotion Recognition using Eye

Facial Emotion Recognition using Eye Facial Emotion Recognition using Eye Vishnu Priya R 1 and Muralidhar A 2 1 School of Computing Science and Engineering, VIT Chennai Campus, Tamil Nadu, India. Orcid: 0000-0002-2016-0066 2 School of Computing

More information

Evaluation of Expression Recognition Techniques

Evaluation of Expression Recognition Techniques Evaluation of Expression Recognition Techniques Ira Cohen 1, Nicu Sebe 2,3, Yafei Sun 3, Michael S. Lew 3, Thomas S. Huang 1 1 Beckman Institute, University of Illinois at Urbana-Champaign, USA 2 Faculty

More information

Facial Expressions Recognition Using Eigenspaces

Facial Expressions Recognition Using Eigenspaces Journal of Computer Science 8 (10): 1674-1679, 2012 ISSN 1549-3636 2012 Science Publications Facial Expressions Recognition Using Eigenspaces 1 Senthil Ragavan Valayapalayam Kittusamy and 2 Venkatesh Chakrapani

More information

Recognition of facial expressions in presence of partial occlusion

Recognition of facial expressions in presence of partial occlusion Recognition of facial expressions in presence of partial occlusion Ioan Buciu, 1 Irene Kotsia 1 and Ioannis Pitas 1 AIIA Laboratory Computer Vision and Image Processing Group Department of Informatics

More information

A Simple Approach to Facial Expression Recognition

A Simple Approach to Facial Expression Recognition Proceedings of the 2007 WSEAS International Conference on Computer Engineering and Applications, Gold Coast, Australia, January 17-19, 2007 456 A Simple Approach to Facial Expression Recognition MU-CHUN

More information

Real time facial expression recognition from image sequences using Support Vector Machines

Real time facial expression recognition from image sequences using Support Vector Machines Real time facial expression recognition from image sequences using Support Vector Machines I. Kotsia a and I. Pitas a a Aristotle University of Thessaloniki, Department of Informatics, Box 451, 54124 Thessaloniki,

More information

A Facial Expression Classification using Histogram Based Method

A Facial Expression Classification using Histogram Based Method 2012 4th International Conference on Signal Processing Systems (ICSPS 2012) IPCSIT vol. 58 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V58.1 A Facial Expression Classification using

More information

Classification of Face Images for Gender, Age, Facial Expression, and Identity 1

Classification of Face Images for Gender, Age, Facial Expression, and Identity 1 Proc. Int. Conf. on Artificial Neural Networks (ICANN 05), Warsaw, LNCS 3696, vol. I, pp. 569-574, Springer Verlag 2005 Classification of Face Images for Gender, Age, Facial Expression, and Identity 1

More information

Evaluation of Gabor-Wavelet-Based Facial Action Unit Recognition in Image Sequences of Increasing Complexity

Evaluation of Gabor-Wavelet-Based Facial Action Unit Recognition in Image Sequences of Increasing Complexity Evaluation of Gabor-Wavelet-Based Facial Action Unit Recognition in Image Sequences of Increasing Complexity Ying-li Tian 1 Takeo Kanade 2 and Jeffrey F. Cohn 2,3 1 IBM T. J. Watson Research Center, PO

More information

C.R VIMALCHAND ABSTRACT

C.R VIMALCHAND ABSTRACT International Journal of Scientific & Engineering Research, Volume 5, Issue 3, March-2014 1173 ANALYSIS OF FACE RECOGNITION SYSTEM WITH FACIAL EXPRESSION USING CONVOLUTIONAL NEURAL NETWORK AND EXTRACTED

More information

Facial expression recognition using shape and texture information

Facial expression recognition using shape and texture information 1 Facial expression recognition using shape and texture information I. Kotsia 1 and I. Pitas 1 Aristotle University of Thessaloniki pitas@aiia.csd.auth.gr Department of Informatics Box 451 54124 Thessaloniki,

More information

Boosting Coded Dynamic Features for Facial Action Units and Facial Expression Recognition

Boosting Coded Dynamic Features for Facial Action Units and Facial Expression Recognition Boosting Coded Dynamic Features for Facial Action Units and Facial Expression Recognition Peng Yang Qingshan Liu,2 Dimitris N. Metaxas Computer Science Department, Rutgers University Frelinghuysen Road,

More information

Facial-component-based Bag of Words and PHOG Descriptor for Facial Expression Recognition

Facial-component-based Bag of Words and PHOG Descriptor for Facial Expression Recognition Proceedings of the 2009 IEEE International Conference on Systems, Man, and Cybernetics San Antonio, TX, USA - October 2009 Facial-component-based Bag of Words and PHOG Descriptor for Facial Expression

More information

Emotion Recognition With Facial Expressions Classification From Geometric Facial Features

Emotion Recognition With Facial Expressions Classification From Geometric Facial Features Reviewed Paper Volume 2 Issue 12 August 2015 International Journal of Informative & Futuristic Research ISSN (Online): 2347-1697 Emotion Recognition With Facial Expressions Classification From Geometric

More information

IBM Research Report. Automatic Neutral Face Detection Using Location and Shape Features

IBM Research Report. Automatic Neutral Face Detection Using Location and Shape Features RC 22259 (W0111-073) November 27, 2001 Computer Science IBM Research Report Automatic Neutral Face Detection Using Location and Shape Features Ying-Li Tian, Rudolf M. Bolle IBM Research Division Thomas

More information

An Approach for Face Recognition System Using Convolutional Neural Network and Extracted Geometric Features

An Approach for Face Recognition System Using Convolutional Neural Network and Extracted Geometric Features An Approach for Face Recognition System Using Convolutional Neural Network and Extracted Geometric Features C.R Vimalchand Research Scholar, Associate Professor, Department of Computer Science, S.N.R Sons

More information

Enhanced Facial Expression Recognition using 2DPCA Principal component Analysis and Gabor Wavelets.

Enhanced Facial Expression Recognition using 2DPCA Principal component Analysis and Gabor Wavelets. Enhanced Facial Expression Recognition using 2DPCA Principal component Analysis and Gabor Wavelets. Zermi.Narima(1), Saaidia.Mohammed(2), (1)Laboratory of Automatic and Signals Annaba (LASA), Department

More information

A Modular Approach to Facial Expression Recognition

A Modular Approach to Facial Expression Recognition A Modular Approach to Facial Expression Recognition Michal Sindlar Cognitive Artificial Intelligence, Utrecht University, Heidelberglaan 6, 3584 CD, Utrecht Marco Wiering Intelligent Systems Group, Utrecht

More information

3D Facial Action Units Recognition for Emotional Expression

3D Facial Action Units Recognition for Emotional Expression 3D Facial Action Units Recognition for Emotional Expression Norhaida Hussain 1, Hamimah Ujir, Irwandi Hipiny and Jacey-Lynn Minoi 1 Department of Information Technology and Communication, Politeknik Kuching,

More information

Facial Expression Recognition using Principal Component Analysis with Singular Value Decomposition

Facial Expression Recognition using Principal Component Analysis with Singular Value Decomposition ISSN: 2321-7782 (Online) Volume 1, Issue 6, November 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com Facial

More information

Automatic Facial Expression Recognition based on the Salient Facial Patches

Automatic Facial Expression Recognition based on the Salient Facial Patches IJSTE - International Journal of Science Technology & Engineering Volume 2 Issue 11 May 2016 ISSN (online): 2349-784X Automatic Facial Expression Recognition based on the Salient Facial Patches Rejila.

More information

HUMAN S FACIAL PARTS EXTRACTION TO RECOGNIZE FACIAL EXPRESSION

HUMAN S FACIAL PARTS EXTRACTION TO RECOGNIZE FACIAL EXPRESSION HUMAN S FACIAL PARTS EXTRACTION TO RECOGNIZE FACIAL EXPRESSION Dipankar Das Department of Information and Communication Engineering, University of Rajshahi, Rajshahi-6205, Bangladesh ABSTRACT Real-time

More information

Action Unit Based Facial Expression Recognition Using Deep Learning

Action Unit Based Facial Expression Recognition Using Deep Learning Action Unit Based Facial Expression Recognition Using Deep Learning Salah Al-Darraji 1, Karsten Berns 1, and Aleksandar Rodić 2 1 Robotics Research Lab, Department of Computer Science, University of Kaiserslautern,

More information

Automatic Facial Expression Recognition Using Neural Network

Automatic Facial Expression Recognition Using Neural Network Automatic Facial Epression Recognition Using Neural Network Behrang Yousef Asr Langeroodi, Kaveh Kia Kojouri Electrical Engineering Department, Guilan Universit, Rasht, Guilan, IRAN Electronic Engineering

More information

Robust Facial Expression Classification Using Shape and Appearance Features

Robust Facial Expression Classification Using Shape and Appearance Features Robust Facial Expression Classification Using Shape and Appearance Features S L Happy and Aurobinda Routray Department of Electrical Engineering, Indian Institute of Technology Kharagpur, India Abstract

More information

Automatic Facial Expression Recognition Based on Hybrid Approach

Automatic Facial Expression Recognition Based on Hybrid Approach Automatic Facial Expression Recognition Based on Hybrid Approach Ali K. K. Bermani College of Engineering, Babylon University, Babil, Iraq Atef Z. Ghalwash Computer Science Department, Faculty of Computers

More information

Facial Expression Recognition based on Affine Moment Invariants

Facial Expression Recognition based on Affine Moment Invariants IJCSI International Journal o Computer Science Issues, Vol. 9, Issue 6, No, November 0 ISSN (Online): 694-084 www.ijcsi.org 388 Facial Expression Recognition based on Aine Moment Invariants Renuka Londhe

More information

Evaluation of Face Resolution for Expression Analysis

Evaluation of Face Resolution for Expression Analysis Evaluation of Face Resolution for Expression Analysis Ying-li Tian IBM T. J. Watson Research Center, PO Box 704, Yorktown Heights, NY 10598 Email: yltian@us.ibm.com Abstract Most automatic facial expression

More information

Automatic Detecting Neutral Face for Face Authentication and Facial Expression Analysis

Automatic Detecting Neutral Face for Face Authentication and Facial Expression Analysis From: AAAI Technical Report SS-03-08. Compilation copyright 2003, AAAI (www.aaai.org). All rights reserved. Automatic Detecting Neutral Face for Face Authentication and Facial Expression Analysis Ying-li

More information

LBP Based Facial Expression Recognition Using k-nn Classifier

LBP Based Facial Expression Recognition Using k-nn Classifier ISSN 2395-1621 LBP Based Facial Expression Recognition Using k-nn Classifier #1 Chethan Singh. A, #2 Gowtham. N, #3 John Freddy. M, #4 Kashinath. N, #5 Mrs. Vijayalakshmi. G.V 1 chethan.singh1994@gmail.com

More information

Human Face Classification using Genetic Algorithm

Human Face Classification using Genetic Algorithm Human Face Classification using Genetic Algorithm Tania Akter Setu Dept. of Computer Science and Engineering Jatiya Kabi Kazi Nazrul Islam University Trishal, Mymenshing, Bangladesh Dr. Md. Mijanur Rahman

More information

Facial Expression Classification Using RBF AND Back-Propagation Neural Networks

Facial Expression Classification Using RBF AND Back-Propagation Neural Networks Facial Expression Classification Using RBF AND Back-Propagation Neural Networks R.Q.Feitosa 1,2, M.M.B.Vellasco 1,2, D.T.Oliveira 1, D.V.Andrade 1, S.A.R.S.Maffra 1 1 Catholic University of Rio de Janeiro,

More information

Facial Expression Recognition Using Non-negative Matrix Factorization

Facial Expression Recognition Using Non-negative Matrix Factorization Facial Expression Recognition Using Non-negative Matrix Factorization Symeon Nikitidis, Anastasios Tefas and Ioannis Pitas Artificial Intelligence & Information Analysis Lab Department of Informatics Aristotle,

More information

Research on Emotion Recognition for Facial Expression Images Based on Hidden Markov Model

Research on Emotion Recognition for Facial Expression Images Based on Hidden Markov Model e-issn: 2349-9745 p-issn: 2393-8161 Scientific Journal Impact Factor (SJIF): 1.711 International Journal of Modern Trends in Engineering and Research www.ijmter.com Research on Emotion Recognition for

More information

A Real Time Facial Expression Classification System Using Local Binary Patterns

A Real Time Facial Expression Classification System Using Local Binary Patterns A Real Time Facial Expression Classification System Using Local Binary Patterns S L Happy, Anjith George, and Aurobinda Routray Department of Electrical Engineering, IIT Kharagpur, India Abstract Facial

More information

SPARSE RECONSTRUCTION OF FACIAL EXPRESSIONS WITH LOCALIZED GABOR MOMENTS. André Mourão, Pedro Borges, Nuno Correia, João Magalhães

SPARSE RECONSTRUCTION OF FACIAL EXPRESSIONS WITH LOCALIZED GABOR MOMENTS. André Mourão, Pedro Borges, Nuno Correia, João Magalhães SPARSE RECONSTRUCTION OF FACIAL EXPRESSIONS WITH LOCALIZED GABOR MOMENTS André Mourão, Pedro Borges, Nuno Correia, João Magalhães Departamento de Informática, Faculdade de Ciências e Tecnologia, Universidade

More information

Computer Animation Visualization. Lecture 5. Facial animation

Computer Animation Visualization. Lecture 5. Facial animation Computer Animation Visualization Lecture 5 Facial animation Taku Komura Facial Animation The face is deformable Need to decide how all the vertices on the surface shall move Manually create them Muscle-based

More information

Feature selection for facial expression recognition

Feature selection for facial expression recognition University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2010 Feature selection for facial expression recognition Abdesselam Bouzerdoum

More information

Facial Action Detection from Dual-View Static Face Images

Facial Action Detection from Dual-View Static Face Images Facial Action Detection from Dual-View Static Face Images Maja Pantic and Leon Rothkrantz Delft University of Technology Electrical Engineering, Mathematics and Computer Science Mekelweg 4, 2628 CD Delft,

More information

Convolutional Neural Networks for Facial Expression Recognition

Convolutional Neural Networks for Facial Expression Recognition Convolutional Neural Networks for Facial Expression Recognition Shima Alizadeh Stanford University shima86@stanford.edu Azar Fazel Stanford University azarf@stanford.edu Abstract In this project, we have

More information

EMOTIONAL BASED FACIAL EXPRESSION RECOGNITION USING SUPPORT VECTOR MACHINE

EMOTIONAL BASED FACIAL EXPRESSION RECOGNITION USING SUPPORT VECTOR MACHINE EMOTIONAL BASED FACIAL EXPRESSION RECOGNITION USING SUPPORT VECTOR MACHINE V. Sathya 1 T.Chakravarthy 2 1 Research Scholar, A.V.V.M.Sri Pushpam College,Poondi,Tamilnadu,India. 2 Associate Professor, Dept.of

More information

Dynamic Facial Expression Recognition Using A Bayesian Temporal Manifold Model

Dynamic Facial Expression Recognition Using A Bayesian Temporal Manifold Model Dynamic Facial Expression Recognition Using A Bayesian Temporal Manifold Model Caifeng Shan, Shaogang Gong, and Peter W. McOwan Department of Computer Science Queen Mary University of London Mile End Road,

More information

Emotion Detection System using Facial Action Coding System

Emotion Detection System using Facial Action Coding System International Journal of Engineering and Technical Research (IJETR) Emotion Detection System using Facial Action Coding System Vedant Chauhan, Yash Agrawal, Vinay Bhutada Abstract Behaviors, poses, actions,

More information

Facial Expression Detection Using Implemented (PCA) Algorithm

Facial Expression Detection Using Implemented (PCA) Algorithm Facial Expression Detection Using Implemented (PCA) Algorithm Dileep Gautam (M.Tech Cse) Iftm University Moradabad Up India Abstract: Facial expression plays very important role in the communication with

More information

Automated Facial Expression Recognition Based on FACS Action Units

Automated Facial Expression Recognition Based on FACS Action Units Automated Facial Expression Recognition Based on FACS Action Units 1,2 James J. Lien 1 Department of Electrical Engineering University of Pittsburgh Pittsburgh, PA 15260 jjlien@cs.cmu.edu 2 Takeo Kanade

More information

Feature-Point Tracking by Optical Flow Discriminates Subtle Differences in Facial Expression

Feature-Point Tracking by Optical Flow Discriminates Subtle Differences in Facial Expression Feature-Point Tracking by Optical Flow Discriminates Subtle Differences in Facial Expression Jeffrey F. Cohn Department of Psychology University of Pittsburgh 4015 O'Hara Street, Pittsburgh PA 15260 jeffcohn@vms.cis.pitt.edu

More information

A Novel LDA and HMM-based technique for Emotion Recognition from Facial Expressions

A Novel LDA and HMM-based technique for Emotion Recognition from Facial Expressions A Novel LDA and HMM-based technique for Emotion Recognition from Facial Expressions Akhil Bansal, Santanu Chaudhary, Sumantra Dutta Roy Indian Institute of Technology, Delhi, India akhil.engg86@gmail.com,

More information

International Journal of Computer Techniques Volume 4 Issue 1, Jan Feb 2017

International Journal of Computer Techniques Volume 4 Issue 1, Jan Feb 2017 RESEARCH ARTICLE OPEN ACCESS Facial expression recognition based on completed LBP Zicheng Lin 1, Yuanliang Huang 2 1 (College of Science and Engineering, Jinan University, Guangzhou, PR China) 2 (Institute

More information

Facial Expression Recognition using a Dynamic Model and Motion Energy

Facial Expression Recognition using a Dynamic Model and Motion Energy M.I.T Media Laboratory Perceptual Computing Section Technical Report No. Appears: International Conference on Computer Vision 9, Cambridge, MA, June -, 99 Facial Expression Recognition using a Dynamic

More information

Person-Independent Facial Expression Recognition Based on Compound Local Binary Pattern (CLBP)

Person-Independent Facial Expression Recognition Based on Compound Local Binary Pattern (CLBP) The International Arab Journal of Information Technology, Vol. 11, No. 2, March 2014 195 Person-Independent Facial Expression Recognition Based on Compound Local Binary Pattern (CLBP) Faisal Ahmed 1, Hossain

More information

Multi-view Facial Expression Recognition Analysis with Generic Sparse Coding Feature

Multi-view Facial Expression Recognition Analysis with Generic Sparse Coding Feature 0/19.. Multi-view Facial Expression Recognition Analysis with Generic Sparse Coding Feature Usman Tariq, Jianchao Yang, Thomas S. Huang Department of Electrical and Computer Engineering Beckman Institute

More information

Facial Feature Extraction Based On FPD and GLCM Algorithms

Facial Feature Extraction Based On FPD and GLCM Algorithms Facial Feature Extraction Based On FPD and GLCM Algorithms Dr. S. Vijayarani 1, S. Priyatharsini 2 Assistant Professor, Department of Computer Science, School of Computer Science and Engineering, Bharathiar

More information

INTERNATIONAL JOURNAL FOR ADVANCE RESEARCH IN ENGINEERING AND TECHNOLOGY WINGS TO YOUR THOUGHTS.. XBeats-An Emotion Based Music Player

INTERNATIONAL JOURNAL FOR ADVANCE RESEARCH IN ENGINEERING AND TECHNOLOGY WINGS TO YOUR THOUGHTS.. XBeats-An Emotion Based Music Player XBeats-An Emotion Based Music Player Sayali Chavan 1, Ekta Malkan 2, Dipali Bhatt 3, Prakash H. Paranjape 4 1 U.G. Student, Dept. of Computer Engineering, sayalichavan17@gmail.com 2 U.G. Student, Dept.

More information

COMPOUND LOCAL BINARY PATTERN (CLBP) FOR PERSON-INDEPENDENT FACIAL EXPRESSION RECOGNITION

COMPOUND LOCAL BINARY PATTERN (CLBP) FOR PERSON-INDEPENDENT FACIAL EXPRESSION RECOGNITION COMPOUND LOCAL BINARY PATTERN (CLBP) FOR PERSON-INDEPENDENT FACIAL EXPRESSION RECOGNITION Priyanka Rani 1, Dr. Deepak Garg 2 1,2 Department of Electronics and Communication, ABES Engineering College, Ghaziabad

More information

Facial Expressions Recognition from Image Sequences

Facial Expressions Recognition from Image Sequences Facial Expressions Recognition from Image Sequences Zahid Riaz, Christoph Mayer, Michael Beetz and Bernd Radig Department of Informatics, Technische Universität München, D-85748 Garching, Germany Abstract.

More information

Computers and Mathematics with Applications. An embedded system for real-time facial expression recognition based on the extension theory

Computers and Mathematics with Applications. An embedded system for real-time facial expression recognition based on the extension theory Computers and Mathematics with Applications 61 (2011) 2101 2106 Contents lists available at ScienceDirect Computers and Mathematics with Applications journal homepage: www.elsevier.com/locate/camwa An

More information

Edge Detection for Facial Expression Recognition

Edge Detection for Facial Expression Recognition Edge Detection for Facial Expression Recognition Jesús García-Ramírez, Ivan Olmos-Pineda, J. Arturo Olvera-López, Manuel Martín Ortíz Faculty of Computer Science, Benemérita Universidad Autónoma de Puebla,

More information

Model Based Analysis of Face Images for Facial Feature Extraction

Model Based Analysis of Face Images for Facial Feature Extraction Model Based Analysis of Face Images for Facial Feature Extraction Zahid Riaz, Christoph Mayer, Michael Beetz, and Bernd Radig Technische Universität München, Boltzmannstr. 3, 85748 Garching, Germany {riaz,mayerc,beetz,radig}@in.tum.de

More information

MULTICLASS SUPPORT VECTOR MACHINES AND METRIC MULTIDIMENSIONAL SCALING FOR FACIAL EXPRESSION RECOGNITION

MULTICLASS SUPPORT VECTOR MACHINES AND METRIC MULTIDIMENSIONAL SCALING FOR FACIAL EXPRESSION RECOGNITION MULTICLASS SUPPORT VECTOR MACHINES AND METRIC MULTIDIMENSIONAL SCALING FOR FACIAL EXPRESSION RECOGNITION Irene Kotsia, Stefanos Zafeiriou, Nikolaos Nikolaidis and Ioannis Pitas Aristotle University of

More information

DA Progress report 2 Multi-view facial expression. classification Nikolas Hesse

DA Progress report 2 Multi-view facial expression. classification Nikolas Hesse DA Progress report 2 Multi-view facial expression classification 16.12.2010 Nikolas Hesse Motivation Facial expressions (FE) play an important role in interpersonal communication FE recognition can help

More information

Face Recognition using Convolutional Neural Network and Simple Logistic Classifier

Face Recognition using Convolutional Neural Network and Simple Logistic Classifier Face Recognition using Convolutional Neural Network and Simple Logistic Classifier Hurieh Khalajzadeh, Mohammad Mansouri and Mohammad Teshnehlab Intelligent Systems Laboratory (ISLAB), Faculty of Electrical

More information

Facial Expression Recognition Based on Local Directional Pattern Using SVM Decision-level Fusion

Facial Expression Recognition Based on Local Directional Pattern Using SVM Decision-level Fusion Facial Expression Recognition Based on Local Directional Pattern Using SVM Decision-level Fusion Juxiang Zhou 1, Tianwei Xu 2, Jianhou Gan 1 1. Key Laboratory of Education Informalization for Nationalities,

More information

Robust facial action recognition from real-time 3D streams

Robust facial action recognition from real-time 3D streams Robust facial action recognition from real-time 3D streams Filareti Tsalakanidou and Sotiris Malassiotis Informatics and Telematics Institute, Centre for Research and Technology Hellas 6th km Charilaou-Thermi

More information

A Facial Expression Imitation System in Human Robot Interaction

A Facial Expression Imitation System in Human Robot Interaction A Facial Expression Imitation System in Human Robot Interaction S. S. Ge, C. Wang, C. C. Hang Abstract In this paper, we propose an interactive system for reconstructing human facial expression. In the

More information

Facial expression recognition based on two-step feature histogram optimization Ling Gana, Sisi Sib

Facial expression recognition based on two-step feature histogram optimization Ling Gana, Sisi Sib 3rd International Conference on Materials Engineering, Manufacturing Technology and Control (ICMEMTC 201) Facial expression recognition based on two-step feature histogram optimization Ling Gana, Sisi

More information

Exploring Facial Expressions with Compositional Features

Exploring Facial Expressions with Compositional Features Exploring Facial Expressions with Compositional Features Peng Yang Qingshan Liu Dimitris N. Metaxas Computer Science Department, Rutgers University Frelinghuysen Road, Piscataway, NJ 88, USA peyang@cs.rutgers.edu,

More information

NOWADAYS, more and more robots are designed not

NOWADAYS, more and more robots are designed not 1 Mimic Expression System for icub Ana Cláudia Sarmento Ramos Marques Institute for Systems and Robotics Institute Superior Técnico Av. Rovisco Pais, 1; Lisbon, Portugal claudiamarques@tecnico.ulisboa.pt

More information

Facial expression recognition from video sequences: temporal and static modeling

Facial expression recognition from video sequences: temporal and static modeling Computer Vision and Image Understanding 91 (2003) 160 187 www.elsevier.com/locate/cviu Facial expression recognition from video sequences: temporal and static modeling Ira Cohen, a, * Nicu Sebe, b Ashutosh

More information

Dynamic facial expression recognition using a behavioural model

Dynamic facial expression recognition using a behavioural model Dynamic facial expression recognition using a behavioural model Thomas Robin Michel Bierlaire Javier Cruz STRC 2009 10th september The context Recent interest for emotion recognition in transportation

More information

Modelling Human Perception of Facial Expressions by Discrete Choice Models

Modelling Human Perception of Facial Expressions by Discrete Choice Models Modelling Human Perception of Facial Expressions by Discrete Choice Models Javier CRUZ Thomas ROBIN Matteo SORCI Michel BIERLAIRE Jean-Philippe THIRAN 28th of August, 2007 Outline Introduction Objectives

More information

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February-2016 ISSN

International Journal of Scientific & Engineering Research, Volume 7, Issue 2, February-2016 ISSN ISSN 2229-5518 538 Facial Expression Detection Using FACS Vinaya Tinguria, Sampada Borukar y, Aarti Awathare z,prof. K.T.V. Talele x Sardar Patel Institute of Technology, Mumbai-400058, India, vinaya.t20@gmail.com

More information

Complete Local Binary Pattern for Representation of Facial Expression Based on Curvelet Transform

Complete Local Binary Pattern for Representation of Facial Expression Based on Curvelet Transform Proc. of Int. Conf. on Multimedia Processing, Communication& Info. Tech., MPCIT Complete Local Binary Pattern for Representation of Facial Expression Based on Curvelet Transform Nagaraja S., Prabhakar

More information

network and image warping. In IEEE International Conference on Neural Networks, volume III,

network and image warping. In IEEE International Conference on Neural Networks, volume III, Mary YY Leung, Hung Yen Hui, and Irwin King Facial expression synthesis by radial basis function network and image warping In IEEE International Conference on Neural Networks, volume III, pages 1{15, Washington

More information

Automatic recognition of smiling and neutral facial expressions

Automatic recognition of smiling and neutral facial expressions University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2010 Automatic recognition of smiling and neutral facial expressions Peiyao

More information

ENHANCING FACIAL EXPRESSION CLASSIFICATION BY INFORMATION FUSION. I. Buciu 1, Z. Hammal 2, A. Caplier 2, N. Nikolaidis 1, and I.

ENHANCING FACIAL EXPRESSION CLASSIFICATION BY INFORMATION FUSION. I. Buciu 1, Z. Hammal 2, A. Caplier 2, N. Nikolaidis 1, and I. ENHANCING FACIAL EXPRESSION CLASSIFICATION BY INFORMATION FUSION I. Buciu 1, Z. Hammal 2, A. Caplier 2, N. Nikolaidis 1, and I. Pitas 1 1 AUTH/Department of Informatics/ Aristotle University of Thessaloniki

More information

Recognizing Partial Facial Action Units Based on 3D Dynamic Range Data for Facial Expression Recognition

Recognizing Partial Facial Action Units Based on 3D Dynamic Range Data for Facial Expression Recognition Recognizing Partial Facial Action Units Based on 3D Dynamic Range Data for Facial Expression Recognition Yi Sun, Michael Reale, and Lijun Yin Department of Computer Science, State University of New York

More information

Face analysis : identity vs. expressions

Face analysis : identity vs. expressions Face analysis : identity vs. expressions Hugo Mercier 1,2 Patrice Dalle 1 1 IRIT - Université Paul Sabatier 118 Route de Narbonne, F-31062 Toulouse Cedex 9, France 2 Websourd 3, passage André Maurois -

More information

Gender Classification Technique Based on Facial Features using Neural Network

Gender Classification Technique Based on Facial Features using Neural Network Gender Classification Technique Based on Facial Features using Neural Network Anushri Jaswante Dr. Asif Ullah Khan Dr. Bhupesh Gour Computer Science & Engineering, Rajiv Gandhi Proudyogiki Vishwavidyalaya,

More information

MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION OF TEXTURES

MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION OF TEXTURES International Journal of Computer Science and Communication Vol. 3, No. 1, January-June 2012, pp. 125-130 MORPHOLOGICAL BOUNDARY BASED SHAPE REPRESENTATION SCHEMES ON MOMENT INVARIANTS FOR CLASSIFICATION

More information

Appearance Manifold of Facial Expression

Appearance Manifold of Facial Expression Appearance Manifold of Facial Expression Caifeng Shan, Shaogang Gong and Peter W. McOwan Department of Computer Science Queen Mary, University of London, London E1 4NS, UK {cfshan, sgg, pmco}@dcs.qmul.ac.uk

More information

Automatic Facial Expression Recognition using Boosted Discriminatory Classifiers

Automatic Facial Expression Recognition using Boosted Discriminatory Classifiers Automatic Facial Expression Recognition using Boosted Discriminatory Classifiers Stephen Moore and Richard Bowden Centre for Vision Speech and Signal Processing University of Surrey, Guildford, GU2 7JW,

More information

Face Recognition Using K-Means and RBFN

Face Recognition Using K-Means and RBFN Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IMPACT FACTOR: 6.017 IJCSMC,

More information

Using a sparse learning Relevance Vector Machine in Facial Expression Recognition

Using a sparse learning Relevance Vector Machine in Facial Expression Recognition Using a sparse learning Relevance Vector Machine in Facial Expression Recognition W.S. Wong, W. Chan, D. Datcu, L.J.M. Rothkrantz Man-Machine Interaction Group Delft University of Technology 2628 CD, Delft,

More information

Recognizing Facial Expression: Machine Learning and Application to Spontaneous Behavior

Recognizing Facial Expression: Machine Learning and Application to Spontaneous Behavior Computer Vision and Pattern Recognition 2005 Recognizing Facial Expression: Machine Learning and Application to Spontaneous Behavior Marian Stewart Bartlett 1, Gwen Littlewort 1, Mark Frank 2, Claudia

More information

Facial expression recognition using shape and texture information

Facial expression recognition using shape and texture information Facial expression recognition using shape and texture information I. Kotsia^ and I. Pitas^ Aristotle University of Thessaloniki pitas@aiia.csd.auth.gr Department of Informatics Box 451 54124 Thessaloniki,

More information

FACIAL EXPRESSION USING 3D ANIMATION

FACIAL EXPRESSION USING 3D ANIMATION Volume 1 Issue 1 May 2010 pp. 1 7 http://iaeme.com/ijcet.html I J C E T IAEME FACIAL EXPRESSION USING 3D ANIMATION Mr. K. Gnanamuthu Prakash 1, Dr. S. Balasubramanian 2 ABSTRACT Traditionally, human facial

More information

An Automatic Region Based Methodology for Facial Expression Recognition

An Automatic Region Based Methodology for Facial Expression Recognition An Automatic Region Based Methodology for Facial Expression Recognition Anastasios Koutlas IEEE Student Member Dept. of Medical Physics Medical School Unit of Medical Technology and Intelligent Information

More information

Fully Automatic Facial Action Recognition in Spontaneous Behavior

Fully Automatic Facial Action Recognition in Spontaneous Behavior Fully Automatic Facial Action Recognition in Spontaneous Behavior Marian Stewart Bartlett 1, Gwen Littlewort 1, Mark Frank 2, Claudia Lainscsek 1, Ian Fasel 1, Javier Movellan 1 1 Institute for Neural

More information

Facial Expression Recognition

Facial Expression Recognition International Journal of Current Engineering and Technology, Vol., No. (June 01) ISSN 77-4106 Research Article Facial Expression Recognition Riti Kushwaha a and Neeta Nain a* a Department of Computer Engineering

More information

Facial Expression Recognition for HCI Applications

Facial Expression Recognition for HCI Applications acial Expression Recognition for HCI Applications adi Dornaika Institut Géographique National, rance Bogdan Raducanu Computer Vision Center, Spain INTRODUCTION acial expression plays an important role

More information

Texture Features in Facial Image Analysis

Texture Features in Facial Image Analysis Texture Features in Facial Image Analysis Matti Pietikäinen and Abdenour Hadid Machine Vision Group Infotech Oulu and Department of Electrical and Information Engineering P.O. Box 4500, FI-90014 University

More information

Decoding Mixed Emotions from Expression Map of Face Images

Decoding Mixed Emotions from Expression Map of Face Images Decoding Mixed Emotions from Expression Map of Face Images Swapna Agarwal and Dipti Prasad Mukherjee Abstract In real life facial expressions show mixture of emotions. This paper proposes a novel expression

More information

DURING the past two decades, facial expression recognition

DURING the past two decades, facial expression recognition 1528 IEEE TRANSACTIONS ON MULTIMEDIA, VOL. 10, NO. 8, DECEMBER 2008 Discriminant Graph Structures for Facial Expression Recognition Stefanos Zafeiriou and Ioannis Pitas, Fellow, IEEE Abstract In this paper,

More information

Radial Basis Network for Facial Expression Synthesis. I. King H. T. Hou. The Chinese University of Hong Kong

Radial Basis Network for Facial Expression Synthesis. I. King H. T. Hou. The Chinese University of Hong Kong Radial Basis Network for Facial Expression Synthesis I King H T Hou fking,hthoug@cscuhkeduhk Department of Computer Science & Engineering The Chinese University of Hong Kong Shatin, New Territories, Hong

More information

Implementation of Emotion Recognition by Expression with the Help of Matlab Tool

Implementation of Emotion Recognition by Expression with the Help of Matlab Tool Implementation of Emotion Recognition by Expression with the Help of Matlab Tool Harshit Ramteke 1, Abhishek Shrivastava 2 1 M. Tech (4th semester,)department of CSE, DIMAT, Raipur 2 Department of CSE,

More information

A Hidden Markov Model Based Approach for Facial Expression Recognition in Image Sequences

A Hidden Markov Model Based Approach for Facial Expression Recognition in Image Sequences A Hidden Markov Model Based Approach for Facial Expression Recognition in Image Sequences Miriam Schmidt, Martin Schels, and Friedhelm Schwenker Institute of Neural Information Processing, University of

More information

Latest development in image feature representation and extraction

Latest development in image feature representation and extraction International Journal of Advanced Research and Development ISSN: 2455-4030, Impact Factor: RJIF 5.24 www.advancedjournal.com Volume 2; Issue 1; January 2017; Page No. 05-09 Latest development in image

More information

An Algorithm based on SURF and LBP approach for Facial Expression Recognition

An Algorithm based on SURF and LBP approach for Facial Expression Recognition ISSN: 2454-2377, An Algorithm based on SURF and LBP approach for Facial Expression Recognition Neha Sahu 1*, Chhavi Sharma 2, Hitesh Yadav 3 1 Assistant Professor, CSE/IT, The North Cap University, Gurgaon,

More information

Classifying Facial Gestures in Presence of Head Motion

Classifying Facial Gestures in Presence of Head Motion Classifying Facial Gestures in Presence of Head Motion Wei-Kai Liao and Isaac Cohen Institute for Robotics and Intelligent Systems Integrated Media Systems Center University of Southern California Los

More information