SlideShare a Scribd company logo
1 of 6
Download to read offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 99
GESTURE RECOGNITION SYSTEM
Satish Kumar Kotha1
, Jahnavi Pinjala2
, Kavya Kasoju3
, Manvitha Pothineni4
1
Department of Biomedical Engineering, GRIET, Hyderabad
2
Department of Biomedical Engineering, GRIET, Hyderabad
3
Department of Biomedical Engineering, GRIET, Hyderabad
4
Department of Biomedical Engineering, GRIET, Hyderabad
Abstract
This paper presents a novel approach for the gesture recognition system using software. In this paper the real time image is taken
and is compared with a training set of images and displays a matched training image. In this approach we have used skin
detection techniques for detecting the skin threshold regions, Principle Component Analysis (PCA) algorithm and Linear
Discriminant Analysis (LDA) for data compressing and analyzing and K-Nearest Neighbor (KNN), Support Vector Machine
(SVM) classification for matching the appropriate training image to the real-time image. The software used is MATLAB. The hand
gestures used are taken from the American Sign Language.
Keywords— PCA algorithm, LDA algorithm, skin detection, KNN and SVM classification
-------------------------------------------------------------------***-------------------------------------------------------------------
1. INTRODUCTION
Gesture recognition is an area of current research in
computer vision. Body language is one of the important
ways of communication among the humans. Thus, gesture
recognition system would be an ideal approach for
improving human-machine interaction. This kind of human-
machine interfaces will allow a human to control a wide
variety of devices remotely through hand gestures.
In the earlier stages of research many have proposed
different approaches for the sign or gesture recognition
system.
Eng-Jon Ong and Bowden presented an approach not only
detecting the presence of human hands within an image but
classifying the hand shape too [1] by using grey scale image.
The Korean Manual Alphabet (KMA) by Chau-Su Lee et al
presented a vision-based recognition system of Korean
manual alphabet [1] which is a subset of Korean Sign
Language.
Danieal Collobert proposed the same using [2] Input-output
Hidden Markov Models. Fujimura proposed hand gesture
recognition [2] using depth data.
Tin Hninn Hninn Maung used a simple and fast algorithm
using orientation histograms will be developed. Pattern
recognition system will be using a transform that converts
an image into feature vector [3], which then will be
compared with the feature vectors of a training set of
gestures.
Ankit Chaudhary, J. L. Raheja, Karen Das, Sonia Raheja
used fuzzy logic, artificial neural network, genetic
algorithms etc. The methods in the pre processing of image
for segmentation and hand [4] image construction also taken
into study. Klimis Symeonidis proposed a pattern
recognition system , by using a transform that converts an
image into a feature vector, and will be compared with the
feature vectors of a training set of gestures [5]. The system
will be implemented with a Perceptron network.
2. SYSTEM ANALYSIS
The real time image is taken through the web cam and the
training sets of images are taken from the Marcel database.
Then pre-processing of the real time image and the training
set of image is done by skin detection. Then the PCA and
LDA algorithm is applied to the training sets of images for
compressing and analyzing the images, then the KNN and
SVM classifications are used to classify the real time image
with the correct match of the training set of image. The fig 1
shows the block diagram of the proposed Gesture
Recognition System.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 100
Fig 1: System Architecture
The real time image is taken through the web cam and
winvideo supporting file should be downloaded from the
math works for interfacing the webcam with the MATLAB.
Image acquisition tool box of the MATLAB is used. The
training sets of images are taken from the Marcel database
and the size of the images are about 66 X 76 pixels.
Pre-processing: Skin detection is done as following
 After gathering the set of images, mark each pixel
as "skin" or "non skin".
 Create an RGB histogram for "skin pixels" and
another one for "non-skin pixels" (they are
32x32x32 in size).
 For a particular bin (pixel colour), the skin is log
(H(r,g,b) / h(r,g,b)) ...where H stands for the skin
histogram, and h is non-skin histogram.
 For a new image, compute the log likelihood of
each pixel and then threshold the result to decide
skin/non-skin.
PCA Algorithm: Principal component analysis (PCA) is a
mathematical procedure that uses an orthogonal
transformation to convert a set of observations of possibly
correlated variables into a set of values [6] [7] of linearly
uncorrelated variables called principal components.
Fig 2: Block diagram of PCA algorithm
LDA Algorithm: Linear Discriminant Analysis (LDA) and
related Fisher's linear discriminant are the methods used in
pattern recognition [8], statistics and machine learning for
finding a linear combination of features which characterizes
[9]or separates two or more classes of objects or events.
Then the resulting combination can be used more
commonly, for dimensionality reduction or a linear
classifier.
Fig 3: Block diagram for LDA algorithm
The real time image is captured
through webcam
Preprocessing of the training set of
images
Apply PCA Algorithm and LDA
Algorithm
Preprocessing of the real time
image
Performing KNN and SVM
Classification
Display the input and the matched
output
Compute the mean
subtracted image
Finding the covarience matrix
Finding the Eigen vectors
Find the weights of gestures in
the transformed feature space
and PCA extracted features
Classification is done by KNN
or SVM
Get the mean sibtracted
image
Finding the covariance
matrix
Finding the Eigen
vectors
Weights of gestures in
the transformed space
Within class scatter and
the between class scatter
Represent original set in
derived Eigen vectors
Classification of images
using KNN or SVM
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 101
KNN Classification: The k-nearest neighbor algorithm is a
classifying method which classifies an object where the
majority of the neighbor belongs to. The choice of the
number of neighbors is discretionary and up to the choice of
the users. If k is 1 then it is classified [10] whichever class
of neighbor is nearest.
Typically the object is classified based on the labels of its k
nearest neighbors by majority vote. If k=1, the object is
classified as the class of the object nearest to it. When only
two classes are present, it is said that k must be an odd
integer. However, there can still be ties when k is an odd
integer when performing multiclass classification. After we
convert each image to a vector of fixed-length with real
numbers, we used the most common distance function for
KNN which is Euclidean distance.
Fig 4: KNN classification. At the query point of the circle
depending on the k value of 1, 5, or 10, the query point can
be a rectangle at (a), a diamond at (b), and a triangle at (c).
SVM Classification: A support vector machine (SVM) is a
non probabilistic linear binary classifier, which can analyze
input data and predict which of the two classes it belong to.
It works by building a hyperplane separating the two classes
which is of higher dimension.
A good separation is obtained by a hyperplane that is very
far from any data point of each class [11], since further the
separation of the data, better the performance.
Fig 5: SVM Classification. In multidimensional space,
support vector machines find the hyperplane that maximizes
the margin between two different classes. Here the support
vectors are the dots circled.
3. PERFORMANCE ANALYSIS
The performances of the proposed system according to the
PCA and LDA analyses has mentioned below.
Fig 6 shows the alphabets used in this paper.
Fig 6: Alphabets used
These images are used to extract the features using
performing some processing like skin extraction (fig 7).
Fig 7: Results of skin thresholding
The extracted Eigen vectors are shown in the fig 8.
Fig 8: Eigen vectors
Using these Eigen vector defined subspace, we represent all
the images in this subspace. Based on these representations
we classify the Testing database images using KNN and
SVM classifiers.
MarginMargin
(b)
?(a)(c)
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 102
PCA Algorithm:
Fig 9: Classification using KNN
Fig 10: Classification using SVM
The results were observed in the following table 1:
Table 1: Accuracy of PCA
Accuracy % KNN SVM
Training Set 75.54 55.93
LDA Algorithm:
Fig 11: Classification using KNN in LDA
Fig 12: Classification using SVM in LDA
The results for this are given in the table 2:
Table 2: Accuracy of LDA
Accuracy % KNN SVM
Training Set 24.5 24.3
4. RESULTS
The tabular column corresponding to the results obtained
using the SVM (table 4) and KNN (table 3) classifications.
The input image is taken from the web camera and in this
project we have used only 6 gestures for testing.
Table 3: Results of KNN classification
GESTURE Without
imcrop
Complete
white
Background
PCA FLD PCA FLD
5
5 5 5 5
V
5 5 V 5
Point
Point 5 Point 5
A
Point 5 Point 5
B
5 5 5 5
C
5 5 C 5
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 103
Table 4: Results of SVM classification
GESTURE Without
imcrop
Complete
white
Background
PCA FLD PCA FLD
5
B 5 5 5
V
Point 5 V 5
Point
Point 5 Point 5
A
Point 5 V 5
B
V 5 5 5
C
C 5 C 5
5. APPLICATIONS
Hand gesture recognition is been applied in different
domains with different applications.
1. Sign Language Recognition: For the deaf and dumb
people to communicate [12] through the sign
language.
2. Robot Control: Controlling the robot using gestures
for [12] example, “one” means “move forward”,
“five” means to “stop”, and so on.
3. Graphic Editor Control: Graphic editor control
system requires the hand gesture to be tracked and
located as a pre-processing operation used 12
dynamic gestures [12] for drawing and editing
graphic system.
4. Virtual Environments: For communication media
system for 3D pointing [12] gesture recognition.
5. Numbers Recognition: Recognising meaningful
gesture [12] using the Arabian numbers from 0 -9.
6. Television Control: Controlling the volume,
changing the channels etc [12] can be done for
using the gesture recognition.
7. 3D Modelling: Building the 3D models by showing
the models [12] through the hand gestures.
6. CONCLUSION
This project developed a system that can recognize real time
image based on the features we extracted from the training
database using Principal Component Analysis and Linear
Discriminant Analysis algorithms. These were classified
using Support Vector Machine, K Nearest Neighbor, and
Neural Network schemes.
There are few reasons for poor performance of testing data.
Firstly, the system faced problems in the skin detection.
Because there is no strict threshold set for skin probabilities,
some of the background is also in skin color, so it may be
mistakenly detected as skin. The variation in images also
played a major part in the low accuracy, which includes
different background of images, different sizes of gestures in
the images, different orientations and angle of gestures, etc.
The different illumination effects for different images too
posed a problem.
FUTURE SCOPE
We further would like to extend it by giving the hand
gestures meaning in the form of text or by voice.
For extension we would like to use the Artificial Neural
Networks and the Image processing tool box in the
MATLAB and other sources for the conversion of the
gesture meaning into the text format or by the voice.
REFERENCES
[1] O. M. Foong, T. J. Low and S. Wibowo, "Hand
Gesture Recognition: Sign to Voice System (S2V),"
2008
[2] P. Chakraborty, P. Sarawgi, A. Mehro, G. Agarwal
and R. Pradhan, "Hand Gesture Recognition: A
Comparative Study," in International
MultiConference of Engineers and Computer
Scientists, Hong Kong, 2008.
[3] T. H. H. Maung, "Real-Time Hand Tracking and
Gesture Recognition System Using Neural
Networks," 2009.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 104
[4] A. Chaudhary, J. L. Raheja, K. Das and Sonia,
"Intelligent Approaches to interact with Machines
using Hand Gesture Recognition in Natural way: A
Survey," International Journal of Computer Science
& Engineering Survey (IJCSES), vol. 2, 2011.
[5] K. Symeonidis, "Hand Gesture Recognition Using
Neural Networks"
[6] K. Kosmelj, J. Le-Rademacher and Lynne,
"Symbolic Covariance Matrix for Interval-valued
Variables and its Application to Principal Component
Analysis: a Case Study," in Metodoloski zvezki,
2014.
[7] "A tutorial on PCA," [Online]. Available:
http://www.sccg.sk/~haladova/principal_components
.pdf.
[8] "Fisher Linear Discriminant Analysis," [Online].
Available:
http://www.ics.uci.edu/~welling/classnotes/papers_cl
ass/Fisher-LDA.pdf.
[9] Wikipedia, "Linear discriminant analysis," [Online].
Available:
http://en.wikipedia.org/w/index.php?title=Linear_dis
criminant_analysis&oldid=153494000.
[10] J. Kim, B.-s. Kim and S. savarese, "Comparing
Image Classification Methods: K-Nearest-Neighbor
and Support-Vector-Machines".
[11] Wikipedia. [Online]. Available:
http://en.wikipedia.org/wiki/Support_vector_machine
.
[12] P. K. K. Vyas, A. Pareek and D. S. Tiwari, "Gesture
Recognition and Control Part 2 – Hand Gesture
Recognition (HGR) System & Latest Upcoming
Techniques," International Journal on Recent and
Innovation Trends in Computing and
Communication, vol. 1, no. 8.
[13] R. Sharma, Y. Nemani, S. Kumar, L. Kane and P.
Khanna, "Recognition of Single Handed Sign
Language Gestures using Contour Tracing
Descriptor," in Proceedings of the World Congress
on Engineering, 2013.
[14] Prof.Sayyad T.J, "Recognition of ASL using Hand
Gestures," International Journal of Emerging Trends
& Technology in Computer Science (IJETTCS, vol.
2, no. 5, 2013.
[15] Malima, E. Ozgur and M. Cetin, "A Fast Algorithm
for Vision-Based Hand Gesture Recognition for
Robot Control," IEEE, 2006.
[16] X. Li, "Gesture Recognition Based on Fuzzy C-
Means Clustering Algorithm"
[17] S. K. Kang, M. Y. Nam and P. K. Rhee, "Color
Based Hand and Finger Detection Technology for
User Interaction," 2008
[18] R. J, K. Mahesh, S. Mahishi, D. R, S. S and N. V.
Pujari, "“Finger Detection for Sign Language
Recognition," in Proceedings of the International
MultiConference of Engineers and Computer
Scientists, Hong Kong, 2009
[19] S. D.Gawande and P. N. .. Chopde, "Neural Network
based Hand Gesture Recognition," International
Journal of Emerging Research in Management
&Technology, vol. 2, no. 3.
[20] "Automatic sign language detection," [Online].
Available: https://sites.google.com/site/autosignlan/.

More Related Content

What's hot

Face Recognition Based Intelligent Door Control System
Face Recognition Based Intelligent Door Control SystemFace Recognition Based Intelligent Door Control System
Face Recognition Based Intelligent Door Control Systemijtsrd
 
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...acijjournal
 
Comparison of thresholding methods
Comparison of thresholding methodsComparison of thresholding methods
Comparison of thresholding methodsVrushali Lanjewar
 
An Experiment with Sparse Field and Localized Region Based Active Contour Int...
An Experiment with Sparse Field and Localized Region Based Active Contour Int...An Experiment with Sparse Field and Localized Region Based Active Contour Int...
An Experiment with Sparse Field and Localized Region Based Active Contour Int...CSCJournals
 
Image segmentation methods for brain mri images
Image segmentation methods for brain mri imagesImage segmentation methods for brain mri images
Image segmentation methods for brain mri imageseSAT Journals
 
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...IJECEIAES
 
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATION
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATIONFUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATION
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATIONijcsit
 
SVM Based Identification of Psychological Personality Using Handwritten Text
SVM Based Identification of Psychological Personality Using Handwritten Text SVM Based Identification of Psychological Personality Using Handwritten Text
SVM Based Identification of Psychological Personality Using Handwritten Text IJERA Editor
 
3-D FFT Moving Object Signatures for Velocity Filtering
3-D FFT Moving Object Signatures for Velocity Filtering3-D FFT Moving Object Signatures for Velocity Filtering
3-D FFT Moving Object Signatures for Velocity FilteringIDES Editor
 
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videos
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In VideosA Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videos
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videosijtsrd
 
Blind Image Seperation Using Forward Difference Method (FDM)
Blind Image Seperation Using Forward Difference Method (FDM)Blind Image Seperation Using Forward Difference Method (FDM)
Blind Image Seperation Using Forward Difference Method (FDM)sipij
 
Draft activity recognition from accelerometer data
Draft activity recognition from accelerometer dataDraft activity recognition from accelerometer data
Draft activity recognition from accelerometer dataRaghu Palakodety
 
Gait using moment with gray and
Gait using moment with gray andGait using moment with gray and
Gait using moment with gray andijsc
 
Removal of Transformation Errors by Quarterion In Multi View Image Registration
Removal of Transformation Errors by Quarterion In Multi View Image RegistrationRemoval of Transformation Errors by Quarterion In Multi View Image Registration
Removal of Transformation Errors by Quarterion In Multi View Image RegistrationIDES Editor
 
IRJET - Skin Disease Predictor using Deep Learning
IRJET - Skin Disease Predictor using Deep LearningIRJET - Skin Disease Predictor using Deep Learning
IRJET - Skin Disease Predictor using Deep LearningIRJET Journal
 
Paper id 252014130
Paper id 252014130Paper id 252014130
Paper id 252014130IJRAT
 
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...IRJET Journal
 
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...Faster Training Algorithms in Neural Network Based Approach For Handwritten T...
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...CSCJournals
 

What's hot (20)

B018110915
B018110915B018110915
B018110915
 
Face Recognition Based Intelligent Door Control System
Face Recognition Based Intelligent Door Control SystemFace Recognition Based Intelligent Door Control System
Face Recognition Based Intelligent Door Control System
 
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON  ACTIVE CONTOUR AND...
A NOVEL IMAGE SEGMENTATION ENHANCEMENT TECHNIQUE BASED ON ACTIVE CONTOUR AND...
 
Comparison of thresholding methods
Comparison of thresholding methodsComparison of thresholding methods
Comparison of thresholding methods
 
D018112429
D018112429D018112429
D018112429
 
An Experiment with Sparse Field and Localized Region Based Active Contour Int...
An Experiment with Sparse Field and Localized Region Based Active Contour Int...An Experiment with Sparse Field and Localized Region Based Active Contour Int...
An Experiment with Sparse Field and Localized Region Based Active Contour Int...
 
Image segmentation methods for brain mri images
Image segmentation methods for brain mri imagesImage segmentation methods for brain mri images
Image segmentation methods for brain mri images
 
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...
Real-time Multi-object Face Recognition Using Content Based Image Retrieval (...
 
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATION
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATIONFUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATION
FUZZY IMAGE SEGMENTATION USING VALIDITY INDEXES CORRELATION
 
SVM Based Identification of Psychological Personality Using Handwritten Text
SVM Based Identification of Psychological Personality Using Handwritten Text SVM Based Identification of Psychological Personality Using Handwritten Text
SVM Based Identification of Psychological Personality Using Handwritten Text
 
3-D FFT Moving Object Signatures for Velocity Filtering
3-D FFT Moving Object Signatures for Velocity Filtering3-D FFT Moving Object Signatures for Velocity Filtering
3-D FFT Moving Object Signatures for Velocity Filtering
 
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videos
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In VideosA Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videos
A Novel GA-SVM Model For Vehicles And Pedestrial Classification In Videos
 
Blind Image Seperation Using Forward Difference Method (FDM)
Blind Image Seperation Using Forward Difference Method (FDM)Blind Image Seperation Using Forward Difference Method (FDM)
Blind Image Seperation Using Forward Difference Method (FDM)
 
Draft activity recognition from accelerometer data
Draft activity recognition from accelerometer dataDraft activity recognition from accelerometer data
Draft activity recognition from accelerometer data
 
Gait using moment with gray and
Gait using moment with gray andGait using moment with gray and
Gait using moment with gray and
 
Removal of Transformation Errors by Quarterion In Multi View Image Registration
Removal of Transformation Errors by Quarterion In Multi View Image RegistrationRemoval of Transformation Errors by Quarterion In Multi View Image Registration
Removal of Transformation Errors by Quarterion In Multi View Image Registration
 
IRJET - Skin Disease Predictor using Deep Learning
IRJET - Skin Disease Predictor using Deep LearningIRJET - Skin Disease Predictor using Deep Learning
IRJET - Skin Disease Predictor using Deep Learning
 
Paper id 252014130
Paper id 252014130Paper id 252014130
Paper id 252014130
 
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...
A Comparative study of K-SVD and WSQ Algorithms in Fingerprint Compression Te...
 
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...Faster Training Algorithms in Neural Network Based Approach For Handwritten T...
Faster Training Algorithms in Neural Network Based Approach For Handwritten T...
 

Viewers also liked

Principal component analysis for the classification of fingers movement data ...
Principal component analysis for the classification of fingers movement data ...Principal component analysis for the classification of fingers movement data ...
Principal component analysis for the classification of fingers movement data ...IAEME Publication
 
Hand Shape Based Gesture Recognition in Hardware
Hand Shape Based Gesture Recognition in HardwareHand Shape Based Gesture Recognition in Hardware
Hand Shape Based Gesture Recognition in Hardwareijsrd.com
 
Hand Gesture Recognition Based on Shape Parameters
Hand Gesture Recognition Based on Shape ParametersHand Gesture Recognition Based on Shape Parameters
Hand Gesture Recognition Based on Shape ParametersNithinkumar P
 
Real time gesture recognition of human hand
Real time gesture recognition of human handReal time gesture recognition of human hand
Real time gesture recognition of human handVishnu Kudumula
 
Gesture recognition document
Gesture recognition documentGesture recognition document
Gesture recognition documentNikhil Jha
 
Hand gesture recognition system(FYP REPORT)
Hand gesture recognition system(FYP REPORT)Hand gesture recognition system(FYP REPORT)
Hand gesture recognition system(FYP REPORT)Afnan Rehman
 
Gesture Recognition using Principle Component Analysis & Viola-Jones Algorithm
Gesture Recognition using Principle Component Analysis &  Viola-Jones AlgorithmGesture Recognition using Principle Component Analysis &  Viola-Jones Algorithm
Gesture Recognition using Principle Component Analysis & Viola-Jones AlgorithmIJMER
 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! Chris Gledhill
 
Gesture recognition technology
Gesture recognition technology Gesture recognition technology
Gesture recognition technology Nagamani Gurram
 

Viewers also liked (12)

Principal component analysis for the classification of fingers movement data ...
Principal component analysis for the classification of fingers movement data ...Principal component analysis for the classification of fingers movement data ...
Principal component analysis for the classification of fingers movement data ...
 
Hand Shape Based Gesture Recognition in Hardware
Hand Shape Based Gesture Recognition in HardwareHand Shape Based Gesture Recognition in Hardware
Hand Shape Based Gesture Recognition in Hardware
 
gesture-recognition
gesture-recognitiongesture-recognition
gesture-recognition
 
Hand Gesture Recognition Based on Shape Parameters
Hand Gesture Recognition Based on Shape ParametersHand Gesture Recognition Based on Shape Parameters
Hand Gesture Recognition Based on Shape Parameters
 
Real time gesture recognition of human hand
Real time gesture recognition of human handReal time gesture recognition of human hand
Real time gesture recognition of human hand
 
Gesture recognition document
Gesture recognition documentGesture recognition document
Gesture recognition document
 
Hand gesture recognition system(FYP REPORT)
Hand gesture recognition system(FYP REPORT)Hand gesture recognition system(FYP REPORT)
Hand gesture recognition system(FYP REPORT)
 
Hand Gesture Recognition
Hand Gesture RecognitionHand Gesture Recognition
Hand Gesture Recognition
 
Gesture recognition
Gesture recognitionGesture recognition
Gesture recognition
 
Gesture Recognition using Principle Component Analysis & Viola-Jones Algorithm
Gesture Recognition using Principle Component Analysis &  Viola-Jones AlgorithmGesture Recognition using Principle Component Analysis &  Viola-Jones Algorithm
Gesture Recognition using Principle Component Analysis & Viola-Jones Algorithm
 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! 
My old 2002 Thesis on Hand Gesture Recognition using a Web Cam! 
 
Gesture recognition technology
Gesture recognition technology Gesture recognition technology
Gesture recognition technology
 

Similar to Gesture recognition system

FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...IJCSEIT Journal
 
IRJET- Proposed System for Animal Recognition using Image Processing
IRJET-  	  Proposed System for Animal Recognition using Image ProcessingIRJET-  	  Proposed System for Animal Recognition using Image Processing
IRJET- Proposed System for Animal Recognition using Image ProcessingIRJET Journal
 
Object Recogniton Based on Undecimated Wavelet Transform
Object Recogniton Based on Undecimated Wavelet TransformObject Recogniton Based on Undecimated Wavelet Transform
Object Recogniton Based on Undecimated Wavelet TransformIJCOAiir
 
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...IRJET Journal
 
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme ijcisjournal
 
A comparative analysis of retrieval techniques in content based image retrieval
A comparative analysis of retrieval techniques in content based image retrievalA comparative analysis of retrieval techniques in content based image retrieval
A comparative analysis of retrieval techniques in content based image retrievalcsandit
 
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVAL
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVALA COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVAL
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVALcscpconf
 
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
 
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHES
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHESWEB IMAGE RETRIEVAL USING CLUSTERING APPROACHES
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHEScscpconf
 
Solving linear equations from an image using ann
Solving linear equations from an image using annSolving linear equations from an image using ann
Solving linear equations from an image using anneSAT Journals
 
Q UANTUM C LUSTERING -B ASED F EATURE SUBSET S ELECTION FOR MAMMOGRAPHIC I...
Q UANTUM  C LUSTERING -B ASED  F EATURE SUBSET  S ELECTION FOR MAMMOGRAPHIC I...Q UANTUM  C LUSTERING -B ASED  F EATURE SUBSET  S ELECTION FOR MAMMOGRAPHIC I...
Q UANTUM C LUSTERING -B ASED F EATURE SUBSET S ELECTION FOR MAMMOGRAPHIC I...ijcsit
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineIRJET Journal
 
Paper id 21201419
Paper id 21201419Paper id 21201419
Paper id 21201419IJRAT
 
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLSMIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLSAM Publications
 
IRJET- Detection and Classification of Skin Diseases using Different Colo...
IRJET-  	  Detection and Classification of Skin Diseases using Different Colo...IRJET-  	  Detection and Classification of Skin Diseases using Different Colo...
IRJET- Detection and Classification of Skin Diseases using Different Colo...IRJET Journal
 
Recognition of Handwritten Mathematical Equations
Recognition of  Handwritten Mathematical EquationsRecognition of  Handwritten Mathematical Equations
Recognition of Handwritten Mathematical EquationsIRJET Journal
 
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfresearchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfAvijitChaudhuri3
 
Image Features Matching and Classification Using Machine Learning
Image Features Matching and Classification Using Machine LearningImage Features Matching and Classification Using Machine Learning
Image Features Matching and Classification Using Machine LearningIRJET Journal
 
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
 

Similar to Gesture recognition system (20)

FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
FACE RECOGNITION USING DIFFERENT LOCAL FEATURES WITH DIFFERENT DISTANCE TECHN...
 
IRJET- Proposed System for Animal Recognition using Image Processing
IRJET-  	  Proposed System for Animal Recognition using Image ProcessingIRJET-  	  Proposed System for Animal Recognition using Image Processing
IRJET- Proposed System for Animal Recognition using Image Processing
 
Object Recogniton Based on Undecimated Wavelet Transform
Object Recogniton Based on Undecimated Wavelet TransformObject Recogniton Based on Undecimated Wavelet Transform
Object Recogniton Based on Undecimated Wavelet Transform
 
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...
IRJET- Digital Image Forgery Detection using Local Binary Patterns (LBP) and ...
 
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme Gait Based Person Recognition Using Partial Least Squares Selection Scheme
Gait Based Person Recognition Using Partial Least Squares Selection Scheme
 
A comparative analysis of retrieval techniques in content based image retrieval
A comparative analysis of retrieval techniques in content based image retrievalA comparative analysis of retrieval techniques in content based image retrieval
A comparative analysis of retrieval techniques in content based image retrieval
 
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVAL
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVALA COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVAL
A COMPARATIVE ANALYSIS OF RETRIEVAL TECHNIQUES IN CONTENT BASED IMAGE RETRIEVAL
 
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...
 
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHES
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHESWEB IMAGE RETRIEVAL USING CLUSTERING APPROACHES
WEB IMAGE RETRIEVAL USING CLUSTERING APPROACHES
 
Solving linear equations from an image using ann
Solving linear equations from an image using annSolving linear equations from an image using ann
Solving linear equations from an image using ann
 
Q UANTUM C LUSTERING -B ASED F EATURE SUBSET S ELECTION FOR MAMMOGRAPHIC I...
Q UANTUM  C LUSTERING -B ASED  F EATURE SUBSET  S ELECTION FOR MAMMOGRAPHIC I...Q UANTUM  C LUSTERING -B ASED  F EATURE SUBSET  S ELECTION FOR MAMMOGRAPHIC I...
Q UANTUM C LUSTERING -B ASED F EATURE SUBSET S ELECTION FOR MAMMOGRAPHIC I...
 
Brain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector MachineBrain Tumor Classification using Support Vector Machine
Brain Tumor Classification using Support Vector Machine
 
Paper id 21201419
Paper id 21201419Paper id 21201419
Paper id 21201419
 
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLSMIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
MIP AND UNSUPERVISED CLUSTERING FOR THE DETECTION OF BRAIN TUMOUR CELLS
 
IRJET- Detection and Classification of Skin Diseases using Different Colo...
IRJET-  	  Detection and Classification of Skin Diseases using Different Colo...IRJET-  	  Detection and Classification of Skin Diseases using Different Colo...
IRJET- Detection and Classification of Skin Diseases using Different Colo...
 
Recognition of Handwritten Mathematical Equations
Recognition of  Handwritten Mathematical EquationsRecognition of  Handwritten Mathematical Equations
Recognition of Handwritten Mathematical Equations
 
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfresearchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
 
557 480-486
557 480-486557 480-486
557 480-486
 
Image Features Matching and Classification Using Machine Learning
Image Features Matching and Classification Using Machine LearningImage Features Matching and Classification Using Machine Learning
Image Features Matching and Classification Using Machine Learning
 
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
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
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
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
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
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 

Recently uploaded (20)

(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.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)
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
★ 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
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
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...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
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
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 

Gesture recognition system

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 99 GESTURE RECOGNITION SYSTEM Satish Kumar Kotha1 , Jahnavi Pinjala2 , Kavya Kasoju3 , Manvitha Pothineni4 1 Department of Biomedical Engineering, GRIET, Hyderabad 2 Department of Biomedical Engineering, GRIET, Hyderabad 3 Department of Biomedical Engineering, GRIET, Hyderabad 4 Department of Biomedical Engineering, GRIET, Hyderabad Abstract This paper presents a novel approach for the gesture recognition system using software. In this paper the real time image is taken and is compared with a training set of images and displays a matched training image. In this approach we have used skin detection techniques for detecting the skin threshold regions, Principle Component Analysis (PCA) algorithm and Linear Discriminant Analysis (LDA) for data compressing and analyzing and K-Nearest Neighbor (KNN), Support Vector Machine (SVM) classification for matching the appropriate training image to the real-time image. The software used is MATLAB. The hand gestures used are taken from the American Sign Language. Keywords— PCA algorithm, LDA algorithm, skin detection, KNN and SVM classification -------------------------------------------------------------------***------------------------------------------------------------------- 1. INTRODUCTION Gesture recognition is an area of current research in computer vision. Body language is one of the important ways of communication among the humans. Thus, gesture recognition system would be an ideal approach for improving human-machine interaction. This kind of human- machine interfaces will allow a human to control a wide variety of devices remotely through hand gestures. In the earlier stages of research many have proposed different approaches for the sign or gesture recognition system. Eng-Jon Ong and Bowden presented an approach not only detecting the presence of human hands within an image but classifying the hand shape too [1] by using grey scale image. The Korean Manual Alphabet (KMA) by Chau-Su Lee et al presented a vision-based recognition system of Korean manual alphabet [1] which is a subset of Korean Sign Language. Danieal Collobert proposed the same using [2] Input-output Hidden Markov Models. Fujimura proposed hand gesture recognition [2] using depth data. Tin Hninn Hninn Maung used a simple and fast algorithm using orientation histograms will be developed. Pattern recognition system will be using a transform that converts an image into feature vector [3], which then will be compared with the feature vectors of a training set of gestures. Ankit Chaudhary, J. L. Raheja, Karen Das, Sonia Raheja used fuzzy logic, artificial neural network, genetic algorithms etc. The methods in the pre processing of image for segmentation and hand [4] image construction also taken into study. Klimis Symeonidis proposed a pattern recognition system , by using a transform that converts an image into a feature vector, and will be compared with the feature vectors of a training set of gestures [5]. The system will be implemented with a Perceptron network. 2. SYSTEM ANALYSIS The real time image is taken through the web cam and the training sets of images are taken from the Marcel database. Then pre-processing of the real time image and the training set of image is done by skin detection. Then the PCA and LDA algorithm is applied to the training sets of images for compressing and analyzing the images, then the KNN and SVM classifications are used to classify the real time image with the correct match of the training set of image. The fig 1 shows the block diagram of the proposed Gesture Recognition System.
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 100 Fig 1: System Architecture The real time image is taken through the web cam and winvideo supporting file should be downloaded from the math works for interfacing the webcam with the MATLAB. Image acquisition tool box of the MATLAB is used. The training sets of images are taken from the Marcel database and the size of the images are about 66 X 76 pixels. Pre-processing: Skin detection is done as following  After gathering the set of images, mark each pixel as "skin" or "non skin".  Create an RGB histogram for "skin pixels" and another one for "non-skin pixels" (they are 32x32x32 in size).  For a particular bin (pixel colour), the skin is log (H(r,g,b) / h(r,g,b)) ...where H stands for the skin histogram, and h is non-skin histogram.  For a new image, compute the log likelihood of each pixel and then threshold the result to decide skin/non-skin. PCA Algorithm: Principal component analysis (PCA) is a mathematical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values [6] [7] of linearly uncorrelated variables called principal components. Fig 2: Block diagram of PCA algorithm LDA Algorithm: Linear Discriminant Analysis (LDA) and related Fisher's linear discriminant are the methods used in pattern recognition [8], statistics and machine learning for finding a linear combination of features which characterizes [9]or separates two or more classes of objects or events. Then the resulting combination can be used more commonly, for dimensionality reduction or a linear classifier. Fig 3: Block diagram for LDA algorithm The real time image is captured through webcam Preprocessing of the training set of images Apply PCA Algorithm and LDA Algorithm Preprocessing of the real time image Performing KNN and SVM Classification Display the input and the matched output Compute the mean subtracted image Finding the covarience matrix Finding the Eigen vectors Find the weights of gestures in the transformed feature space and PCA extracted features Classification is done by KNN or SVM Get the mean sibtracted image Finding the covariance matrix Finding the Eigen vectors Weights of gestures in the transformed space Within class scatter and the between class scatter Represent original set in derived Eigen vectors Classification of images using KNN or SVM
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 101 KNN Classification: The k-nearest neighbor algorithm is a classifying method which classifies an object where the majority of the neighbor belongs to. The choice of the number of neighbors is discretionary and up to the choice of the users. If k is 1 then it is classified [10] whichever class of neighbor is nearest. Typically the object is classified based on the labels of its k nearest neighbors by majority vote. If k=1, the object is classified as the class of the object nearest to it. When only two classes are present, it is said that k must be an odd integer. However, there can still be ties when k is an odd integer when performing multiclass classification. After we convert each image to a vector of fixed-length with real numbers, we used the most common distance function for KNN which is Euclidean distance. Fig 4: KNN classification. At the query point of the circle depending on the k value of 1, 5, or 10, the query point can be a rectangle at (a), a diamond at (b), and a triangle at (c). SVM Classification: A support vector machine (SVM) is a non probabilistic linear binary classifier, which can analyze input data and predict which of the two classes it belong to. It works by building a hyperplane separating the two classes which is of higher dimension. A good separation is obtained by a hyperplane that is very far from any data point of each class [11], since further the separation of the data, better the performance. Fig 5: SVM Classification. In multidimensional space, support vector machines find the hyperplane that maximizes the margin between two different classes. Here the support vectors are the dots circled. 3. PERFORMANCE ANALYSIS The performances of the proposed system according to the PCA and LDA analyses has mentioned below. Fig 6 shows the alphabets used in this paper. Fig 6: Alphabets used These images are used to extract the features using performing some processing like skin extraction (fig 7). Fig 7: Results of skin thresholding The extracted Eigen vectors are shown in the fig 8. Fig 8: Eigen vectors Using these Eigen vector defined subspace, we represent all the images in this subspace. Based on these representations we classify the Testing database images using KNN and SVM classifiers. MarginMargin (b) ?(a)(c)
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 102 PCA Algorithm: Fig 9: Classification using KNN Fig 10: Classification using SVM The results were observed in the following table 1: Table 1: Accuracy of PCA Accuracy % KNN SVM Training Set 75.54 55.93 LDA Algorithm: Fig 11: Classification using KNN in LDA Fig 12: Classification using SVM in LDA The results for this are given in the table 2: Table 2: Accuracy of LDA Accuracy % KNN SVM Training Set 24.5 24.3 4. RESULTS The tabular column corresponding to the results obtained using the SVM (table 4) and KNN (table 3) classifications. The input image is taken from the web camera and in this project we have used only 6 gestures for testing. Table 3: Results of KNN classification GESTURE Without imcrop Complete white Background PCA FLD PCA FLD 5 5 5 5 5 V 5 5 V 5 Point Point 5 Point 5 A Point 5 Point 5 B 5 5 5 5 C 5 5 C 5
  • 5. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 103 Table 4: Results of SVM classification GESTURE Without imcrop Complete white Background PCA FLD PCA FLD 5 B 5 5 5 V Point 5 V 5 Point Point 5 Point 5 A Point 5 V 5 B V 5 5 5 C C 5 C 5 5. APPLICATIONS Hand gesture recognition is been applied in different domains with different applications. 1. Sign Language Recognition: For the deaf and dumb people to communicate [12] through the sign language. 2. Robot Control: Controlling the robot using gestures for [12] example, “one” means “move forward”, “five” means to “stop”, and so on. 3. Graphic Editor Control: Graphic editor control system requires the hand gesture to be tracked and located as a pre-processing operation used 12 dynamic gestures [12] for drawing and editing graphic system. 4. Virtual Environments: For communication media system for 3D pointing [12] gesture recognition. 5. Numbers Recognition: Recognising meaningful gesture [12] using the Arabian numbers from 0 -9. 6. Television Control: Controlling the volume, changing the channels etc [12] can be done for using the gesture recognition. 7. 3D Modelling: Building the 3D models by showing the models [12] through the hand gestures. 6. CONCLUSION This project developed a system that can recognize real time image based on the features we extracted from the training database using Principal Component Analysis and Linear Discriminant Analysis algorithms. These were classified using Support Vector Machine, K Nearest Neighbor, and Neural Network schemes. There are few reasons for poor performance of testing data. Firstly, the system faced problems in the skin detection. Because there is no strict threshold set for skin probabilities, some of the background is also in skin color, so it may be mistakenly detected as skin. The variation in images also played a major part in the low accuracy, which includes different background of images, different sizes of gestures in the images, different orientations and angle of gestures, etc. The different illumination effects for different images too posed a problem. FUTURE SCOPE We further would like to extend it by giving the hand gestures meaning in the form of text or by voice. For extension we would like to use the Artificial Neural Networks and the Image processing tool box in the MATLAB and other sources for the conversion of the gesture meaning into the text format or by the voice. REFERENCES [1] O. M. Foong, T. J. Low and S. Wibowo, "Hand Gesture Recognition: Sign to Voice System (S2V)," 2008 [2] P. Chakraborty, P. Sarawgi, A. Mehro, G. Agarwal and R. Pradhan, "Hand Gesture Recognition: A Comparative Study," in International MultiConference of Engineers and Computer Scientists, Hong Kong, 2008. [3] T. H. H. Maung, "Real-Time Hand Tracking and Gesture Recognition System Using Neural Networks," 2009.
  • 6. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 05 | May-2015, Available @ http://www.ijret.org 104 [4] A. Chaudhary, J. L. Raheja, K. Das and Sonia, "Intelligent Approaches to interact with Machines using Hand Gesture Recognition in Natural way: A Survey," International Journal of Computer Science & Engineering Survey (IJCSES), vol. 2, 2011. [5] K. Symeonidis, "Hand Gesture Recognition Using Neural Networks" [6] K. Kosmelj, J. Le-Rademacher and Lynne, "Symbolic Covariance Matrix for Interval-valued Variables and its Application to Principal Component Analysis: a Case Study," in Metodoloski zvezki, 2014. [7] "A tutorial on PCA," [Online]. Available: http://www.sccg.sk/~haladova/principal_components .pdf. [8] "Fisher Linear Discriminant Analysis," [Online]. Available: http://www.ics.uci.edu/~welling/classnotes/papers_cl ass/Fisher-LDA.pdf. [9] Wikipedia, "Linear discriminant analysis," [Online]. Available: http://en.wikipedia.org/w/index.php?title=Linear_dis criminant_analysis&oldid=153494000. [10] J. Kim, B.-s. Kim and S. savarese, "Comparing Image Classification Methods: K-Nearest-Neighbor and Support-Vector-Machines". [11] Wikipedia. [Online]. Available: http://en.wikipedia.org/wiki/Support_vector_machine . [12] P. K. K. Vyas, A. Pareek and D. S. Tiwari, "Gesture Recognition and Control Part 2 – Hand Gesture Recognition (HGR) System & Latest Upcoming Techniques," International Journal on Recent and Innovation Trends in Computing and Communication, vol. 1, no. 8. [13] R. Sharma, Y. Nemani, S. Kumar, L. Kane and P. Khanna, "Recognition of Single Handed Sign Language Gestures using Contour Tracing Descriptor," in Proceedings of the World Congress on Engineering, 2013. [14] Prof.Sayyad T.J, "Recognition of ASL using Hand Gestures," International Journal of Emerging Trends & Technology in Computer Science (IJETTCS, vol. 2, no. 5, 2013. [15] Malima, E. Ozgur and M. Cetin, "A Fast Algorithm for Vision-Based Hand Gesture Recognition for Robot Control," IEEE, 2006. [16] X. Li, "Gesture Recognition Based on Fuzzy C- Means Clustering Algorithm" [17] S. K. Kang, M. Y. Nam and P. K. Rhee, "Color Based Hand and Finger Detection Technology for User Interaction," 2008 [18] R. J, K. Mahesh, S. Mahishi, D. R, S. S and N. V. Pujari, "“Finger Detection for Sign Language Recognition," in Proceedings of the International MultiConference of Engineers and Computer Scientists, Hong Kong, 2009 [19] S. D.Gawande and P. N. .. Chopde, "Neural Network based Hand Gesture Recognition," International Journal of Emerging Research in Management &Technology, vol. 2, no. 3. [20] "Automatic sign language detection," [Online]. Available: https://sites.google.com/site/autosignlan/.