SlideShare a Scribd company logo
1 of 4
Download to read offline
IJSRD - International Journal for Scientific Research & Development| Vol. 1, Issue 5, 2013 | ISSN (online): 2321-0613
All rights reserved by www.ijsrd.com 1104
Abstract-- This paper presents a new approach for
controlling digital television using a real-time camera.
Proposed method uses a camera, a mobile ARM platform
and computer vision technology, such as image
segmentation and gesture recognition, to control TV
operations such as changing channels, increasing or
decreasing volume etc. For this we have used an ARM
based mobile platform with OMAP processor. For
processing the images we implemented the code using
OpenCV library. Hand detection is one of the important
stages for applications such as gesture recognition and hand
tracking. In this paper, it proposes a new method to extract
hand region and consequently the fingertips from color
images.
Keywords: Codeblocks, Fingertips detection, OMAP4430,
OpenCV, Panda board.
I. INTRODUCTION
Gesture recognition is an art of computer science and
language technology human gestures interpreted using
various mathematical algorithms. Current focuses in the
field include emotion recognition from the face and hand
gesture recognition. There exist many techniques that use
cameras and computer vision algorithms to interpret sign
language.
In this work, we are using hand gestures to control
the Television operations such as increasing or decreasing
the volume, changing the channels. In this project camera is
connected to the ARM board through camera expansion
connector. The image captured by camera will be processed
to recognize the gestures.
The processing of gestures will be done using
mobile ARM platform. After processing the gestures the
manipulated signals will be sent to the Television set
controller to operate according to gestures.
Following flowchart shows the sequence of processing.
Figure 1: Overall Flowchart for the project
II. ARM BASED PLATFORM
The images captured by the camera should be processed
very fast to provide real time interaction between user and
television. For this purpose along with low cost we think to
use ARM based Processors. Some of the reasons for the
proliferation of ARM-based processors include: low cost,
low-to-very-low power consumption, decent processing
power, and open development environment.
III. OPENCV
OpenCV library [1] [2] is now playing a vital role in the
Computer Vision field as it provides reduced cost and
preparation time of computer vision research environment...
One of the OpenCV’s goals is to provide a simple-to-use
computer vision infrastructure that helps people build fairly
sophisticated vision applications quickly. The OpenCV
library contains over 500 functions that span many areas in
image and video processing.
IV. METHODOLOGY
Gesture and voice-activated products will eventually
migrate into all of our appliances and electronic devices
making mice and remotes obsolete. We’ll be able to walk
into a room and adjust the lights, turn on the stereo and
browse the Internet simply by speaking commands or
waving our hand.
Vision-based user interfaces enable natural interaction
modalities such as gestures. Such interfaces require
computationally intensive video processing at low latency.
We are trying to demonstrate an application that recognizes
gestures to control TV operations. In vision based hand
gesture recognition system, the movement of the hand is
recorded by camera(s).
In this work we implement the following,
1) Interfacing of camera or sensor to the USB port of the
ARM mobile platform through camera connector.
2) Analysis the images those are captured by camera to
find the specific gesture. This can be done by the
following the steps as below
Step: 1 Segmenting image into hand area and
background based on the HSV values of the
skin
Step: 2 Removing the noise from image. The process is
called De-noising.
Step: 3 Computing the canter and size of the hand
Step: 4 Finding and counting the tips of the hand region
Step: 5 Finding the specific operation on the basis of
figure count
Hand Gesture Controls for Digital TV using Mobile ARM Platform
Ajit S. Gundale1
Pallavi G. Potadar2
1, 2
Electronics Department
Walchand Institute of Technology Solapur, Maharashtra (INDIA)
Hand Gesture Controls for Digital TV using Mobile ARM Platform
(IJSRD/Vol. 1/Issue 5/2013/0017)
All rights reserved by www.ijsrd.com 1105
3) Interfacing of ARM mobile platform to the modern
digital Television set to control the Television set.
The detailed block diagram of the prototype is shown below
In figure 2.
Fig. 2: Block Diagram
The input images captured by the camera are processed to
detect the gestures is an ARM mobile platform. This input is
processed using functions in OpenCV library. Block
diagram shows camera sensor, power supply, and display
and SD card. The operating system and application program
reside in SD card.
V. HAND GESTURE RECOGNITION
The system order is shown in Figure 5 [3]. Initially, when
we will get an image from the camera, we convert the color
space RGB to YCbCr.
Then, we will define a range of colors as ‘skin
color’ and will convert these pixels to white; all other pixels
will be converted to black. Then, we will compute the
centroid of the dorsal region of the hand. After we identify
the hand, we will find the circle that best fits this region and
multiply the radius of this circle by some value to obtain the
maximum extent of a ‘non-finger region’. From the vertex
and center distance, we will obtain the positions of the
active fingers
Fig. 3: An overview of our hand gesture recognition. Input
image converted to binary image to separate hand from
background. Center of hand and computed calculated radius
of hand found.
A. Input Image
Camera or sensor will be used to capture the images when
the user wants to control the TV. The limiting distance may
depend on FOV (Field Of View) of camera.
B. Segmentation
Next, we need to separate the hand area from a complex
background. It is difficult to detect skin color in natural
environments because of the variety of illuminations and
skin colors. To get better results, we converted from RGB
color space to YCbCr color space, since YCbCr is
insensitive to color variation. Generally for skin Y, Cr and
Cb values are in the range of 0 to 255, 77 to 127, and 133 to
173 respectively.
C. Deleting noise
Using this approach, we cannot get a good estimate of the
hand image because of background noise. To get a better
estimate of the hand, we will need to delete noisy pixels
from the image. We can use an image morphology
algorithm that performs image erosion and image dilation to
eliminate noise [4].
Erosion trims down the image area where the hand is not
present and Dilation expands the area of the Image pixels
which are not eroded.
D. Finding center and the size of the hand
After segmenting hand region and background, we can
calculate the center of the hand with the following equation:
Where xi and yi are x and y coordinates of the i pixel in the
hand region, and k denotes the number of pixels in the
region. After we will locate the center of the hand, we can
compute the radius of the palm region to get hand size.
E. Finding finger tip
The finger count is determined as in [5]. The centroid of the
segmented binary image of the hand is calculated. Then the
length of the largest active finger is found by drawing the
bounding box for the hand. The centroid calculated is made
as the Centre and the value of radius is the length of the
largest finger multiplied by 0.7 [4]. With the centroid as
Centre and length of the largest finger multiplied with 0.7 as
radius a circle is drawn to intersect with the active fingers of
the hand. If a finger is active then it intersects with the
circle.
Fig. 4: Example showing the result of finger count
algorithm.
Hand Gesture Controls for Digital TV using Mobile ARM Platform
(IJSRD/Vol. 1/Issue 5/2013/0017)
All rights reserved by www.ijsrd.com 1106
We assigned control operation to the number of fingers as
shown in the table below.
Those control signals are transmitted using IR LED
connected to ARM platform.
Finger count Functions
0 Turn OFF
1 Turn ON
2 Previous Channel
3 Next Channel
4 Decrease Volume
5 Increase Volume
Table 1: Gestures and Their Functions
VI. PERFORMANCE EVALUATION
In this method we used Panda board [6] as a mobile ARM
platform. The heart of Panda Board is the OMAP4430
processor. The OMAP4430 high-performance multimedia
application device is based on enhanced OMAP™
architecture. The architecture is designed to provide best-in-
class video, image, and graphics processing sufficient to
various applications.
Fig. 5: OMAP4430 Panda Board
Fig. 6: Counting Fingers
Fig. 7 : Counting Fingers
The device supports the following functions:
1) Streaming video up to full high definition (HD) (1920 ×
1080 p, 30 fps)
2) 2-dimensional (2D)/3-dimensional (3D) mobile gaming
3) Video conferencing
4) High-resolution still image (up to 16 Mp)
The Platform also includes connectors that can be used for
additional functionality and/or expansion purposes. Those
are,
1) Camera Connector
2) LCD Expansion Connectors
3) Generic Expansion Connectors
4) Composite Video Header
Camera is connected to Panda board through USB. The
output control signals are transmitted using IR LEDs.
With this setup Fig. 6, 7, 8, 9 and 10 are results are obtained.
Fig. 8: Counting fingers
Fig. 9: Counting fingers
Hand Gesture Controls for Digital TV using Mobile ARM Platform
(IJSRD/Vol. 1/Issue 5/2013/0017)
All rights reserved by www.ijsrd.com 1107
Fig. 10: Counting Fingers
VII. RESULTS
Table shows the performance of our approach comparatively
with that of all other approaches on their test results using
their own database test images in terms of recognition time,
accuracy, resolution, number of tested images, background.
Reference
No. of
Postures
Recognition
Time
%
Accuracy
No. of
Test
Image
Background
[Chung09] 15 0.4 94.89 30 Wall
[Fang07b] 6 0.09 – 0.11 93.8 195-221 Cluttered
[Yun09] 3 0.1333 96.2 130 Different
[Chen07] 4 0.03 90.0 100 White wall
[Ren10] 8 0.06667 96.9. 300
Not
discussed
[Marcel99] 6
Not
discussed
93.4 57-76 Wall
[Marcel99] 6
Not
discussed
76.1 38-58 Cluttered
Proposed
Method
6 0.05089 96% 50 Wall
Table. 2: Comparison between various approaches
After successful recognition of gestures, the remote control
codes are transmitted using IR LED which is connected to
Panda board.
VIII. CONCLUSION
In today’s digitized world, processing speeds have increased
dramatically, with computers being advanced to the levels
where they can assist humans in complex tasks. From the
performance analysis we can see that gestures are
recognized in only 50 mSec with 96% accuracy.
Technologies developed based on gesture are now really
affordable and converged with familiar and popular
technologies like TV, large screen. We will also conclude
that a lot of applications can be created by using just the
finger count of a hand provided we will be able to
distinguish between the fingers.
The fast and efficient algorithm for
gesture recognition will be cost effective if used with mobile
ARM platform.
REFERENCES
[1] “Learning OpenCV” by Gary Bradski and Adrian
Kaehler
[2] Willow Garage, http://www.willowgarage.com.
[3] Hojoon Park Department of Computer Science Brown
University, Providence, RI, USA,
hojoon@cs.brown.edu
[4] Computer vision based mouse, A. Erdem, E.
Yardimci, Y. Atalay, V. Cetin, A. E. Acoustics,
Speech, and Signal Processing, 2002. Proceedings.
(ICASS). IEEE International Conference
[5] Ram Rajesh J, Sudharshan R, Nagarjunan D, Aarthi R,
“Remotely controlled PowerPoint presentation
navigation using hand gestures”, and unpublished.
[6] http://pandaboard.org.
[7] [Chung09] W. Chung, X. Wu, and Y. Xu, “A real-time
hand gesture recognition based on Haar wavelet
representation,” in Proc. IEEE Int. Conf. Robot.
Biomimetics, 2009, pp. 336–341
[8] [Fang07b] Y. Fang, K. Wang, J. Cheng, and H. Lu, “A
real-time hand gesture recognition method,” in Proc.
IEEE Int. Conf. Multimedia Expo, 2007, pp. 995–998.
[9] [Chen07] Q. Chen, N. Georganas, E. Petriu, “Real-time
Vision-based Hand Gesture Recognition Using Haar-
like Features”, IEEE Instrumentation and Measurement
Technology Conference Proceedings, IMTC 2007
[10][Ren10] Y. Ren and C. Gu, “Real-time hand gesture
recognition based on vision,” in Proc. Edutainment,
2010, pp. 468–475.
[11][Yun09] L. Yun and Z. Peng, “An automatic hand
gesture recognition system based on Viola-Jones
method and SVMs,” in Proc. 2nd Int. Workshop
Comput. Sci. Eng., 2009, pp. 72–76.
[12][Marcel99] S. Marcel, “Hand posture recognition in a
body-face centered space,” in Proc. Conf. Human
Factors Comput. Syst. (CHI), 1999, pp. 302–303.

More Related Content

What's hot

IRJET- Mouse on Finger Tips using ML and AI
IRJET- Mouse on Finger Tips using ML and AIIRJET- Mouse on Finger Tips using ML and AI
IRJET- Mouse on Finger Tips using ML and AIIRJET Journal
 
Movement Tracking in Real-time Hand Gesture Recognition
Movement Tracking in Real-time Hand Gesture RecognitionMovement Tracking in Real-time Hand Gesture Recognition
Movement Tracking in Real-time Hand Gesture RecognitionPranav Kulkarni
 
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...Waqas Tariq
 
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...Tarek Gaber
 
Gesture recognition adi
Gesture recognition adiGesture recognition adi
Gesture recognition adiaditya verma
 
Real Time Head & Hand Tracking Using 2.5D Data
Real Time Head & Hand Tracking Using 2.5D Data Real Time Head & Hand Tracking Using 2.5D Data
Real Time Head & Hand Tracking Using 2.5D Data Harin Veera
 
IRJET- Hand Gesture Recognition System using Convolutional Neural Networks
IRJET- Hand Gesture Recognition System using Convolutional Neural NetworksIRJET- Hand Gesture Recognition System using Convolutional Neural Networks
IRJET- Hand Gesture Recognition System using Convolutional Neural NetworksIRJET Journal
 
Gesture Technology
Gesture TechnologyGesture Technology
Gesture TechnologyBugRaptors
 
Mobile Device For Electronic Eye Gesture Recognition
Mobile Device For Electronic Eye Gesture RecognitionMobile Device For Electronic Eye Gesture Recognition
Mobile Device For Electronic Eye Gesture RecognitionSrikanth Vishwakarma
 
Natural Hand Gestures Recognition System for Intelligent HCI: A Survey
Natural Hand Gestures Recognition System for Intelligent HCI: A SurveyNatural Hand Gestures Recognition System for Intelligent HCI: A Survey
Natural Hand Gestures Recognition System for Intelligent HCI: A SurveyEditor IJCATR
 
Gesture recognition techniques
Gesture  recognition techniques Gesture  recognition techniques
Gesture recognition techniques Akhil Garg
 
Gesture recognition technology
Gesture recognition technologyGesture recognition technology
Gesture recognition technologyKompal Neutan
 
Visual pattern recognition in robotics
Visual pattern recognition in roboticsVisual pattern recognition in robotics
Visual pattern recognition in roboticsIAEME Publication
 
Follow Me Robot Technology
Follow Me Robot TechnologyFollow Me Robot Technology
Follow Me Robot Technologyijsrd.com
 

What's hot (20)

gesture-recognition
gesture-recognitiongesture-recognition
gesture-recognition
 
IRJET- Mouse on Finger Tips using ML and AI
IRJET- Mouse on Finger Tips using ML and AIIRJET- Mouse on Finger Tips using ML and AI
IRJET- Mouse on Finger Tips using ML and AI
 
Movement Tracking in Real-time Hand Gesture Recognition
Movement Tracking in Real-time Hand Gesture RecognitionMovement Tracking in Real-time Hand Gesture Recognition
Movement Tracking in Real-time Hand Gesture Recognition
 
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...
Hand Segmentation Techniques to Hand Gesture Recognition for Natural Human Co...
 
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...
Sift based arabic sign language recognition aecia 2014 –november17-19, addis ...
 
Gesture recognition adi
Gesture recognition adiGesture recognition adi
Gesture recognition adi
 
Real Time Head & Hand Tracking Using 2.5D Data
Real Time Head & Hand Tracking Using 2.5D Data Real Time Head & Hand Tracking Using 2.5D Data
Real Time Head & Hand Tracking Using 2.5D Data
 
IRJET- Hand Gesture Recognition System using Convolutional Neural Networks
IRJET- Hand Gesture Recognition System using Convolutional Neural NetworksIRJET- Hand Gesture Recognition System using Convolutional Neural Networks
IRJET- Hand Gesture Recognition System using Convolutional Neural Networks
 
Gesture Technology
Gesture TechnologyGesture Technology
Gesture Technology
 
Virtual Mouse
Virtual MouseVirtual Mouse
Virtual Mouse
 
Mobile Device For Electronic Eye Gesture Recognition
Mobile Device For Electronic Eye Gesture RecognitionMobile Device For Electronic Eye Gesture Recognition
Mobile Device For Electronic Eye Gesture Recognition
 
Natural Hand Gestures Recognition System for Intelligent HCI: A Survey
Natural Hand Gestures Recognition System for Intelligent HCI: A SurveyNatural Hand Gestures Recognition System for Intelligent HCI: A Survey
Natural Hand Gestures Recognition System for Intelligent HCI: A Survey
 
Gesture recognition techniques
Gesture  recognition techniques Gesture  recognition techniques
Gesture recognition techniques
 
GESTURE TECHNOLOGY
GESTURE    TECHNOLOGYGESTURE    TECHNOLOGY
GESTURE TECHNOLOGY
 
Gesture recognition technology
Gesture recognition technologyGesture recognition technology
Gesture recognition technology
 
Visual pattern recognition in robotics
Visual pattern recognition in roboticsVisual pattern recognition in robotics
Visual pattern recognition in robotics
 
HAND GESTURE RECOGNITION FOR HCI (HUMANCOMPUTER INTERACTION) USING ARTIFICIAL...
HAND GESTURE RECOGNITION FOR HCI (HUMANCOMPUTER INTERACTION) USING ARTIFICIAL...HAND GESTURE RECOGNITION FOR HCI (HUMANCOMPUTER INTERACTION) USING ARTIFICIAL...
HAND GESTURE RECOGNITION FOR HCI (HUMANCOMPUTER INTERACTION) USING ARTIFICIAL...
 
Follow Me Robot Technology
Follow Me Robot TechnologyFollow Me Robot Technology
Follow Me Robot Technology
 
Test
TestTest
Test
 
Gesture vocalizer
Gesture vocalizerGesture vocalizer
Gesture vocalizer
 

Similar to Hand Gesture Controls for Digital TV using Mobile ARM Platform

Controlling Mouse Movements Using hand Gesture And X box 360
Controlling Mouse Movements Using hand Gesture And X box 360Controlling Mouse Movements Using hand Gesture And X box 360
Controlling Mouse Movements Using hand Gesture And X box 360IRJET Journal
 
IRJET-Real Time Hand Gesture Recognition using Finger Tips
IRJET-Real Time Hand Gesture Recognition using Finger TipsIRJET-Real Time Hand Gesture Recognition using Finger Tips
IRJET-Real Time Hand Gesture Recognition using Finger TipsIRJET Journal
 
10.1109@ecs.2015.7124874
10.1109@ecs.2015.712487410.1109@ecs.2015.7124874
10.1109@ecs.2015.7124874Ganesh Raja
 
Complex Weld Seam Detection Using Computer Vision Linked In
Complex Weld Seam Detection Using Computer Vision Linked InComplex Weld Seam Detection Using Computer Vision Linked In
Complex Weld Seam Detection Using Computer Vision Linked Inglenn_silvers
 
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...csandit
 
Ijarcet vol-2-issue-3-938-941
Ijarcet vol-2-issue-3-938-941Ijarcet vol-2-issue-3-938-941
Ijarcet vol-2-issue-3-938-941Editor IJARCET
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningIRJET Journal
 
HAND GESTURE CONTROLLED MOUSE
HAND GESTURE CONTROLLED MOUSEHAND GESTURE CONTROLLED MOUSE
HAND GESTURE CONTROLLED MOUSEIRJET Journal
 
project presentation on mouse simulation using finger tip detection
project presentation on mouse simulation using finger tip detection project presentation on mouse simulation using finger tip detection
project presentation on mouse simulation using finger tip detection Sumit Varshney
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable PeopleIRJET Journal
 
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTMVIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTMIRJET Journal
 
Ijarcet vol-2-issue-3-947-950
Ijarcet vol-2-issue-3-947-950Ijarcet vol-2-issue-3-947-950
Ijarcet vol-2-issue-3-947-950Editor IJARCET
 
Introduction to Virtual Reality
Introduction to Virtual RealityIntroduction to Virtual Reality
Introduction to Virtual RealityKAVITHADEVICS
 
Gesture Recognition Based Mouse Events
Gesture Recognition Based Mouse EventsGesture Recognition Based Mouse Events
Gesture Recognition Based Mouse Eventsijcsit
 
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardDevelopment of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardWaqas Tariq
 
Real time human-computer interaction
Real time human-computer interactionReal time human-computer interaction
Real time human-computer interactionijfcstjournal
 
Sign Language Identification based on Hand Gestures
Sign Language Identification based on Hand GesturesSign Language Identification based on Hand Gestures
Sign Language Identification based on Hand GesturesIRJET Journal
 
IRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET Journal
 
IRJET- Survey on Sign Language and Gesture Recognition System
IRJET- Survey on Sign Language and Gesture Recognition SystemIRJET- Survey on Sign Language and Gesture Recognition System
IRJET- Survey on Sign Language and Gesture Recognition SystemIRJET Journal
 

Similar to Hand Gesture Controls for Digital TV using Mobile ARM Platform (20)

Controlling Mouse Movements Using hand Gesture And X box 360
Controlling Mouse Movements Using hand Gesture And X box 360Controlling Mouse Movements Using hand Gesture And X box 360
Controlling Mouse Movements Using hand Gesture And X box 360
 
IRJET-Real Time Hand Gesture Recognition using Finger Tips
IRJET-Real Time Hand Gesture Recognition using Finger TipsIRJET-Real Time Hand Gesture Recognition using Finger Tips
IRJET-Real Time Hand Gesture Recognition using Finger Tips
 
10.1109@ecs.2015.7124874
10.1109@ecs.2015.712487410.1109@ecs.2015.7124874
10.1109@ecs.2015.7124874
 
Complex Weld Seam Detection Using Computer Vision Linked In
Complex Weld Seam Detection Using Computer Vision Linked InComplex Weld Seam Detection Using Computer Vision Linked In
Complex Weld Seam Detection Using Computer Vision Linked In
 
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
EMBED SYSTEM FOR ROBOTIC ARM WITH 3 DEGREE OF FREEDOM CONTROLLER USING COMPUT...
 
E0543135
E0543135E0543135
E0543135
 
Ijarcet vol-2-issue-3-938-941
Ijarcet vol-2-issue-3-938-941Ijarcet vol-2-issue-3-938-941
Ijarcet vol-2-issue-3-938-941
 
Sign Language Recognition using Machine Learning
Sign Language Recognition using Machine LearningSign Language Recognition using Machine Learning
Sign Language Recognition using Machine Learning
 
HAND GESTURE CONTROLLED MOUSE
HAND GESTURE CONTROLLED MOUSEHAND GESTURE CONTROLLED MOUSE
HAND GESTURE CONTROLLED MOUSE
 
project presentation on mouse simulation using finger tip detection
project presentation on mouse simulation using finger tip detection project presentation on mouse simulation using finger tip detection
project presentation on mouse simulation using finger tip detection
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable People
 
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTMVIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
VIDEO BASED SIGN LANGUAGE RECOGNITION USING CNN-LSTM
 
Ijarcet vol-2-issue-3-947-950
Ijarcet vol-2-issue-3-947-950Ijarcet vol-2-issue-3-947-950
Ijarcet vol-2-issue-3-947-950
 
Introduction to Virtual Reality
Introduction to Virtual RealityIntroduction to Virtual Reality
Introduction to Virtual Reality
 
Gesture Recognition Based Mouse Events
Gesture Recognition Based Mouse EventsGesture Recognition Based Mouse Events
Gesture Recognition Based Mouse Events
 
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 BoardDevelopment of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
Development of Sign Signal Translation System Based on Altera’s FPGA DE2 Board
 
Real time human-computer interaction
Real time human-computer interactionReal time human-computer interaction
Real time human-computer interaction
 
Sign Language Identification based on Hand Gestures
Sign Language Identification based on Hand GesturesSign Language Identification based on Hand Gestures
Sign Language Identification based on Hand Gestures
 
IRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually Impaired
 
IRJET- Survey on Sign Language and Gesture Recognition System
IRJET- Survey on Sign Language and Gesture Recognition SystemIRJET- Survey on Sign Language and Gesture Recognition System
IRJET- Survey on Sign Language and Gesture Recognition System
 

More from ijsrd.com

IoT Enabled Smart Grid
IoT Enabled Smart GridIoT Enabled Smart Grid
IoT Enabled Smart Gridijsrd.com
 
A Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of ThingsA Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of Thingsijsrd.com
 
IoT for Everyday Life
IoT for Everyday LifeIoT for Everyday Life
IoT for Everyday Lifeijsrd.com
 
Study on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTStudy on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTijsrd.com
 
Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...ijsrd.com
 
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...ijsrd.com
 
A Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's LifeA Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's Lifeijsrd.com
 
Pedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language LearningPedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language Learningijsrd.com
 
Virtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation SystemVirtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation Systemijsrd.com
 
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...ijsrd.com
 
Understanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart RefrigeratorUnderstanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart Refrigeratorijsrd.com
 
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...ijsrd.com
 
A Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingA Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingijsrd.com
 
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web LogsWeb Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logsijsrd.com
 
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMAPPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMijsrd.com
 
Making model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point TrackingMaking model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point Trackingijsrd.com
 
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...ijsrd.com
 
Study and Review on Various Current Comparators
Study and Review on Various Current ComparatorsStudy and Review on Various Current Comparators
Study and Review on Various Current Comparatorsijsrd.com
 
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...ijsrd.com
 
Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.ijsrd.com
 

More from ijsrd.com (20)

IoT Enabled Smart Grid
IoT Enabled Smart GridIoT Enabled Smart Grid
IoT Enabled Smart Grid
 
A Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of ThingsA Survey Report on : Security & Challenges in Internet of Things
A Survey Report on : Security & Challenges in Internet of Things
 
IoT for Everyday Life
IoT for Everyday LifeIoT for Everyday Life
IoT for Everyday Life
 
Study on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOTStudy on Issues in Managing and Protecting Data of IOT
Study on Issues in Managing and Protecting Data of IOT
 
Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...Interactive Technologies for Improving Quality of Education to Build Collabor...
Interactive Technologies for Improving Quality of Education to Build Collabor...
 
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...Internet of Things - Paradigm Shift of Future Internet Application for Specia...
Internet of Things - Paradigm Shift of Future Internet Application for Specia...
 
A Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's LifeA Study of the Adverse Effects of IoT on Student's Life
A Study of the Adverse Effects of IoT on Student's Life
 
Pedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language LearningPedagogy for Effective use of ICT in English Language Learning
Pedagogy for Effective use of ICT in English Language Learning
 
Virtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation SystemVirtual Eye - Smart Traffic Navigation System
Virtual Eye - Smart Traffic Navigation System
 
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...Ontological Model of Educational Programs in Computer Science (Bachelor and M...
Ontological Model of Educational Programs in Computer Science (Bachelor and M...
 
Understanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart RefrigeratorUnderstanding IoT Management for Smart Refrigerator
Understanding IoT Management for Smart Refrigerator
 
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
DESIGN AND ANALYSIS OF DOUBLE WISHBONE SUSPENSION SYSTEM USING FINITE ELEMENT...
 
A Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processingA Review: Microwave Energy for materials processing
A Review: Microwave Energy for materials processing
 
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web LogsWeb Usage Mining: A Survey on User's Navigation Pattern from Web Logs
Web Usage Mining: A Survey on User's Navigation Pattern from Web Logs
 
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEMAPPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
APPLICATION OF STATCOM to IMPROVED DYNAMIC PERFORMANCE OF POWER SYSTEM
 
Making model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point TrackingMaking model of dual axis solar tracking with Maximum Power Point Tracking
Making model of dual axis solar tracking with Maximum Power Point Tracking
 
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
A REVIEW PAPER ON PERFORMANCE AND EMISSION TEST OF 4 STROKE DIESEL ENGINE USI...
 
Study and Review on Various Current Comparators
Study and Review on Various Current ComparatorsStudy and Review on Various Current Comparators
Study and Review on Various Current Comparators
 
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
Reducing Silicon Real Estate and Switching Activity Using Low Power Test Patt...
 
Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.Defending Reactive Jammers in WSN using a Trigger Identification Service.
Defending Reactive Jammers in WSN using a Trigger Identification Service.
 

Recently uploaded

Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
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
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
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
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park 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
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
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
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 

Recently uploaded (20)

Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
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
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.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...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park 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
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
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)
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 

Hand Gesture Controls for Digital TV using Mobile ARM Platform

  • 1. IJSRD - International Journal for Scientific Research & Development| Vol. 1, Issue 5, 2013 | ISSN (online): 2321-0613 All rights reserved by www.ijsrd.com 1104 Abstract-- This paper presents a new approach for controlling digital television using a real-time camera. Proposed method uses a camera, a mobile ARM platform and computer vision technology, such as image segmentation and gesture recognition, to control TV operations such as changing channels, increasing or decreasing volume etc. For this we have used an ARM based mobile platform with OMAP processor. For processing the images we implemented the code using OpenCV library. Hand detection is one of the important stages for applications such as gesture recognition and hand tracking. In this paper, it proposes a new method to extract hand region and consequently the fingertips from color images. Keywords: Codeblocks, Fingertips detection, OMAP4430, OpenCV, Panda board. I. INTRODUCTION Gesture recognition is an art of computer science and language technology human gestures interpreted using various mathematical algorithms. Current focuses in the field include emotion recognition from the face and hand gesture recognition. There exist many techniques that use cameras and computer vision algorithms to interpret sign language. In this work, we are using hand gestures to control the Television operations such as increasing or decreasing the volume, changing the channels. In this project camera is connected to the ARM board through camera expansion connector. The image captured by camera will be processed to recognize the gestures. The processing of gestures will be done using mobile ARM platform. After processing the gestures the manipulated signals will be sent to the Television set controller to operate according to gestures. Following flowchart shows the sequence of processing. Figure 1: Overall Flowchart for the project II. ARM BASED PLATFORM The images captured by the camera should be processed very fast to provide real time interaction between user and television. For this purpose along with low cost we think to use ARM based Processors. Some of the reasons for the proliferation of ARM-based processors include: low cost, low-to-very-low power consumption, decent processing power, and open development environment. III. OPENCV OpenCV library [1] [2] is now playing a vital role in the Computer Vision field as it provides reduced cost and preparation time of computer vision research environment... One of the OpenCV’s goals is to provide a simple-to-use computer vision infrastructure that helps people build fairly sophisticated vision applications quickly. The OpenCV library contains over 500 functions that span many areas in image and video processing. IV. METHODOLOGY Gesture and voice-activated products will eventually migrate into all of our appliances and electronic devices making mice and remotes obsolete. We’ll be able to walk into a room and adjust the lights, turn on the stereo and browse the Internet simply by speaking commands or waving our hand. Vision-based user interfaces enable natural interaction modalities such as gestures. Such interfaces require computationally intensive video processing at low latency. We are trying to demonstrate an application that recognizes gestures to control TV operations. In vision based hand gesture recognition system, the movement of the hand is recorded by camera(s). In this work we implement the following, 1) Interfacing of camera or sensor to the USB port of the ARM mobile platform through camera connector. 2) Analysis the images those are captured by camera to find the specific gesture. This can be done by the following the steps as below Step: 1 Segmenting image into hand area and background based on the HSV values of the skin Step: 2 Removing the noise from image. The process is called De-noising. Step: 3 Computing the canter and size of the hand Step: 4 Finding and counting the tips of the hand region Step: 5 Finding the specific operation on the basis of figure count Hand Gesture Controls for Digital TV using Mobile ARM Platform Ajit S. Gundale1 Pallavi G. Potadar2 1, 2 Electronics Department Walchand Institute of Technology Solapur, Maharashtra (INDIA)
  • 2. Hand Gesture Controls for Digital TV using Mobile ARM Platform (IJSRD/Vol. 1/Issue 5/2013/0017) All rights reserved by www.ijsrd.com 1105 3) Interfacing of ARM mobile platform to the modern digital Television set to control the Television set. The detailed block diagram of the prototype is shown below In figure 2. Fig. 2: Block Diagram The input images captured by the camera are processed to detect the gestures is an ARM mobile platform. This input is processed using functions in OpenCV library. Block diagram shows camera sensor, power supply, and display and SD card. The operating system and application program reside in SD card. V. HAND GESTURE RECOGNITION The system order is shown in Figure 5 [3]. Initially, when we will get an image from the camera, we convert the color space RGB to YCbCr. Then, we will define a range of colors as ‘skin color’ and will convert these pixels to white; all other pixels will be converted to black. Then, we will compute the centroid of the dorsal region of the hand. After we identify the hand, we will find the circle that best fits this region and multiply the radius of this circle by some value to obtain the maximum extent of a ‘non-finger region’. From the vertex and center distance, we will obtain the positions of the active fingers Fig. 3: An overview of our hand gesture recognition. Input image converted to binary image to separate hand from background. Center of hand and computed calculated radius of hand found. A. Input Image Camera or sensor will be used to capture the images when the user wants to control the TV. The limiting distance may depend on FOV (Field Of View) of camera. B. Segmentation Next, we need to separate the hand area from a complex background. It is difficult to detect skin color in natural environments because of the variety of illuminations and skin colors. To get better results, we converted from RGB color space to YCbCr color space, since YCbCr is insensitive to color variation. Generally for skin Y, Cr and Cb values are in the range of 0 to 255, 77 to 127, and 133 to 173 respectively. C. Deleting noise Using this approach, we cannot get a good estimate of the hand image because of background noise. To get a better estimate of the hand, we will need to delete noisy pixels from the image. We can use an image morphology algorithm that performs image erosion and image dilation to eliminate noise [4]. Erosion trims down the image area where the hand is not present and Dilation expands the area of the Image pixels which are not eroded. D. Finding center and the size of the hand After segmenting hand region and background, we can calculate the center of the hand with the following equation: Where xi and yi are x and y coordinates of the i pixel in the hand region, and k denotes the number of pixels in the region. After we will locate the center of the hand, we can compute the radius of the palm region to get hand size. E. Finding finger tip The finger count is determined as in [5]. The centroid of the segmented binary image of the hand is calculated. Then the length of the largest active finger is found by drawing the bounding box for the hand. The centroid calculated is made as the Centre and the value of radius is the length of the largest finger multiplied by 0.7 [4]. With the centroid as Centre and length of the largest finger multiplied with 0.7 as radius a circle is drawn to intersect with the active fingers of the hand. If a finger is active then it intersects with the circle. Fig. 4: Example showing the result of finger count algorithm.
  • 3. Hand Gesture Controls for Digital TV using Mobile ARM Platform (IJSRD/Vol. 1/Issue 5/2013/0017) All rights reserved by www.ijsrd.com 1106 We assigned control operation to the number of fingers as shown in the table below. Those control signals are transmitted using IR LED connected to ARM platform. Finger count Functions 0 Turn OFF 1 Turn ON 2 Previous Channel 3 Next Channel 4 Decrease Volume 5 Increase Volume Table 1: Gestures and Their Functions VI. PERFORMANCE EVALUATION In this method we used Panda board [6] as a mobile ARM platform. The heart of Panda Board is the OMAP4430 processor. The OMAP4430 high-performance multimedia application device is based on enhanced OMAP™ architecture. The architecture is designed to provide best-in- class video, image, and graphics processing sufficient to various applications. Fig. 5: OMAP4430 Panda Board Fig. 6: Counting Fingers Fig. 7 : Counting Fingers The device supports the following functions: 1) Streaming video up to full high definition (HD) (1920 × 1080 p, 30 fps) 2) 2-dimensional (2D)/3-dimensional (3D) mobile gaming 3) Video conferencing 4) High-resolution still image (up to 16 Mp) The Platform also includes connectors that can be used for additional functionality and/or expansion purposes. Those are, 1) Camera Connector 2) LCD Expansion Connectors 3) Generic Expansion Connectors 4) Composite Video Header Camera is connected to Panda board through USB. The output control signals are transmitted using IR LEDs. With this setup Fig. 6, 7, 8, 9 and 10 are results are obtained. Fig. 8: Counting fingers Fig. 9: Counting fingers
  • 4. Hand Gesture Controls for Digital TV using Mobile ARM Platform (IJSRD/Vol. 1/Issue 5/2013/0017) All rights reserved by www.ijsrd.com 1107 Fig. 10: Counting Fingers VII. RESULTS Table shows the performance of our approach comparatively with that of all other approaches on their test results using their own database test images in terms of recognition time, accuracy, resolution, number of tested images, background. Reference No. of Postures Recognition Time % Accuracy No. of Test Image Background [Chung09] 15 0.4 94.89 30 Wall [Fang07b] 6 0.09 – 0.11 93.8 195-221 Cluttered [Yun09] 3 0.1333 96.2 130 Different [Chen07] 4 0.03 90.0 100 White wall [Ren10] 8 0.06667 96.9. 300 Not discussed [Marcel99] 6 Not discussed 93.4 57-76 Wall [Marcel99] 6 Not discussed 76.1 38-58 Cluttered Proposed Method 6 0.05089 96% 50 Wall Table. 2: Comparison between various approaches After successful recognition of gestures, the remote control codes are transmitted using IR LED which is connected to Panda board. VIII. CONCLUSION In today’s digitized world, processing speeds have increased dramatically, with computers being advanced to the levels where they can assist humans in complex tasks. From the performance analysis we can see that gestures are recognized in only 50 mSec with 96% accuracy. Technologies developed based on gesture are now really affordable and converged with familiar and popular technologies like TV, large screen. We will also conclude that a lot of applications can be created by using just the finger count of a hand provided we will be able to distinguish between the fingers. The fast and efficient algorithm for gesture recognition will be cost effective if used with mobile ARM platform. REFERENCES [1] “Learning OpenCV” by Gary Bradski and Adrian Kaehler [2] Willow Garage, http://www.willowgarage.com. [3] Hojoon Park Department of Computer Science Brown University, Providence, RI, USA, hojoon@cs.brown.edu [4] Computer vision based mouse, A. Erdem, E. Yardimci, Y. Atalay, V. Cetin, A. E. Acoustics, Speech, and Signal Processing, 2002. Proceedings. (ICASS). IEEE International Conference [5] Ram Rajesh J, Sudharshan R, Nagarjunan D, Aarthi R, “Remotely controlled PowerPoint presentation navigation using hand gestures”, and unpublished. [6] http://pandaboard.org. [7] [Chung09] W. Chung, X. Wu, and Y. Xu, “A real-time hand gesture recognition based on Haar wavelet representation,” in Proc. IEEE Int. Conf. Robot. Biomimetics, 2009, pp. 336–341 [8] [Fang07b] Y. Fang, K. Wang, J. Cheng, and H. Lu, “A real-time hand gesture recognition method,” in Proc. IEEE Int. Conf. Multimedia Expo, 2007, pp. 995–998. [9] [Chen07] Q. Chen, N. Georganas, E. Petriu, “Real-time Vision-based Hand Gesture Recognition Using Haar- like Features”, IEEE Instrumentation and Measurement Technology Conference Proceedings, IMTC 2007 [10][Ren10] Y. Ren and C. Gu, “Real-time hand gesture recognition based on vision,” in Proc. Edutainment, 2010, pp. 468–475. [11][Yun09] L. Yun and Z. Peng, “An automatic hand gesture recognition system based on Viola-Jones method and SVMs,” in Proc. 2nd Int. Workshop Comput. Sci. Eng., 2009, pp. 72–76. [12][Marcel99] S. Marcel, “Hand posture recognition in a body-face centered space,” in Proc. Conf. Human Factors Comput. Syst. (CHI), 1999, pp. 302–303.