Intro In our recent blog we have talked about software installation guide to setup and begin automation of home appliances that can be used to detect human.

Slides:



Advertisements
Similar presentations
Efficient Path Determining Robot RIT Computer Engineering Senior Design Project Jamie Greenberg Jason Torre October 26, 2004 A motorized robot will navigate.
Advertisements

How Clients and Servers Work Together. Objectives Learn about the interaction of clients and servers Explore the features and functions of Web servers.
Video Surveillance Capturing, Management and Analysis of Security Videos. -Abhinav Goel -Varun Varshney.
Networking Components Chad Benedict – LTEC
Knowledge Systems Lab JN 8/24/2015 A Method for Temporal Hand Gesture Recognition Joshua R. New Knowledge Systems Laboratory Jacksonville State University.
CECS 5460 – Assignment 3 Stacey VanderHeiden Güney.
DEC0905 Remote Control of Home Appliances ABSTRACT The objective of this project is to enable users to remotely control home appliances and systems over.
Knowledge Systems Lab JN 9/10/2002 Computer Vision: Gesture Recognition from Images Joshua R. New Knowledge Systems Laboratory Jacksonville State University.
Computer Concepts 2014 Chapter 5 Local Area Networks.
Smartmote What your television remote should have been.
PROPOSAL : The Use of Voice Command in Operating Personal Computer By : COLLEGE OF ART & SCIENCE UNIVERSITI UTARA MALAYSIA STIW5023 ADVANCED PROGRAMMING.
Network Components By Kagan Strayer. Network Components This presentation will cover various network components and their functions. The components that.
Third International Workshop on Networked Appliance 2001 SONA: Applying Mobile Agent to Networked Appliance Control S.Aoki, S.Makino, T.Okoshi J.Nakazawa.
Horizon Photo-mote. ability to access photographs and images stored online, with the aid of a wireless remote remote enables the user to identify and.
Over the recent years, computer vision has started to play a significant role in the Human Computer Interaction (HCI). With efficient object tracking.
TOUCHLESS TOUCHSCREEN USER INTERFACE
NETWORK VIDEO SURVEILLANCE. CCTV Closed-Circuit Television (CCTV) is the use of video cameras to transmit signal to a specific place on a designated device.
Allyson Coan Adult Services Librarian June 13, 2016 iPad Basics Part 1.
CHAPTER 7 Operating System Copyright © Cengage Learning. All rights reserved.
Introduction to Input Devices. Input Devices Units that gather information and transform that information into a series of electronic signals for the.
Network Concepts.
INTERNET PROTOCOL TELEVISION (IP-TV)
NETWORK AND COMMUNICATIONS
The New User Interface MEDITECH Training & Education.
Fundamentals of Information Systems, Sixth Edition
Hand Gestures Based Applications
Wadley Medical Education Center
SIXTH SENSE TECHNOLOGY
Project Target Develop a Web Based Management software suit that will enable users to control Hardware using standard HTTP & Java Applet compatible web.
Objectives Overview Explain why computer literacy is vital to success in today’s world Define the term, computer, and describe the relationship between.
Health Professional Education Building
TrueView People Counter
Configure Instruction
Chapter 4 Computer Networks – Part 2
Topics Introduction Hardware and Software How Computers Store Data
GUI Design and Coding PPT By :Dr. R. Mall.
Haiwell PLC Modules Introduce
System Design Ashima Wadhwa.
Wireless 4 Buttons Touch Panel
Router Startup and Setup
NETWORK TOPOLOGIES There are three basic configurations used to connect computers they are the Bus Ring Star.
LECTURE Course Name: Computer Application
Software Design Team KANG Group 1.
Introduction to Operating System (OS)
Lecture 2 Introduction to Programming
Data Networking Fundamentals
Home Automation System
Digital Health Network Appliances
Introduction to Computers
Chapter 3: Windows7 Part 4.
Dayton Metro Library Computer Basics September 19, 2018
INTERNET PROTOCOL TELEVISION (IP-TV)
Network Concepts Devices
Windows Internet Explorer 7-Illustrated Essentials
Mixed Reality Server under Robot Operating System
Network Devices Hub Definition:
Dayton Metro Library Place photo here Computer Basics December 8, 2018.
GRAPHICAL USER INTERFACE
Training Module Introduction to the TB9100/P25 CG/P25 TAG Customer Service Software (CSS) Describes Release 3.95 for Trunked TB9100 and P25 TAG Release.
REMOTE POWER MONITORING OF MARINE SITES
Router Startup and Setup
Tareq Khan, Ph.D. Assistant Professor,
Chapter 2: Operating-System Structures
Infrared Home Controller
OSI Reference Model Unit II
OSI Model 7 Layers 7. Application Layer 6. Presentation Layer
Windows Operating System
Networks :: Wireless Networks
INTERNET OF THINGS BY S DEVA PRIYA. WHAT IS IOT?  The internet of things, or IoT, is a system of interrelated computing devices, mechanical and digital.
AN INEXPENSIVE ROBOTIC KIT FOR CHILDREN EDUCATION
Presentation transcript:

Intro In our recent blog we have talked about software installation guide to setup and begin automation of home appliances that can be used to detect human hand gesture to control home appliances. We are now in the 2nd part of the blog where we intend to develop an application that is built on RASBERRY PI using java and computer vision APIs. It will detect the hand gesture and consequently pass the signals to IR device which will then perform appropriate home automation. This blogs guides you with the complete procedure for detecting human hand gesture and interacting with hardware/home appliances.

The role of the application in implementing hand gesture recognition for home automation. Process Application and IR device must be part of same network. Application capture camera input continuously. From captured image frames, Hand gesture is detected using OpenCV data structure/algorithms. Appropriate signals are found and consequently passed on to IR device (HTTP call) with proper command (Ex ON/OFF) to external device.

Below are the core functionalities and modules that an application contains: Gesture detection – The application contains open computer vision APIs. OpenCV and JavaCV process the camera input and apply algorithms to process their frames. Smart Config – It is the heart of application that can talk with IR device to control external device.This module has two modes: Learning and Execution. During Learning mode, It configures IR device using TI Smart config protocol. it monitors and records data sequence for different infrared sequence for home appliances operations. During Execution mode, it can send the recorded sequences to IR device, which are converted by IR device into infrared sequence to control different devices. Signal Processing – It is a remote processing part of the application, in which application stores the signals and passes it to IR device for further operation.

Technologies used in implementing hand gesture recognition. OpenCV In the project we use OpenCV contours for recognizing the hand image. Contours can be explained simply as a curve joining all the continuous points (along the boundary), having same color or intensity. The contours are a useful tool for shape analysis and object detection and recognition. For better accuracy, use binary images. So before finding contours, apply threshold or canny edge detection. findContours function modifies the source image. So if you want source image even after finding contours, already store it to some other variables. In OpenCV, finding contours is like finding white object from black background. So remember, object to be found should be white and background should be black.

Method / Algorithms to detect hand from video frame: Briefly let us look at the several ways to process a frame to detect the hand and their gestures: Background Subtraction– A simple method to start with is we can subtract the pixel values. However this will result in negative values and values greater than 255, which is the maximum value used to store an integer. And what if we have a black background? Nothing gets subtracted in that case. Instead we use an inbuilt background sub-tractor based on a Gaussian Mixture-based Background/Foreground Segmentation Algorithm. Background subtraction involves calculating a reference image, subtracting each new frame from this image and threshold the result which results is a binary segmentation of the image which highlights regions of non-stationary objects .We then use erosion and dilation to enhance the changes to make it more prominent.

Color detection – The skin color detection is one of the most popular methods. This method is simple and depends on skin color that can be white, black, or other colors, and the environment light conditions, as well as the background.

Edge detection– It is an edge detection operator that uses a multi-stage algorithm to detect  wide range of edges in images, It’s aim is to satisfy the below criteria: Lower Error Rate Good Localization Minimal Response

Note – For our solution we have used color detection method to detect hand from frame with user skin color. Application itself has GUI to detect user hand skin color and persist for further application uses. After analyzing the application side requirements let’s move on to middle level device for further communication called IR device.

IR Device IR device works as IR transreceiver. It is used to record IR command for different appliances and that recorded sequence is used to control appliances based on different gestures detected in previous phase. IR device can be connected to TV, set-top boxes, stereos, air conditioners and other appliances and then can pass infrared remote control signal and start the home appliance.

After understanding the all the devices, lets now understand the procedure to develop the application.

Guide to develop the Application Home automation is the residential extension of building automation and involves the control and automation of lighting, air conditioning, and security, as well as home appliances such as washer/dryers, television, ovens or refrigerators/freezers use Wi-Fi for remote monitoring. Modern systems generally consist of switches and sensors connected to a central hub sometimes called a “gateway” from which the system is controlled with a user interface that is interacted either with a wall-mounted terminal, mobile phone software, tablet computer or a web interface, often but not always via internet cloud services. The application we have developed has a user interface which is able to manage devices and communication path. It has a robust feature to make device as habituate by their Learning Mode and Execution Mode.

 SmartConfig It’s a Wi-Fi setup process that allows multiple in-home devices to connect to Wi-Fi networks quickly and efficiently. It is specifically for applications that typically do not have a display or keyboard to enter network name and password. SmartConfig interface gives end users the ability to easily connect IR devices to an access point. Through a simple SmartConfig method/interface, consumers can use any programming concept to create own application using SmartConfig Interface. Connect IR device / hardware with application, is a first step to connect IR device to application by sending Broadcast Datagram packets with network (Wi-Fi) details (SSID and Password).

This process is able to send and receive broadcast datagram packets and make connection with application and IR hardware device.  Application has a GUI (Graphical User Interface) that allow user to connect device. Application first check whether any IR device is already connected, if not than it will prompt a window to connect device with some validations as.

Application creates a socket connection with host (Router) and sends broadcast datagram packets with SSID and password to get connected with IR device and wait for acknowledgment from IR smart device.

Device learning – After IR device is connected with the application, the user is able to setup commands/signal for home appliances based on their hand gesture, and it starts with a learning step. In learning phase user is able to setup one or multiple instructions or command for multiple devices using GUI of application. Our current implementation has basic gestures like 0-5 count, up-down, left-right. Based on user configuration, application will operate their attached devices. For e.g.:  Increase TV volume on Up-Down movement of hand.

After learning phase, you are ready to operate your home appliances with your hand gestures. Now user can Switch On, Off the TV and also manage volume in our application implementation We have configured 6-7 command to operate TV as: ON, OFF, Volume Up- Down, Mute, Open menu bar, Exit menu bar and their operations.

Signal Processing (Remote service)- Our application is able to detect hand gesture and pass the IR signal to configured home appliances according to human hand gesture. Application is capable of managing User interaction, IR device communication, signal and skin color persistence. Application gateway is incorporated to connect smart home appliances, and an IOT connection management platform is required to enable various applications.

These applicable solutions include: home automation, which idyllically promotes happier, and more comfortable and convenient lifestyle. The solution will help operators to transform from traditional home broadband services to provide intelligent home services.

IR Signal Execution (IR signal transmission)

Conclusion Home automation using Raspberry pi through hand gesture recognition hence is a significant undertaking in IoT domain. With improved convenience, comfort, energy efficiency and security under IoT domain, it has proved to be incredibly beneficial for both individual and society. So What’s next In our next blog we are going to look at real time working application demo and step by step code snippet of the application. So let’s grab the opportunity and look what the next blog brings.

Original Source : http://www. azilen

Let us know if you have any Question! Thanks You www.azilen.com Let us know if you have any Question!