Fall Detection For Elderly People Using Machine Learning
Fall Detection For Elderly People Using Machine Learning
net/publication/346238191
CITATIONS READS
33 2,991
2 authors, including:
Anju Pillai
Amrita Vishwa Vidyapeetham
74 PUBLICATIONS 557 CITATIONS
SEE PROFILE
All content following this page was uploaded by Anju Pillai on 16 June 2022.
and waist are used to get the data input. Features are
Abstract—Health is the major worrisome point whose
impalpability increases with increase in the age. Thus, taking calculated by using sensor readings to get some meaningful
care of elders is very important responsibility. In such data out of the raw data. Falls also can be detected by using
scenario, technology is helping people by providing living ambient sensors like IR sensors or movement based sensors.
assistance. One of the major causes of health degradation or
death of elders is ‘fall’. In this paper, a fall detection system is Major hurdle to develop precise fall detection
proposed based on machine learning. The system detects falls system is false alarms i.e. alerting fall when there is a fall like
by classifying different activities into fall and non-fall actions activity but not exactly a fall. Most of the researches are
and alert the relative or care taker of the elderly person in case focused on reducing false alarms and improving accuracy of
of emergency. The dataset SisFall with variety of activities of
multiple participants is used to calculate features. Machine the fall detection system. The main aim of studies is to detect
learning algorithms SVM and decision tree are used to detect fall in the daily life activity situations with high accuracy.To
the falls on the basis of calculated features. The system classify the activity into fall or not fall criteria, threshold
acquires accuracy up to 96% by using decision tree algorithm. based algorithms also can be used. But if sensor detects an
Index Terms—Fall detection, Gait analysis, Machine unusual activity, then the probability of false alarm increase
learning, Activities of daily living, Elderly care, Health care unlike machine learning based approach.
systems.
In this work, a fall detection system is proposed
I. I NTRODUCTION which monitors elderly people in real-time. The system uses
open source available dataset SisFall which has recorded Gait
Now-a-days elderly people live alone at home because of
data by using Tri-axial accelerometer [15]. By using machine
poor conditions, different working culture of people and due
learning algorithms, falls are detected after calculating
to many other reasons. According to World Health
various features. Two different machine learning algorithms,
Organization (WHO) studies, falls causes many accidental
SVM and decision tree are implemented and compared for
deaths. Greatest number of fatal falls is seen in adults older
better accuracy and performance.
than 65 leading to health problems or injuries [1]. Thus,
elderly people require an attention at the times of The rest of the paper is organized as follows: section
emergencies at their residence because they cannot call for 2 discusses about the literature survey in the area of fall
help due to lack of technology access in rural areas or due to detection followed by methodology of implementation in
their physical conditions. To improve quality of life of old section 3. The results are presented in section 4 and the paper
aged people and to provide living assistance to them, is concluded in section 5.
automatic fall detection systems are in place. The risk of II. L ITERATURE SURVEY
falling is high among older people, individuals with
There are no standard sets for fall detection, to get perfect
Parkinson's disease or patients in rehabilitation units [3].
fall detection system, in terms of sensors used, features
Main reasons for occurrence of falls are physical factors like
extracted, and machine learning algorithm with better
of muscle weakness, posture, Gait balance, vision, due to old
performance. Fall detection system can be implemented by
age, or psychological factors or environmental factors etc.
using cameras, wearable sensors or ambient sensors. When
Falls are the major cause of injuries and hip fractures [4]. If
cameras are used in the system, image processing
immediate aid is not provided, it may lead to death. To
algorithms are used but it has been seen that 24% of the
ensure proper treatment and care of the elderly people, fall
falls are not getting detected [3]. Ambient based sensors
detection system plays important role.
like motion detector or passive infrared (PIR) sensors also
Various researches have been done on the fall can be used in fall detection system detection [7]. But these
detection system. There are no fixed criteria on basis of are limited to particular area in which sensors are
sensors used or on calculated features or on algorithms used implemented.
to classify. Image processing techniques are used after
Wearable sensor based fall detection systems are more
capturing images from camera to detect falls. Wearable suitable for elderly people because it can detect the fall any
sensors like accelerometer, gyroscope at knee, wrist, neck,
time and any place unlike vision based and ambient based
11th ICCCNT 2020
July 1-3, 2020 - IIT - Kharagpur
Authorized licensed use limited to: AMRITA VISHWA VIDYAPEETHAM AMRITA SCHOOL Kharagpur, India Downloaded on June 16,2022 at 05:57:55 UTC from IEEE Xplore. Restrictions apply.
OF ENGINEERING.
IEEE - 49239
fall detection which are restricted to the house or particular A. Data Acquisition
indoor environment. Also wearable sensor is lesser in cost
The SisFall [15] dataset is considered which consists
than that of camera or PIR sensors. In literature, sensors are
of data collected with the help of ADXL345 accelerometer
used in necklace [8], subjects’ head band, chest band, waist
from the waist band. Tri- axial accelerometer ADXL345 is
band, right wrist band, right thigh band, and right ankle
used to get the acceleration values along three axes x, y and z.
band [9], waist band [10], etc. The pendant connected to
It is energy efficient as it can work with low power mode.
mobile phone via Bluetooth and phone communicates with
concerned person. The problem with this system is, phone
should be in 100 meters range of pendant; and activities
like front bending or front falls are not considered due to
false interpretation of fall [8]. Too many sensors also lead
to miss prediction of the accurate activity. Wearable sensor
accelerometer is better than camera based and ambient
based techniques.
Fall can be detected using two techniques after
collection of data from sensors and feature calculation. One
is threshold based, if reading of the sensor is above
particular threshold, it can be categorized as fall. In this Figure 2 Waist belt with sensor position
technique, threshold for each calculated feature is different
and many false alarms may be generated. If machine In this work, six young adults and two elder’s
learning classification is used, the calculated features can acceleration data is considered. Adult participants have
be tested on a pre-trained model with high accuracy and performed 19 daily life activities and 15 fall activities, only
guarantee lesser false alarms. one elder performed all the activities. 1 lakh data is considered
In the current work, accelerometer data from a wearable for training as partial dataset and 40,000 acceleration data
sensor is used, which is already measured for different samples are used for testing purpose. (Young participant’s
activities in SisFall dataset [15]. Most relevant features are code- SA02, SA05, SA10, SA15, SA20, SA23, Adult
calculated. Machine learning models of SVM and decision participant’s code- SE06,SE10 ).
tree are trained and tested.
In literature, these features are used for threshold based
fall detection, and the proposed work implements machine
learning approach on same features and provides improved
accuracy. Also, none other paper have used decision tree
algorithm for training and testing this dataset. The current
work implements SVM and decision tree algorithm and
compares its performance
III. METHODOLOGY
V. CONCLUSION
This paper presents wearable sensor based fall detection
system, which are suitable for elderly people. The proposed
method uses machine learning algorithms to detect falls from
a set of daily living activities. Machine learning technique are
found better than the threshold method, as it gives less false
alarms due to pre-trained Gait patterns. The decision tree
gives higher accuracy than SVM as decision tree has the
ability to define and classify each attribute to each class
precisely. Also prediction time of SVM is greater than
decision tree which leads to a slower system. The models are
evaluated by using parameters such as: sensitivity, specificity,
accuracy and confusion matrix. Falls are appropriately
detected using decision tree algorithm with an accuracy of
96%. Further improvement in accuracy can be obtained by
training the models with large dataset and by identifying
optimal features.
REFERENCES
[1]World Health Organization, World Report on Ageing and Health, World
Health Organization, Geneva, 2015.
[2]WHO Global Report on Falls Prevention in Older Age, World Health