Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm

Size: px
Start display at page:

Download "Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm"

Transcription

1 Fall Detection System based on Kinect Sensor using Novel Detection and Posture Recognition Algorithm Choon Kiat Lee 1, Vwen Yen Lee 2 1 Hwa Chong Institution, Singapore choonkiat.lee@gmail.com 2 Institute for Infocomm Research, A*STAR, Singapore vyalee@i2r.a-star.edu.sg Abstract. Elderly suffers from injuries or disabilities through falls every year. With a high likelihood of falls causing serious injury or death, falling can be extremely dangerous, especially when the victim is home-alone and is unable to seek timely medical assistance. Our fall detection systems aims to solve this problem by automatically detecting falls and notify healthcare services or the victim s caregivers so as to provide help. In this paper, development of a fall detection system based on Kinect sensor is introduced. Current fall detection algorithms were surveyed and we developed a novel posture recognition algorithm to improve the specificity of the system. Data obtained through trial testing with human subjects showed a 26.5% increase in fall detection compared to control algorithms. With our novel detection algorithm, the system conducted in a simulated ward scenario can achieve up to 90% fall detection rate. Keywords: Fall Detection, Kinect, Posture Recognition 1 Introduction The progressive aging of population has become a major social challenge for countries around the world. As more elderly begin living with health problems and are home-alone, they require increasing assistive support in daily activities. For the elderly, involuntary falls are frequent. Annual statistics show that one in every three adults age 65 and older in the USA have recently suffered a fall [1]. Falls cause a loss in quality of life for the fallen elderly and can be more dangerous due to the fact that the victim can easily lose consciousness and thus become unable to seek help if they are home alone, which is detrimental to their long-term health if the accident is serious and undetected [2]. Thus, in order to avoid this scenario, fall detection 1 Lee Ah Mooi Old Age Home, 1 Thomson Lane, , Singapore

2 systems that are capable of identifying and notifying caregivers when the elderly fall are very much essential in the bid to provide assistive services to the elderly. Current fall detection systems have fall detection rates of 70% to 80% [3], which might be unconvincing to some consumers when making decisions on purchasing such systems. Other technologies such as the uses of floor sensors [4] have shown fall detection rates of about 90%, but may suffer from other problems that limit its use such as vulnerability to spillages, etc. We aim to develop and test a fall detection system that utilizes the Microsoft Kinect sensor and our novel fall detection algorithm to determine automatically if a fall has occurred. We propose our fall detection system which is optimized using current preliminary datasets and when used in conjunction with our novel posture recognition algorithm, help us to achieve a significantly higher specificity rate of fall detection, up to 90% accuracy rate in an actual test with a real human subject. 2 Fall Detection System In this project, we aim to create a fall detection system (Fig. 1 & 2) for use in confined areas like the bedrooms or washrooms in single room apartments. This constraint is in place as the project is targeted towards the detection of falls for homealone elderly who normally live in such apartments. The Kinect sensor is placed in a tilted position to maximise its coverage of the room, although one or two more sensors could also be employed to cover all blindspots. Our system is also able to operate in situations with little or no light, therefore making it possible for the Kinect to track human activity both in the day and night[5], something that conventional stereo video camera systems are unable to do. This makes it especially useful as most falls by the elderly happen at night when visibility is poor, improving the effectiveness of our fall detection system. Depth images of the surroundings captured by the Kinect are processed by the Microsoft Kinect SDK to return a pipeline of information that provides our fall detection system with skeletal data. Up to 2 user's skeletons can be tracked, with the skeletal data of the user then subsequently passed to our algorithm as described in section 3 for further processing. If a fall is detected, we would relay a signal to an alarm system to sound an alert. Fig. 1: Setup of our fall detection system Fig. 2: Block diagram of our fall detection system

3 3 Fall Detection Algorithm 3.1 Our Fall Detection Algorithm Skeletal data received from the Kinect sensor is processed by functions 1 & 2. If both functions return a positive result, a fall is tentatively indicated. After that, our postural recognition algorithm is then applied to reduce the amount of false positives returned by our fall detection algorithm, resulting in a fall detection algorithm that manages to achieve relatively high sensitivity and specificity. A preliminary dataset of 10,479 frames of skeletal data from the Kinect comprising 34 fall and non-fall events were used to optimize our enhanced fall detection algorithm Function 1 (Checking position of user s centre of mass) Our algorithm checks if the real world coordinates of the user s hip centre (roughly representative of the person s centre of mass) obtained from the Kinect is within a certain threshold distance from the floor Function 2 (Checking velocity of user s centre of mass) Many current algorithms that make use of the centre of mass are unable to accurately detect slow falls because the measured vertical velocity in slow falls tends to be relatively lower than that measured during a normal fall. Therefore pre-set threshold values are normally not exceeded and the slow fall is not detected. Figure 3 shows the different velocities of the user s hip centre joint where the vertical velocity of the slow fall did not exceed the threshold, resulting in no falls being detected. Our algorithm separates the velocity of the user s hip centre into two components. The first component is the vertical velocity of the hip centre, while the second component is the velocity of the hip centre with respect to the vector sum of the displacement of the hip centre in both the x and z directions, thus giving us the horizontal component of the hip centre s velocity. Fig. 3: Graph showing different velocities of the user s hip centre joint for both the slow fall (solid lines) and the vertical fall (dotted line). Fig. 4: Diagram fall detection rates when the threshold corresponding to score 3 in table 1 is varied. As the value of VV<1.9 gave us one of the highest fall detection rates it was used in our table of scores (table 1)

4 The different velocities of the user s hip centre are given different scores for the vertical and horizontal velocities (an example is shown in Table 1). Our fall detection algorithm checks if the combined scores for both the vertical and horizontal component exceed our pre-set overall threshold score. The table of scores shown in Table 1 was optimized by varying the parameters individually (Fig. 4) until a maximum fall detection rate on the preliminary dataset of falls was obtained. Table 1 Table showing how the scoring system was applied for vertical velocities Score Vertical velocity of user s hip centre, VV / m s -1 Remarks 0 VV > -0.9 Representative of negligible vertical velocity typical of everyday activities Representative of a small vertical velocity that is typical of a slow horizontal fall, 1-0.9> VV > -1.4 but not low enough to be triggered by everyday activities 2-1.4> VV > -1.6 Representative of a moderate vertical velocity typical of a fast horizontal fall 3 VV < -1.6 Representative of a large vertical velocity typical of a vertical fall This new method of fall detection provides two main benefits: 1. It is more sensitive to falls in any direction than conventional fall detection systems as both the horizontal and vertical components of velocity of the user s hip centre are taken into account 2. It is less prone to false positives generated by large horizontal movements by the user than conventional fall detection systems Postural Recognition Algorithm Due to the multiple similarities between falls that are classified as false positive and actual real falls, most current fall detection systems have difficulty differentiating between these two classifications [6]. We demonstrate this similarity with results in Figure 5 using our own data, where the monitored subject s velocity is similar for an actual fall and an action of just bending down. To resolve this problem, we developed a novel postural recognition algorithm that separates the false positives from actual real falls by checking the user s posture to determine the likelihood that the user has been involved in a fall when previous functions 1 and 2 return positive results. Classified Posture using rule no. Sitting on the floor both legs 1 1 folded behind 2 Kneeling on the floor 1 3 Squatting 1 Bending down (to wear shoes 2 4 or tie shoelaces) Fig. 5: Graph showing different velocities of the user s hip centre joint for bending down (solid lines) and for an actual fall (dotted line). Table 2: List of false positive postures considered *Feature 1: User s Ankles have to be below the user s hip centre Feature 2: One of the user s legs is either folded below his body or one knee is significantly higher than the other

5 In order for our postural recognition system to correctly identify these postures, two main defining features were identified in order to separate fallen postures from other possible postures. These two features were refined and checked against previously obtained skeletal data of postures to ensure their specificity. 4 Results In order to test the actual effectiveness of our system, we conducted a trial experiment that was simulated as closely to the actual conditions where our fall detection system would be deployed. We want to test the robustness of our fall detection system by conducting tests within a setting that is previously unknown to the system. A nursing ward was recreated within our laboratory to provide a realistic setting that is similar to wards found in Lee Ah Mooi Old Folk s Home. A hospital bed was placed in the corner of our ward, with PVC pipes representing the walls of the ward and the Kinect sensor was deployed at the top corner of our ward. The three kinds of falls that frequently occur within the Home were then simulated by our volunteers to replicate the kind of conditions that our fall detection system will face when deployed at the Home. Fig. 6.1 shows our experimental setup, while Fig. 6.2 shows a screenshot of our fall detection system user interface during the experiment. Fig. 6.1 Picture showing experimental setup Fig. 6.2 Screenshot of fall detection system user interface running on laptop Our fall detection system is capable of processing incoming sensor information and displaying of results concurrently without a loss in processing speed or performance degradation. By connecting an SMS gateway or alert module to the system, we can detect falls within half a second of the fall and subsequently alert the caregivers. The system automatically starts when someone enters the field of vision of the Kinect sensor. By producing a stickman display (Fig. 6.2) for display purposes which users can choose to hide, we also managed to preserve the user s privacy. Initial results show that most falls that include falling from the bed or in open spaces were accurately identified by our fall detection system. Multiple other kinds of non-fall events were also accurately detected by our fall detection algorithm and correctly classified, mainly due to the assistance from our novel posture recognition algorithm that points out abnormalities in the data obtained through the sensors, thus demonstrating the usefulness of our posture recognition algorithm in recognizing and

6 differentiating falls. Our system is able to achieve an overall specificity rate of up to 90% and our algorithms helped improve the fall detection rate such that we could detect all falls (100%) in certain situations, where conditions are optimal. This includes situations where more sensor information allows us to perform inference in order to provide a more accurate assessment. However, further analysis also showed that there were occasions where the system was not able to classify actual falls. For example, a user might fall off the chair and the fall is undetected, due to the fall taking place in a low position, and reduced time required by the system to measure a significant increase in user s velocity while he is falling, hence resulting in the system not being able to correctly detect the fall. We have detailed data (Fig. 7) and information regarding this kind of misclassification and also have a solution for this problem and are currently working on correcting this issue so as to ensure that it does not occur again in subsequent modifications. 5 Conclusions Our fall detection system is able to detect and identify falls using the Kinect sensor within confined spaces at a relatively high specificity rate when compared to usage of control algorithms. The system also uses our novel posture recognition algorithms to enhance our detection rate and ensures robustness during deployment. Overall, with sufficient sensor information while maintaining user s privacy, our fall detection system is able to automatically recognise falls and notify healthcare services to provide timely assistance to elderly who have fallen. References [1] George, F. F. (2000). Falls in the elderly. Am Fam Physician, 61(7), (pp ) [2] Wild, D., Nayak, U. S., & Isaacs, B. (1981). How dangerous are falls in old people at home?. British medical journal (Clinical research ed.), 282(6260), 266 [3] Perry, J. T., Kellog, S., Vaidya, S. M., Youn, J. H., Ali, H., & Sharif, H. (2009, December). Survey and evaluation of real-time fall detection approaches. In High-Capacity Optical Networks and Enabling Technologies (HONET), th International Symposium on (pp ). IEEE. [4] Rimminen, H., Lindstrom, J., Linnavuo, M., & Sepponen, R. (2010). Detection of falls among the elderly by a floor sensor using the electric near field. Information Technology in Biomedicine, IEEE Transactions on, 14(6), [5] Yu, X. (2008, July). Approaches and principles of fall detection for elderly and patient. In e-health Networking, Applications and Services, HealthCom th International Conference on (pp ). IEEE. [6] Gadre, K. R. (2012). Fall Detection System Using Low Cost Computing (Doctoral dissertation, University of Missouri).

THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE)

THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE) THE ACCURATE FALLING DETECTION SYSTEM FOR THE ELDERLY (AFDE) Jie Ni Dorette Ong 1, Huijie Zhang 1, Vwen Yen Alwyn Lee 2, Clifton Phua 2, Kelvin Sim 2, Yan Liu 3 and Xian Zhang 3 1 Raffles Girls School

More information

Automatic Fall Detector based on Sliding Window Principle

Automatic Fall Detector based on Sliding Window Principle Automatic Fall Detector based on Sliding Window Principle J. Rodriguez 1, M. Mercuri 2, P. Karsmakers 3,4, P.J. Soh 2, P. Leroux 3,5, and D. Schreurs 2 1 UPC, Div. EETAC-TSC, Castelldefels, Spain 2 KU

More information

Privacy Preserving Automatic Fall Detection for Elderly Using RGBD Cameras

Privacy Preserving Automatic Fall Detection for Elderly Using RGBD Cameras Privacy Preserving Automatic Fall Detection for Elderly Using RGBD Cameras Chenyang Zhang 1, Yingli Tian 1, and Elizabeth Capezuti 2 1 Media Lab, The City University of New York (CUNY), City College New

More information

WIRELESS BLACK BOX USING MEMS ACCELEROMETER AND GPS TRACKING FOR ACCIDENTAL MONITORING OF VEHICLES

WIRELESS BLACK BOX USING MEMS ACCELEROMETER AND GPS TRACKING FOR ACCIDENTAL MONITORING OF VEHICLES WIRELESS BLACK BOX USING MEMS ACCELEROMETER AND GPS TRACKING FOR ACCIDENTAL MONITORING OF VEHICLES PROJECT REFERENCE NO. : 37S0430 COLLEGE BRANCH GUIDE : S.G.BALEKUNDRI INSTITUTE OF TECHNOLOGY,BELGAUM

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION 21 CHAPTER 1 INTRODUCTION 1.1 PREAMBLE Wireless ad-hoc network is an autonomous system of wireless nodes connected by wireless links. Wireless ad-hoc network provides a communication over the shared wireless

More information

A Real-Time Fall Detection System in Elderly Care Using Mobile Robot and Kinect Sensor

A Real-Time Fall Detection System in Elderly Care Using Mobile Robot and Kinect Sensor International Journal of Materials, Mechanics and Manufacturing, Vol. 2, No. 2, May 201 A Real-Time Fall Detection System in Elderly Care Using Mobile Robot and Kinect Sensor Zaid A. Mundher and Jiaofei

More information

oncaring onall tech specs @2014.12

oncaring onall tech specs @2014.12 oncaring onall tech specs @2014.12 CONTENTS Overall Description... 2 Helping to deliver tangibly differentiated care service with quality... 2 Main Features... 2 Application Domains... 3 How onall Works...

More information

A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA

A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA A PHOTOGRAMMETRIC APPRAOCH FOR AUTOMATIC TRAFFIC ASSESSMENT USING CONVENTIONAL CCTV CAMERA N. Zarrinpanjeh a, F. Dadrassjavan b, H. Fattahi c * a Islamic Azad University of Qazvin - nzarrin@qiau.ac.ir

More information

Report of Research Results

Report of Research Results Report of Research Results Scaling and Deployment of e-guardian to Eldercare Centers and Single Elderly Homes Primary Researcher: Prof. Tan Kok Kiong, Department of Electrical and Computer Engineering

More information

Recognition of Day Night Activity Using Accelerometer Principals with Aurdino Development Board

Recognition of Day Night Activity Using Accelerometer Principals with Aurdino Development Board Recognition of Day Night Activity Using Accelerometer Principals with Aurdino Development Board Swapna Shivaji Arote R.S. Bhosale S.E. Pawar Dept. of Information Technology, Dept. of Information Technology,

More information

Fall Detection System using Accelerometer Principals with Arduino Development Board

Fall Detection System using Accelerometer Principals with Arduino Development Board ISSN: 2321-7782 (Online) Volume 3, Issue 9, September 2015 International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online

More information

Web-based home rehabilitation gaming system for balance training

Web-based home rehabilitation gaming system for balance training Web-based home rehabilitation gaming system for balance training V I Kozyavkin, O O Kachmar, V E Markelov, V V Melnychuk, B O Kachmar International Clinic of Rehabilitation, 37 Pomiretska str, Truskavets,

More information

Vision-Based Blind Spot Detection Using Optical Flow

Vision-Based Blind Spot Detection Using Optical Flow Vision-Based Blind Spot Detection Using Optical Flow M.A. Sotelo 1, J. Barriga 1, D. Fernández 1, I. Parra 1, J.E. Naranjo 2, M. Marrón 1, S. Alvarez 1, and M. Gavilán 1 1 Department of Electronics, University

More information

Activity recognition in ADL settings. Ben Kröse b.j.a.krose@uva.nl

Activity recognition in ADL settings. Ben Kröse b.j.a.krose@uva.nl Activity recognition in ADL settings Ben Kröse b.j.a.krose@uva.nl Content Why sensor monitoring for health and wellbeing? Activity monitoring from simple sensors Cameras Co-design and privacy issues Necessity

More information

Vehicle Tracking System Robust to Changes in Environmental Conditions

Vehicle Tracking System Robust to Changes in Environmental Conditions INORMATION & COMMUNICATIONS Vehicle Tracking System Robust to Changes in Environmental Conditions Yasuo OGIUCHI*, Masakatsu HIGASHIKUBO, Kenji NISHIDA and Takio KURITA Driving Safety Support Systems (DSSS)

More information

Advanced Methods for Pedestrian and Bicyclist Sensing

Advanced Methods for Pedestrian and Bicyclist Sensing Advanced Methods for Pedestrian and Bicyclist Sensing Yinhai Wang PacTrans STAR Lab University of Washington Email: yinhai@uw.edu Tel: 1-206-616-2696 For Exchange with University of Nevada Reno Sept. 25,

More information

How does the Kinect work? John MacCormick

How does the Kinect work? John MacCormick How does the Kinect work? John MacCormick Xbox demo Laptop demo The Kinect uses structured light and machine learning Inferring body position is a two-stage process: first compute a depth map (using structured

More information

Journal of Industrial Engineering Research. Adaptive sequence of Key Pose Detection for Human Action Recognition

Journal of Industrial Engineering Research. Adaptive sequence of Key Pose Detection for Human Action Recognition IWNEST PUBLISHER Journal of Industrial Engineering Research (ISSN: 2077-4559) Journal home page: http://www.iwnest.com/aace/ Adaptive sequence of Key Pose Detection for Human Action Recognition 1 T. Sindhu

More information

Context-based fall detection and activity recognition using inertial and location sensors

Context-based fall detection and activity recognition using inertial and location sensors Journal of Ambient Intelligence and Smart Environments 6 (2014) 419 433 DOI 10.3233/AIS-140268 IOS Press 419 Context-based fall detection and activity recognition using inertial and location sensors Hristijan

More information

Using Received Signal Strength Variation for Surveillance In Residential Areas

Using Received Signal Strength Variation for Surveillance In Residential Areas Using Received Signal Strength Variation for Surveillance In Residential Areas Sajid Hussain, Richard Peters, and Daniel L. Silver Jodrey School of Computer Science, Acadia University, Wolfville, Canada.

More information

Wireless Clinical Monitoring @ Scale!

Wireless Clinical Monitoring @ Scale! Wireless Clinical Monitoring @ Scale! Chenyang Lu! Cyber-Physical Systems Laboratory! Department of Computer Science and Engineering! Motivation!! Clinical deterioration in hospitalized patients! " 4-17%

More information

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT

HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT International Journal of Scientific and Research Publications, Volume 2, Issue 4, April 2012 1 HANDS-FREE PC CONTROL CONTROLLING OF MOUSE CURSOR USING EYE MOVEMENT Akhil Gupta, Akash Rathi, Dr. Y. Radhika

More information

Traffic Monitoring Systems. Technology and sensors

Traffic Monitoring Systems. Technology and sensors Traffic Monitoring Systems Technology and sensors Technology Inductive loops Cameras Lidar/Ladar and laser Radar GPS etc Inductive loops Inductive loops signals Inductive loop sensor The inductance signal

More information

ABOUT THE FUNCTIONAL FITNESS TEST: ABOUT THE AUTHORS:

ABOUT THE FUNCTIONAL FITNESS TEST: ABOUT THE AUTHORS: The Interactive Health Partner Wellness Program addresses fall prevention with assessments and outcomes tracking in an easy to use, comprehensive online system. Website: www.interactivehealthpartner.com

More information

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network

An Energy-Based Vehicle Tracking System using Principal Component Analysis and Unsupervised ART Network Proceedings of the 8th WSEAS Int. Conf. on ARTIFICIAL INTELLIGENCE, KNOWLEDGE ENGINEERING & DATA BASES (AIKED '9) ISSN: 179-519 435 ISBN: 978-96-474-51-2 An Energy-Based Vehicle Tracking System using Principal

More information

A Novel Method to Minimize False Alarm Rate of Fall Detection for Wireless Sensor Networks

A Novel Method to Minimize False Alarm Rate of Fall Detection for Wireless Sensor Networks A Novel Method to Minimize False Alarm Rate of Fall Detection for Wireless Sensor Networks Jin Wang 1, Zhongqi Zhang 1, Liwu Zuo 1, Menglin Wu 2, Jeong-Uk Kim 3 1 Jiangsu Engineering Center of Network

More information

ESE498. Intruder Detection System

ESE498. Intruder Detection System 0 Washington University in St. Louis School of Engineering and Applied Science Electrical and Systems Engineering Department ESE498 Intruder Detection System By Allen Chiang, Jonathan Chu, Siwei Su Supervisor

More information

Vision based approach to human fall detection

Vision based approach to human fall detection Vision based approach to human fall detection Pooja Shukla, Arti Tiwari CSVTU University Chhattisgarh, poojashukla2410@gmail.com 9754102116 Abstract Day by the count of elderly people living alone at home

More information

Aberdeen Low Back Pain Scale. Overview:

Aberdeen Low Back Pain Scale. Overview: Aberdeen Low Back Pain Scale Overview: Ruta et al all used a questionnaire to measure outcome in patients with low back pain. This can be used for initial evaluation of the patient and to monitor the effectiveness

More information

Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior

Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior Automatic Calibration of an In-vehicle Gaze Tracking System Using Driver s Typical Gaze Behavior Kenji Yamashiro, Daisuke Deguchi, Tomokazu Takahashi,2, Ichiro Ide, Hiroshi Murase, Kazunori Higuchi 3,

More information

Automated Monitoring System for Fall Detection in the Elderly

Automated Monitoring System for Fall Detection in the Elderly Automated Monitoring System for Fall Detection in the Elderly Shadi Khawandi University of Angers Angers, 49000, France skhawandi@hotmail.com Bassam Daya Lebanese University Saida, 813, Lebanon Pierre

More information

Exercises for older people

Exercises for older people Exercise for older people Exercises for older people Sitting Getting started If you ve not done much physical activity for a while, you may want to get the all-clear from a GP before starting. For the

More information

Fire Alarm system Installation Guide

Fire Alarm system Installation Guide Fire Alarm system Installation Guide Fire Alarm System Categories Systems designed for Protection of Property only, fall into two classifications P1 or P2. but a manual system is also needed, then this

More information

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY

PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY PHOTOGRAMMETRIC TECHNIQUES FOR MEASUREMENTS IN WOODWORKING INDUSTRY V. Knyaz a, *, Yu. Visilter, S. Zheltov a State Research Institute for Aviation System (GosNIIAS), 7, Victorenko str., Moscow, Russia

More information

The third report from the Patient Safety Observatory. Slips, trips and falls in hospital PSO/3 SUMMARY

The third report from the Patient Safety Observatory. Slips, trips and falls in hospital PSO/3 SUMMARY The third report from the Patient Safety Observatory Slips, trips and falls in hospital PSO/3 Patient falls have both human and financial costs. For individual patients, the consequences can range from

More information

CS231M Project Report - Automated Real-Time Face Tracking and Blending

CS231M Project Report - Automated Real-Time Face Tracking and Blending CS231M Project Report - Automated Real-Time Face Tracking and Blending Steven Lee, slee2010@stanford.edu June 6, 2015 1 Introduction Summary statement: The goal of this project is to create an Android

More information

WiMAX network performance monitoring & optimization

WiMAX network performance monitoring & optimization Downloaded from orbit.dtu.dk on: Nov 10, 2015 WiMAX network performance monitoring & optimization Zhang, Qi; Dam, H Published in: IEEE Network Operations and Management Symposium, 2008. NOMS 2008. DOI:

More information

GUIDE TO USING THE SEVERITY ASSESSMENT CODE (SAC) Purpose

GUIDE TO USING THE SEVERITY ASSESSMENT CODE (SAC) Purpose Health and Disability Sector Incident Management Project GUIDE TO USING THE SEVERITY ASSESSMENT CODE (SAC) Purpose The purpose of this document is to outline for District Health Board users, the most effective

More information

False alarm in outdoor environments

False alarm in outdoor environments Accepted 1.0 Savantic letter 1(6) False alarm in outdoor environments Accepted 1.0 Savantic letter 2(6) Table of contents Revision history 3 References 3 1 Introduction 4 2 Pre-processing 4 3 Detection,

More information

Multimodal Biometric Recognition Security System

Multimodal Biometric Recognition Security System Multimodal Biometric Recognition Security System Anju.M.I, G.Sheeba, G.Sivakami, Monica.J, Savithri.M Department of ECE, New Prince Shri Bhavani College of Engg. & Tech., Chennai, India ABSTRACT: Security

More information

Scenario-based Drama as a Tool for Investigating User Requirements with Application to Home Monitoring for Elderly People

Scenario-based Drama as a Tool for Investigating User Requirements with Application to Home Monitoring for Elderly People This is a preprint version of a paper submitted to HCI International, Crete, 2003 Scenario-based Drama as a Tool for Investigating User Requirements with Application to Home Monitoring for Elderly People

More information

THE proportion of the elderly population is rising rapidly

THE proportion of the elderly population is rising rapidly IEEE JOURNAL OF BIOMEDICAL AND HEALTH INFORMATICS Fall Detection Based on Body Part Tracking Using a Depth Camera Zhen-Peng Bian, Student Member, IEEE, Junhui Hou, Student Member, IEEE, Lap-Pui Chau, Senior

More information

DINAMIC AND STATIC CENTRE OF PRESSURE MEASUREMENT ON THE FORCEPLATE. F. R. Soha, I. A. Szabó, M. Budai. Abstract

DINAMIC AND STATIC CENTRE OF PRESSURE MEASUREMENT ON THE FORCEPLATE. F. R. Soha, I. A. Szabó, M. Budai. Abstract ACTA PHYSICA DEBRECINA XLVI, 143 (2012) DINAMIC AND STATIC CENTRE OF PRESSURE MEASUREMENT ON THE FORCEPLATE F. R. Soha, I. A. Szabó, M. Budai University of Debrecen, Department of Solid State Physics Abstract

More information

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM

3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM 3D SCANNING: A NEW APPROACH TOWARDS MODEL DEVELOPMENT IN ADVANCED MANUFACTURING SYSTEM Dr. Trikal Shivshankar 1, Patil Chinmay 2, Patokar Pradeep 3 Professor, Mechanical Engineering Department, SSGM Engineering

More information

Cloud tracking with optical flow for short-term solar forecasting

Cloud tracking with optical flow for short-term solar forecasting Cloud tracking with optical flow for short-term solar forecasting Philip Wood-Bradley, José Zapata, John Pye Solar Thermal Group, Australian National University, Canberra, Australia Corresponding author:

More information

Ubiquitous Computing Applications: Healthcare & Smart Homes. Emmanuel Agu

Ubiquitous Computing Applications: Healthcare & Smart Homes. Emmanuel Agu Ubiquitous Computing Applications: Healthcare & Smart Homes Emmanuel Agu Paper 1: Moving out of the Lab: Deploying Pervasive Technologies in a Hospital Many ubicomp ideas, research projects Few deployed

More information

THE THERMAL FLOW METER, A GAS METER FOR ENERGY MEASUREMENT

THE THERMAL FLOW METER, A GAS METER FOR ENERGY MEASUREMENT THE THERMAL FLOW METER, A GAS METER FOR ENERGY MEASUREMENT Kazuto Otakane, Tokyo Gas Co., Ltd Katsuhito Sakai, Tokyo Gas Co., Ltd Minoru Seto, Tokyo Gas Co., Ltd 1. INTRODUCTION Tokyo Gas s new gas meter,

More information

Ethical Assessment in the Design of Ambient Assisted Living

Ethical Assessment in the Design of Ambient Assisted Living Ethical Assessment in the Design of Ambient Assisted Living Veikko Ikonen 1 and Eija Kaasinen 1 1 VTT Technical Research Centre of Finland, P.O.Box 1300, 33101 Tampere, Finland Abstract. This paper tackles

More information

VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS

VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS VEHICLE TRACKING USING ACOUSTIC AND VIDEO SENSORS Aswin C Sankaranayanan, Qinfen Zheng, Rama Chellappa University of Maryland College Park, MD - 277 {aswch, qinfen, rama}@cfar.umd.edu Volkan Cevher, James

More information

Development of Seismic-induced Fire Risk Assessment Method for a Building

Development of Seismic-induced Fire Risk Assessment Method for a Building Development of Seismic-induced Fire Risk Assessment Method for a Building AI SEKIZAWA National Research Institute of Fire and Disaster 3-14-1, Nakahara, Mitaka, Tokyo 181-8633, Japan sekizawa@fri.go.jp

More information

THE MS KINECT USE FOR 3D MODELLING AND GAIT ANALYSIS IN THE MATLAB ENVIRONMENT

THE MS KINECT USE FOR 3D MODELLING AND GAIT ANALYSIS IN THE MATLAB ENVIRONMENT THE MS KINECT USE FOR 3D MODELLING AND GAIT ANALYSIS IN THE MATLAB ENVIRONMENT A. Procházka 1,O.Vyšata 1,2,M.Vališ 1,2, M. Yadollahi 1 1 Institute of Chemical Technology, Department of Computing and Control

More information

Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao

Requirements Analysis Concepts & Principles. Instructor: Dr. Jerry Gao Requirements Analysis Concepts & Principles Instructor: Dr. Jerry Gao Requirements Analysis Concepts and Principles - Requirements Analysis - Communication Techniques - Initiating the Process - Facilitated

More information

COMPACT GUIDE. Camera-Integrated Motion Analysis

COMPACT GUIDE. Camera-Integrated Motion Analysis EN 05/13 COMPACT GUIDE Camera-Integrated Motion Analysis Detect the movement of people and objects Filter according to directions of movement Fast, simple configuration Reliable results, even in the event

More information

HONEY: A Multimodality Fall Detection and Telecare System

HONEY: A Multimodality Fall Detection and Telecare System HONEY: A Multimodality Fall Detection and Telecare System Quan Zhang 1, Lingmei Ren 1, and Weisong Shi 1, 2 1 Tongji University, China 2 Wayne State University, USA Contact author: weisong@wayne.edu ABSTRACT

More information

ANALYTICS IN BIG DATA ERA

ANALYTICS IN BIG DATA ERA ANALYTICS IN BIG DATA ERA ANALYTICS TECHNOLOGY AND ARCHITECTURE TO MANAGE VELOCITY AND VARIETY, DISCOVER RELATIONSHIPS AND CLASSIFY HUGE AMOUNT OF DATA MAURIZIO SALUSTI SAS Copyr i g ht 2012, SAS Ins titut

More information

Wireless Multimedia Technologies for Assisted Living

Wireless Multimedia Technologies for Assisted Living Second LACCEI International Latin American and Caribbean Conference for Engineering and Technology (LACCEI 2004) Challenges and Opportunities for Engineering Education, Research and Development 2-4 June

More information

Real Time Health Monitoring Using GPRS Technology

Real Time Health Monitoring Using GPRS Technology Real Time Health Monitoring Using GPRS Technology 1 Shubhangi M. Verulkar, 2 Maruti Limkar 1 EXTC department,k.c.college of Engg.,Nerul. Mumbai university. 2 Electronics department,terna college of engg,nerul,

More information

Social Innovation through Utilization of Big Data

Social Innovation through Utilization of Big Data Social Innovation through Utilization of Big Data Hitachi Review Vol. 62 (2013), No. 7 384 Shuntaro Hitomi Keiro Muro OVERVIEW: The analysis and utilization of large amounts of actual operational data

More information

Accurate, Fast Fall Detection Using Gyroscopes and Accelerometer-Derived Posture Information

Accurate, Fast Fall Detection Using Gyroscopes and Accelerometer-Derived Posture Information Accurate, Fast Fall Detection Using Gyroscopes and Accelerometer-Derived Posture Information Qiang Li, John A. Stankovic, Mark Hanson, Adam Barth, John Lach University of Virginia {lq7c, stankovic, mah6s,

More information

Tracking and Recognition in Sports Videos

Tracking and Recognition in Sports Videos Tracking and Recognition in Sports Videos Mustafa Teke a, Masoud Sattari b a Graduate School of Informatics, Middle East Technical University, Ankara, Turkey mustafa.teke@gmail.com b Department of Computer

More information

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651. Research Article

Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651. Research Article Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(5): 647-651 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Comprehensive colliery safety monitoring system

More information

Technologies to help older people

Technologies to help older people Technologies to help older people Medical Alert Bracelets/pendants Automated home technology GPS trackers Computers/tablets and cell phones Emerging technologies Medical Alert Bracelets Since the 1990s,

More information

ITARDAInstitute for Traffic Accident

ITARDAInstitute for Traffic Accident ITARDAInstitute for Traffic Accident Research and Data Analysis ( 財 ) 交 通 事 故 総 合 分 析 センター ITARDA INFORMATION No. 2011 88APRIL Fatality rate (%) 0 2 4 6 Head-on 0.70% Rear-end 4.7% Rear-end 0.70% Crossing

More information

Location tracking: technology, methodology and applications

Location tracking: technology, methodology and applications Location tracking: technology, methodology and applications Marina L. Gavrilova SPARCS Laboratory Co-Director Associate Professor University of Calgary Interests and affiliations SPARCS Lab Co-Founder

More information

If you fall or witness a fall, do you know what to do?

If you fall or witness a fall, do you know what to do? If you fall or witness a fall, do you know what to do? We all fall from time to time. With age, both the number of falls and the likelihood of injury increase. So, it s important to know what to do if

More information

Static Environment Recognition Using Omni-camera from a Moving Vehicle

Static Environment Recognition Using Omni-camera from a Moving Vehicle Static Environment Recognition Using Omni-camera from a Moving Vehicle Teruko Yata, Chuck Thorpe Frank Dellaert The Robotics Institute Carnegie Mellon University Pittsburgh, PA 15213 USA College of Computing

More information

WAITER: A Wearable Personal Healthcare and Emergency Aid System

WAITER: A Wearable Personal Healthcare and Emergency Aid System Sixth Annual IEEE International Conference on Pervasive Computing and Communications WAITER: A Wearable Personal Healthcare and Emergency Aid System Wanhong Wu 1, Jiannong Cao 1, Yuan Zheng 1, Yong-Ping

More information

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET-

INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- ABSTRACT INTERNET FOR VANET NETWORK COMMUNICATIONS -FLEETNET- Bahidja Boukenadil¹ ¹Department Of Telecommunication, Tlemcen University, Tlemcen,Algeria Now in the world, the exchange of information between

More information

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique

A Reliability Point and Kalman Filter-based Vehicle Tracking Technique A Reliability Point and Kalman Filter-based Vehicle Tracing Technique Soo Siang Teoh and Thomas Bräunl Abstract This paper introduces a technique for tracing the movement of vehicles in consecutive video

More information

AUTOMATIC HUMAN FREE FALL DETECTION USING ANDROID

AUTOMATIC HUMAN FREE FALL DETECTION USING ANDROID AUTOMATIC HUMAN FREE FALL DETECTION USING ANDROID Mrs.P.Booma devi 1, Mr.S.P.Rensingh Xavier 2 Assistant Professor, Department of EEE, Ratnavel Subramaniam College of Engineering and Technology, Dindigul

More information

ROTATOR CUFF HOME EXERCISE PROGRAM

ROTATOR CUFF HOME EXERCISE PROGRAM ROTATOR CUFF HOME EXERCISE PROGRAM Contact us! Vanderbilt Sports Medicine Medical Center East, South Tower, Suite 3200 1215 21st Avenue South Nashville, TN 37232-8828 For more information on this and other

More information

Motorola AirDefense Network Assurance Solution. Improve WLAN reliability and reduce management cost

Motorola AirDefense Network Assurance Solution. Improve WLAN reliability and reduce management cost Motorola AirDefense Network Assurance Solution Improve WLAN reliability and reduce management cost The challenge: Ensuring wireless network performance and availability Wireless LANs help organizations

More information

Indoor Surveillance System Using Android Platform

Indoor Surveillance System Using Android Platform Indoor Surveillance System Using Android Platform 1 Mandar Bhamare, 2 Sushil Dubey, 3 Praharsh Fulzele, 4 Rupali Deshmukh, 5 Dr. Shashi Dugad 1,2,3,4,5 Department of Computer Engineering, Fr. Conceicao

More information

A Pervasive Way: Elderly People Falling Detection and Ambient Intelligence

A Pervasive Way: Elderly People Falling Detection and Ambient Intelligence A Pervasive Way: Elderly People Falling Detection and Ambient Intelligence Chung-Ching Huang 919 E. 10 TH St. Bloomington, IN 47408 USA huang21@indian.edu Tak-Lon Wu 150 S. Woodlawn Ave Bloomington, IN

More information

Otago Exercise Program

Otago Exercise Program Otago Exercise Program Edited Version Exercise Booklet Created by: Genesee County Coalition Supported by a grant from the Health Foundation for Western and Central New York Otago Exercise Program to Prevent

More information

CAPTURE Collaboration and Proactive Teamwork Used to Reduce. Best Practices in Safe Transfers and Mobility to Decrease Fall Risk

CAPTURE Collaboration and Proactive Teamwork Used to Reduce. Best Practices in Safe Transfers and Mobility to Decrease Fall Risk CAPTURE Collaboration and Proactive Teamwork Used to Reduce Falls Best Practices in Safe Transfers and Mobility to Decrease Fall Risk August 20, 2013 10 a.m. CST Dawn M. Venema, PT, PhD Jill Hassel, DPT

More information

Fall Alarm and Inactivity Detection System Design and Implementation on Raspberry Pi

Fall Alarm and Inactivity Detection System Design and Implementation on Raspberry Pi Fall Alarm and Inactivity Detection System Design and Implementation on Raspberry Pi Qifan Dong*, Yang Yang*, Wang Hongjun*, Xu Jian-Hua** * School of Information Science and Engineering, Shandong University,

More information

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization Journal of Computer Science 6 (9): 1008-1013, 2010 ISSN 1549-3636 2010 Science Publications Support Vector Machine-Based Human Behavior Classification in Crowd through Projection and Star Skeletonization

More information

Testing Real-Time In-Home Fall Alerts with Embedded Depth Video Hyperlink

Testing Real-Time In-Home Fall Alerts with Embedded Depth Video Hyperlink Testing Real-Time In-Home Fall Alerts with Embedded Depth Video Hyperlink Erik E. Stone 1 and Marjorie Skubic 1 1 Department of Electrical and Computer Engineering University of Missouri, Columbia, MO

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Basic Facts What does the name ASIMO stand for? ASIMO stands for Advanced Step in Innovative Mobility. Who created ASIMO? ASIMO was developed by Honda Motor Co., Ltd., a world

More information

CLOUD BASED HOME SECURITY 1 Anjali Chachra 1

CLOUD BASED HOME SECURITY 1 Anjali Chachra 1 CLOUD BASED HOME SECURITY 1 Anjali Chachra 1 Computer Science, KJ Somaiya college of engineering Email: 1 chachraanjali@yahoo.co.in Abstract This report deals with the design and implementation of a Home

More information

Design and Implementation of an Accidental Fall Detection System for Elderly

Design and Implementation of an Accidental Fall Detection System for Elderly Design and Implementation of an Accidental Fall Detection System for Elderly Enku Yosef Kefyalew 1, Abubakr Rahmtalla Abdalla Mohamed 2 Department of Electronic Engineering, Tianjin University of Technology

More information

F2D: A fall detection system tested with real data from daily life of elderly people

F2D: A fall detection system tested with real data from daily life of elderly people F2D: A fall detection system tested with real data from daily life of elderly people Panagiotis Kostopoulos, Tiago Nunes, Kevin Salvi Michel Deriaz and Julien Torrent Information Science Institute, GSEM/CUI,

More information

Otago Exercise Program Activity Booklet

Otago Exercise Program Activity Booklet Head Movements Stand up tall and look ahead. Slowly turn your head as far as you can to the right. Slowly turn your head as far as you can to the left. Repeat five times to each side. 44 Neck Movements

More information

Proposal FALL DETECTION. ECE4007 Senior Design Project. Section L05, Fall Detection Team. Nicholas Chan, Group Leader.

Proposal FALL DETECTION. ECE4007 Senior Design Project. Section L05, Fall Detection Team. Nicholas Chan, Group Leader. Proposal FALL DETECTION ECE4007 Senior Design Project Section L05, Fall Detection Team Nicholas Chan, Group Leader Akshay Patel Abhishek Chandrasekhar Hahnming Lee Submitted February 4, 2009 Fall Detection

More information

Fall detection in the elderly by head tracking

Fall detection in the elderly by head tracking Loughborough University Institutional Repository Fall detection in the elderly by head tracking This item was submitted to Loughborough University's Institutional Repository by the/an author. Citation:

More information

T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN

T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN T O B C A T C A S E G E O V I S A T DETECTIE E N B L U R R I N G V A N P E R S O N E N IN P A N O R A MISCHE BEELDEN Goal is to process 360 degree images and detect two object categories 1. Pedestrians,

More information

A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow

A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow , pp.233-237 http://dx.doi.org/10.14257/astl.2014.51.53 A Study on SURF Algorithm and Real-Time Tracking Objects Using Optical Flow Giwoo Kim 1, Hye-Youn Lim 1 and Dae-Seong Kang 1, 1 Department of electronices

More information

Emergency Medical Data Management through an Enhanced Cloudbased Push Messaging Mechanism

Emergency Medical Data Management through an Enhanced Cloudbased Push Messaging Mechanism Emergency Medical Data Management through an Enhanced Cloudbased Push Messaging Mechanism Vassiliki Koufi, Flora Malamateniou, and George Vassilacopoulos University of Piraeus, Department of Digital Systems,

More information

A Demonstration of a Robust Context Classification System (CCS) and its Context ToolChain (CTC)

A Demonstration of a Robust Context Classification System (CCS) and its Context ToolChain (CTC) A Demonstration of a Robust Context Classification System () and its Context ToolChain (CTC) Martin Berchtold, Henning Günther and Michael Beigl Institut für Betriebssysteme und Rechnerverbund Abstract.

More information

Fall Detection System Using Tri-Accelerometer for Wireless Body Area Network

Fall Detection System Using Tri-Accelerometer for Wireless Body Area Network IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 10, Issue 2, Ver. II (Mar - Apr.2015), PP 25-29 www.iosrjournals.org Fall Detection System

More information

Impact of Feature Selection on the Performance of Wireless Intrusion Detection Systems

Impact of Feature Selection on the Performance of Wireless Intrusion Detection Systems 2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Impact of Feature Selection on the Performance of ireless Intrusion Detection Systems

More information

Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver

Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver , pp.161-165 http://dx.doi.org/10.14257/astl.205.98.41 Development of an Ignition Interlock Device to Prevent Illegal Driving of a Drunk Driver Jeong MyeongSu 1, Moon ChangSoo 1, Gwon DaeHyeok 1 and Cho

More information

VIRTUAL TRIAL ROOM USING AUGMENTED REALITY

VIRTUAL TRIAL ROOM USING AUGMENTED REALITY VIRTUAL TRIAL ROOM USING AUGMENTED REALITY Shreya Kamani, Neel Vasa, Kriti Srivastava, D. J. Sanghvi College of Engineering, Mumbai 53 Abstract This paper presents a Virtual Trial Room application using

More information

Tracking performance evaluation on PETS 2015 Challenge datasets

Tracking performance evaluation on PETS 2015 Challenge datasets Tracking performance evaluation on PETS 2015 Challenge datasets Tahir Nawaz, Jonathan Boyle, Longzhen Li and James Ferryman Computational Vision Group, School of Systems Engineering University of Reading,

More information

Physiotherapy Database Exercises for people with Spinal Cord Injury

Physiotherapy Database Exercises for people with Spinal Cord Injury Physiotherapy Database Exercises for people with Spinal Cord Injury Compiled by the physiotherapists associated with the following Sydney (Australian) spinal units : Last Generated on Mon Mar 29 16:57:20

More information

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone

Smart Home Security System Based on Microcontroller Using Internet and Android Smartphone International Conference on Materials, Electronics & Information Engineering, ICMEIE-205 05-06 June, 205, Faculty of Engineering, University of Rajshahi, Bangladesh www.ru.ac.bd/icmeie205/proceedings/

More information

Chapter 4. The sleep and activities of daily living (ADL) monitoring application

Chapter 4. The sleep and activities of daily living (ADL) monitoring application Authors: Yuchen-Huang (2014-07-30); recommended: Yeh-Liang Hsu(2014-08-01). Chapter 4. The sleep and activities of daily living (ADL) monitoring application Long-term ADL profiles of the older adults acquired

More information

Analysis of Accidents by Older Drivers in Japan

Analysis of Accidents by Older Drivers in Japan Analysis of Accidents by Older Drivers in Japan Kazumoto Morita 1, Michiaki Sekine 1 1 National Traffic Safety and Environment Laboratory, Japan Abstract Since Japan is a rapidly aging society, ensuring

More information

The Monitoring Technology for the Latent Risk Population

The Monitoring Technology for the Latent Risk Population 1 The Monitoring Technology for the Latent Risk Population Alice J. Lin 1, Charles B. Chen 2 and Fuhua (Frank) Cheng 3 1 Marshall University, lina@marshall.edu 2 West Virginia University, cchen6@mix.wvu.edu

More information