0% found this document useful (0 votes)
6 views6 pages

Tsinganos 2017

The document presents a smartphone-based fall detection system designed for the elderly, utilizing accelerometer sensors and a k Nearest Neighbor (kNN) classifier to distinguish between falls and activities of daily living (ADLs). The system achieves high accuracy with 97.53% sensitivity and 94.89% specificity, incorporating a personalization feature that allows the model to adapt to individual user activity patterns. Additionally, the implementation focuses on power regulation to ensure low battery consumption while continuously monitoring user movements.

Uploaded by

Ahad Chowdhury
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views6 pages

Tsinganos 2017

The document presents a smartphone-based fall detection system designed for the elderly, utilizing accelerometer sensors and a k Nearest Neighbor (kNN) classifier to distinguish between falls and activities of daily living (ADLs). The system achieves high accuracy with 97.53% sensitivity and 94.89% specificity, incorporating a personalization feature that allows the model to adapt to individual user activity patterns. Additionally, the implementation focuses on power regulation to ensure low battery consumption while continuously monitoring user movements.

Uploaded by

Ahad Chowdhury
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana,

er 18-20, 2017, Ljubljana, Slovenia

A Smartphone-based Fall Detection System for the


Elderly
Panagiotis Tsinganos1and Athanassios Skodras2
Department of Electrical and Computer Engineering
University of Patras
Patras, Greece
1
[email protected]
2
[email protected]

Abstract—Falls can be severe enough to cause disabilities possible and another that adjusts the model to the user activity
especially to frail populations. Thus, prompt health care patterns.
provision is essential to prevent and restore any harm. The
purpose of this study is to develop a smartphone-based fall An advantage of accelerometer sensors is that the
detection system that can distinguish between falls and activities generated signal in case of a fall event is highly
of daily living (ADL). The typical fall detection system consists of distinguishable, as shown in Fig.1. This can be decomposed
a sensing component and a notification module. Android devices, into a series of stages which can be identified during the
equipped with sensors and communication services, are the best detection process [4] using a Finite State Machine (FSM):
candidates for the development of such systems. This work
incorporates a threshold based algorithm, whose accuracy is  The pre-fall period, characterized by conventional
enhanced by a k Nearest Neighbor (kNN) classifier. In addition, ADLs containing some signs of instability.
this paper proposes the implementation of a personalization and  The free-fall phase, during which the human body
power regulation system. It achieves high fall detection accuracy,
experiences a temporal weightless state provoked by a
(97.53% sensitivity and 94.89% specificity), which is comparable
hasty movement toward the ground, generating values
to related works.
near to 0g.
Keywords—falls; ADLs; fall detection; smartphone;  The impact phase, characterized by a vertical shock
accelerometer; machine learning when the body hits the ground. In some cases, the
initial hit can be followed by a series of minor
I. INTRODUCTION impacts.
According to World Health Organization (WHO) “a fall is
 A post-fall phase, in which the body lies on the
defined as an event which results in a person coming to rest
ground and a remarkable change in body‟s orientation
inadvertently on a lower level” [1]. The reasons why falls
is recognized.
occur and some people are more likely to fall may be intrinsic
or extrinsic. In the first case, chronic problems and diseases  A recovery phase during which the patient may
such as arthritis and visual impairment can increase the remain still motionless if he/she is unconscious or
incidence of falls. On the other hand, environmental hazards severely injured after the collapse.
(e.g. slippery surfaces) and dangerous activities may cause a
fall. Regarding the effects, they vary from severe physical
injuries to psychological issues, depression and avoidance of
the activity that caused the fall.
The current fall detection system implementation [2] is
based on both threshold and machine learning techniques,
while it consists of four parts. The detection component
collects data from the accelerometer which are preprocessed
using a series of magnitude and time thresholds as
implemented in [3] to identify fall-like segments. A second
part extracts features from these segments that are used by a k
Nearest Neighbor (kNN) classifier to distinguish between falls
and activities of daily living (ADL). There are also two
auxiliary components; one that monitors the activation level of
the sensor and aims keeping battery consumption as low as
Fig.1 Wearable sensor acceleration signal of falling event

Signal Processing
978-1-5090-4011-7/17/$31.00 c 2017 IEEE 53 Signal Analysis
10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana, Slovenia

Table 1 Related fall detection works. The abbreviations for the sensors These studies differ in many aspects of their
are as folows: Accelerometer (Acc.), Gyroscope (Gyr.), Orientation (Ori.) implementation. For example, [3] and [8] employ both
and Magnetometer (Mag.) thresholds and machine learning techniques, whereas the rest
Ref Year Position Sensors Sampling(Hz) are comprised of threshold based algorithms only. Moreover,
[3] 2012 Belt Acc. 51.2
various filtering methods are used to smooth the noisy
[5] 2010 Shirt, Belt, Pants Acc.
[6] 2011 Waist Acc. 50
accelerometer data, such as first and second order low-pass
[7] 2013 Chest Acc.,Gyr. filters [9].
[8] 2011 Acc., Ori.. 24.45
One of the problems in assessing a fall detection algorithm
[9] 2016 Pants, Belt Accel., Gyr., Ori. 50
Head, Chest,
is the lack of an approved database of realistic falls and ADLs.
[10] 2014 Waisy, Wrist, Acc., Gyr., Mag. 25 Actually, every published study selects a different set of
Thigh, Ankle activity patterns on which they evaluate the detection
algorithm. The most common activities performed are
These phases are not present in all types of falls or may walking, running, standing up and sitting down, while
appear more than once. For example, when falling down the forward, backward and lateral fall types are simulated.
stairs the recorded signal may be characterized by the presence However, in most cases, these data are not made. Therefore,
of successive free fall and impact phases. not only is a reasonable comparison almost impossible, but the
Detecting these phases in an acceleration signal can help results are not reproducible as well.
distinguish fall-like events from common daily activities.
However, to further improve the detection rate, machine III. IMPLEMENTATION
learning techniques can be used. During this step a set of
features is extracted to retain information relevant to the A. Overview
acquired data. Then, a classifier takes advantage of these The application is comprised of two major components;
characteristics to construct a mathematical model that the detection system and the notification system. The detection
distinguishes between two or more classes. component continuously collects acceleration data sampled at
The rest of this paper is organized as follows: In Section II 50Hz, applies the fall detection algorithm, and broadcasts a
related work in the field of fall detection is presented. Section fall event when a fall is identified by the classifier. Then, the
III gives a description of the components of the proposed fall notification system sends a notification (email or SMS)
detection system, while Sections IV and V present the results containing the location of the user to predefined contacts
and the conclusions respectively. (defined in the Settings menu).
These elements were implemented using the Java
II. RELATED WORK programming language (Fig.2). In particular, the Android
Both academic research and industry have been interested Studio IDE was used for the communication of the various
in activity recognition over the last decades. Fall detection, a
subset of the former, has been studied and an array of systems
has been developed with varying degrees of accuracy. Some
use only wearable inertial sensors, while others have ambient
sensors be integrated in the living environment. Of particular
interest are the smartphone-based implementations. Table 1
displays the most representative works in the literature.
The authors of [5] and [6] use thresholds for the magnitude
of the acceleration and the acceleration at the vertical
direction. When both thresholds are exceeded within a time
window, a fall is detected. The system developed in [6] uses
angular velocities in addition to acceleration magnitude. When
both values are greater than the specified thresholds a fall is
detected. Unlike the previous implementations the phone is
attached to middle chest. In [8] they use both upper and lower
thresholds for the acceleration magnitude. If they are both
exceeded in less than 1s, the acceleration signal is compared
with a fall template using wavelet transform. Then a fall is
detected if the transformation yields high similarity. The
authors of [9] evaluate the capacity of smartphone sensors to
differentiate fall events from ADLs and they propose a low
power consumption threshold-based algorithm. Although most
works depend on thresholds, recent approaches [10] employ
feature extraction and machine learning classifiers to improve
detection accuracy. Fig.2 Home screen of Fall Detection app

Signal Processing
54 Signal Analysis
10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana, Slovenia

objects while from the WEKA library for Java the kNN
implementation was imported.

B. Data-Preprocesssing
Accelerometer data are collected with a rate of 50 samples
per second. This sampling frequency is regularly used in the
literature and satisfies the Nyquist theorem, since body
movements contain frequency components mainly in the range
of 0Hz to 15Hz ([11], [12]). To account for sensor errors two
filtering techniques have been applied to the triaxial data
(acceleration vector). Firstly, an offset value is used to correct
the collected measurements at each axis. At a next stage, a
60ms time window with Fs=50Hz is used to apply a median
low-pass filter. The major advantage of this filter is that
narrow spikes are removed while abrupt changes caused by
body motion are preserved.

C. FSM
Once a new accelerometer sample is collected, the triaxial
data along with the magnitude and time are forwarded to the
detection algorithm.
The first part of the detection algorithm can be modeled as
a Finite State Machine (FSM) that uses a series of thresholds
both on the acceleration magnitude and the time to eliminate
false positives. It consists of five states as shown in Fig.3 and Fig.3 Fall detection FSM
is described extensively in [3].
The resulting waveform was then adapted to satisfy the
D. Features wavelet definition using the MATLAB Wavelet Toolbox
(Fig.4). This technique has been previously used in [13] and
Then, a set of 14 features is extracted from fall-like [14]. The output of the wavelet transform is a two-dimensional
segments that are used by a kNN classifier to distinguish signal with columns that correspond to time and rows to scale.
between a „FALL‟ and an „ADL‟. They are taken from the To account for border effects, i.e. high values at the borders of
acceleration magnitude data collected in the interval [−2500, the CWT, 10% of the signal is removed from the left and right
1000]ms, centered at the instant of maximum peak above the borders.
threshold. Of the selected features, seven are derived from the
time domain (AAMV, IDI, MPI, PDI, ARI, FFI, SCI) and are Using the CWT of the acceleration patterns allows the
fully explained in [3], five are statistical measures (SKEW, localization of the transient state of the signal during the
KURT, IQR, POWER_IMP, STD_IMP) and two are extracted impact. Thus, a fall incidence can be detected if a maximal
from the wavelet transform as described in Table 2. surface is searched. On the contrary, an ADL will not generate
a distinctive maximum, since these activities usually generate
The time domain features capture the main characteristics repetitive patterns (Fig.5).
of the fall acceleration pattern, such as the abrupt transition
from low values to the peak, the impact and free fall durations.
On the other hand, statistical features contain information
about the distribution of the acceleration values of the fall
pattern. A negative skewness (SKEW) means that the majority
of the samples has high values, whereas the higher the kurtosis
(KURT) value the more the outliers. Considering the fall
pattern in Fig.1,we expect a positive skewness and a high
kurtosis value. Two metrics of variability (IQR and
STD_IMP) have been used since the distribution of the fall
pattern is not normal in general. Finally, the power of the
impact segment (POWER_IMP) indicates the magnitude of
the impact and can be used to distinguish between a fall and
sitting on a chair.
Two features are related to the Continuous Wavelet
Transform (CWT). These were extracted from the CWT of the
acceleration magnitude using a custom-built wavelet. This
wavelet was generated from a 2s segment of the median signal
of all the fall patterns in the dataset aligned at their peak value. Fig.4 The adapted wavelet

Signal Processing
55 Signal Analysis
10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana, Slovenia

nearest neighbors.
Table 2 Extracted features description

Name Domain F. Personalization


AAMV (average absolute acceleration variation) time In an attempt to reduce the false positives, i.e. the
IDI (impact duration) time misclassification of ADLs, we propose that the features of
MPI (highest value of acceleration) time these activities be appended to the training dataset. To achieve
PDI (peak duration) time
this when an activity is classified as fall by the classifier the
user is given a configurable amount of time to signal a false
ARI (activity level of a window that contains the
impact)
time positive. In that case, the features tuple of the activity is stored
FFI (average acceleration of free-fall stage) time
into the memory of the phone along with the rest dataset. As a
result new information regarding the activity patterns of the
SCI (number of steps) time
user is appended to the model.
time
SKEW (skewness of acceleration segment)
(statistical) G. Power consumption
time The importance of monitoring power consumption has
KURT (kurtosis of acceleration segment)
(statistical)
been previously stressed ([4], [9], [16]). The power
time requirements for a continuously monitoring application are
IQR (interquartile range of acceleration segment)
(statistical)
increased, since sensors are sampled at regular intervals when
time
POWER_IMP (power of the impact) the activity is in the foreground and the screen is on or a
(statistical)
background service keeps the CPU running.
time
STD_IMP (standard variation of the impact)
(statistical) The proposed battery-drain reduction algorithm adjusts the
CWENERGY (square of the highest coefficient of sampling frequency according to the level of activation of the
time-frequency
cwt) sensor. Considering that most of the time an older person does
CWPEAKS (number of peaks in the cwt) time-frequency not perform any action that significantly changes the measured
values (inactivity state), any deviation from this state indicates
E. kNN Classifier heightened activity, thus higher fall probability. The values of
Regarding the kNN classifier the following parameter the normal state are modeled using a Gaussian probability
values provided higher accuracy. The k parameter has been set density function f(x)~N(μ,σ2), where μ and σ2 are the mean
to 7, while the Manhattan distance function has been used. and the variance, respectively. When a new sensor value
Additionally, a distance based voting has been used instead of arrives the mean and the variance are updated using the
the simple majority voting to account for the skewed following functions:
distribution of the dataset. These parameter values were   
selected after a cross validation procedure in order to achieve   
high accuracy. To account for the fact that kNN is sensitive to
noise and to reduce computation time, an edition filter has As the range of normal values, we have used the interval
been used. Before the classifier is trained we apply the Edited x∈[μ-2σ,μ+2σ]. In normal state the sampling frequency is set
Nearest Neighbor (ENN) rule, as described in [15]. This to 10Hz and when significant activity is detected it is
algorithm starts with the whole dataset and each instance is increased to 50Hz. In Fig.6, it can be seen that when the user
removed if it does not agree with the majority class of its stood still the sensor values were characterized as normal and

Fig.5 Continuous Wavelet Transform of a fall and an ADL

Signal Processing
56 Signal Analysis
10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana, Slovenia

Table 4 Confusion matrices


Predicted Predicted
Actual Fall ADL Actual Fall ADL
Fall 618 29 Fall 631 16
ADL 55 1824 ADL 96 1783
a) Cross validation b) Final model

distance weighting
 J48 decision tree with pruning set to 0.2
Performing a cross-validation we can see that kNN scores
the highest performance (Table 3). A further comparison
reveals that this model is better regarding not only the AUC
performance, but other metrics as well. The high AUC value
in the 10-fold cross validation indicates that the algorithm has
good generalization properties. Consequently, the KNN
algorithm was chosen based on its overall performance on the
dataset.
The MobiAct [18] dataset contains 647 fall patterns and
Fig.6 Accelerometer activation level during intermittent walking 1879 patterns of daily activities. This set of activities was
when continued walking the sensor was considered activated. separated into train and test datasets using a 10-fold cross
validation in order to evaluate the entire classifier model. The
IV. RESULTS results of this evaluation are shown in Table 4a. Then some
common evaluation metrics can be computed as follows:
In the current work, four different classifier models are
being compared before the final model is implemented. Since  sensitivity=recall=618/647=95.52%
our dataset is imbalanced (more feature tuples from „FALL‟
class), the accuracy metric is not an appropriate performance  specificity=1824/1879=97.07%
measure [17]. Therefore, the evaluation of these classifiers is  precision=618/673=91.83%
based on the area under the ROC curve (AUC) metric. Model
statistics are generated from 10-fold cross-validation and a The final model is built using all the activities in the
pairwise comparison is performed with a t-test. This allows dataset. Of these, the FSM module with the chosen parameters
examining whether the difference in the performance of the detects 932 possible falls, 637 of which are real falls. This
candidate models is significant, thus one classifier is preferred reduced dataset is used to build the classifier model. Using the
over the others. Once the classifier is chosen, the total confusion matrices that resulted from each of the two
performance of the system is reported in terms of accuracy, components the overall performance of the algorithm can be
specificity (SP) and sensitivity (SE) in order to be compared calculated (Table 4b). To this effect, the kNN classifier is
with other works in the literature. trained from the reduced dataset after the ENN rule is applied
with k=3, whereas it is evaluated using the whole dataset.
Between the most common classifiers, meaning Artificial Employing the above equations results to sensitivity and
Neural Network (ANN), Support Vector Machine (SVM), specificity equal to 97.53% and 94.89% respectively.
Decision trees and kNN, the latter performed better based on
the MobiFall dataset [18]. Specifically, for each model a set of To further assess the proposed algorithm, a comparison
parameters was chosen with a grid search such that the AUC with other similar studies of Table 1 is carried out (Table 5).
metric was maximized. As a consequence the following Since the dataset and the implemented algorithm of each
models were compared: model was not available, the comparison is based on the
reported values of SE and SP metrics. The recorded results
 ANN was a multilayered perceptron with one hidden from our implementation are comparable to other algorithms
layer of 7 nodes, momentum 0.7 and learning rate 0.1 in the literature (Table 5). As we may see, the proposed model
performs better than the threshold based algorithms
 SVM with RBF kernel and gamma set to 0.15
implemented on smartphones. This means that a machine
 kNN of 7 neighbors, Manhattan distance and inverse learning classifier definitely improves the detection
performance of a threshold based algorithm (e.g. [6] and [7]).
Table 3 Paired t-test comparisons. The first column represents the base This advantage is considerable when the smartphone is fixed
classifier in each test. Parentheses contain the AUC value. A “v” denotes
that the classifier outperforms the base model, while “*” denotes that the
base model is better. Table 5 Comparison of algorithms based on SE and SP
kNN ANN SVM J48 Dai J. Lee R. Yang BS.
(1.00) (0.99) (0.95) (0.96) Abbate S. Tsinganos P.
[3] [5] [6] [7] [2]
kNN - * * *
ANN v - * * SE 100% 97.33% 77 % 95.24% 97.53%
SVM v v - SP 100% 91.30% 81% 94.25% 94.89%
J48 v v -

Signal Processing
57 Signal Analysis
10th International Symposium on Image and Signal Processing and Analysis (ISPA 2017) September 18-20, 2017, Ljubljana, Slovenia

Table 6 Battery consumption with the power management system enabled providing the MobiAct [18] dataset. We also thank the authors
and disabled of [3] and especially Gugliemo Cola (Pervasive Computing &
ON OFF Networking Lab, University of Pisa) for providing
ASUS Zenfone 0.01% (0.03mAh) 0.66% (16.45mAh) clarifications on their work.
LG D160 0.36% (6.19mAh) 0.92% (15.67mAh)

on the body (e.g. [2]). REFERENCES


Regarding the effect of the proposed personalization [1] “Falls | WHO,” WHO, 2016. [Online]. Available:
http://www.who.int/mediacentre/factsheets/fs344/en/ [Accessed: 18-
technique, we can estimate the performance improvement by Nov-2016].
adding the false positives to the training dataset one by one
[2] P. Tsinganos, “Smartphone-based Fall Detection System for the
and building the classifier model. Specifically, using the data Elderly”, MSc Thesis, BME Course, Univ of Patras, Patras, Jun. 2017
we collected with an ASUS Zenfone 2 smartphone, we [3] S. Abbate, M. Avvenuti, F. Bonatesta, G. Cola, P. Corsini, and A.
classify each instance and if an ADL is classified as a fall, Vecchio, “A smartphone-based fall detection system”, Pervasive and
then this tuple is appended to the training dataset. Next, the Mobile Computing, vol. 8, no. 6, pp. 883–899, Dec. 2012.
whole dataset is used to test whether the addition of a tuple [4] E. Casilari, R. Luque, and M.-J. Morón, “Analysis of Android Device-
has improved the performance. An improvement in the AUC Based Solutions for Fall Detection”, Sensors, vol. 15, no. 8, pp. 17827–
metric of the classifier was recorded (after seven false 17894, Jul. 2015.
positives were appended, it was increased by 10%). [5] J. Dai, X. Bai, Z. Yang, Z. Shen, D. Xuan, “PerFallD: A pervasive fall
detection system using mobile phones”, Proceedings of the 8th IEEE
It has been stated that how active the user is at a given time International Conference on Pervasive Computing and Communications
can be used to change the sampling frequency and release (PERCOM 2010), Mannheim (Germany), 29 Mar.-2 Apr. 2010
system resources (e.g. a wake lock). Indeed, when this [6] R. Y. W. Lee and A. J. Carlisle, “Detection of falls using accelerometers
and mobile phone technology”, Age and Ageing, vol. 40, no. 6, pp. 690–
technique is applied battery life is preserved since the CPU 696, 2011.
usage is reduced. To quantify the reduction in the required [7] B.-S. Yang, Y.-T. Lee, and C.-W. Lin, “On Developing a Real-Time
power the Android application GSam Battery Monitor was Fall Detecting and Protecting System Using Mobile Device”,
installed from the Google Play into two smartphones; a LG Proceedings of the International Conference on Fall Prevention and
D160 and an ASUS Zenfone 2. The results are summarized in Protection, pp. 151–156, 2013.
Table 6. [8] V. Viet and D. Choi, “Fall Detection with Smart Phone Sensor”, The 3rd
International Conference on Internet (ICONI) 2010, pp. 27–31, Dec.
There is a difference between the two smartphones that 2011.
affects how our application drains the battery. On the ASUS [9] I. N. Figueiredo, C. Leal, L. Pinto, J. Bolito, and A. Lemos, “Exploring
smartphone less than 0.1% of the battery was consumed with smartphone sensors for fall detection”, The Journal of Mobile User
power management enabled, whereas on the LG there was a Experience, vol. 5, no. 2, 2016.
0.364% drain. Similar values were recorded for the CPU times [10] A. Özdemir and B. Barshan, “Detecting Falls with Wearable Sensors
as well. What is clear, however, is that when the power Using Machine Learning Techniques,” Sensors, vol. 14, no. 6, Jun.
2014, pp. 10691–10708.
management system is enabled the battery consumption is
[11] I. Cleland et al., “Optimal placement of accelerometers for the detection
drastically reduced regardless of the smartphone. of everyday activities”, Sensors (Basel, Switzerland), vol. 13, no. 7, pp.
9183–9200, 2013
V. CONCLUSIONS [12] M. Shoaib, S. Bosch, O. Durmaz Incel, H. Scholten, and P. J. M.
Havinga, “A Survey of Online Activity Recognition Using Mobile
This study developed a fall detection system based on an Phones”, Sensors, vol. 15, pp. 2059–2085, 2015.
Android smartphone device. Identifying signal patterns and [13] A. Fleury, N. Noury, and M. Vacher, “A wavelet-based pattern
extracting parameters that can be used by a classifier can be recognition algorithm to classify postural transitions in humans”,
applied to distinguish falls from daily activities. This solution European Signal Processing Conference (Eusipco), pp. 2047–2051,
is based on the work of Abbate S. [3] and incorporates a 2009.
personalization and power management method. [14] L. Palmerini, F. Bagalà, A. Zanetti, J. Klenk, C. Becker, and A.
Cappello, “A Wavelet-Based Approach to Fall Detection”, Sensors, vol.
In a future work we would like to collect accelerometer 15, no. 5, pp. 11575–11586, 2015.
data from a wider range of population and test the algorithm in [15] S. García, J. Derrac, J. R. Cano, and F. Herrera, “Prototype Selection for
a real world environment. Another aspect of the fall detection Nearest Neighbor Classification: Survey of Methods”, Sci2S.Ugr.Es, pp.
system that we would like to study further is how the 1–28, 2010.
algorithm is affected by user context. For example, a location [16] D. Anguita, A. Ghio, L. Oneto, X. Parra, and J. L. Reyes-Ortiz, “Energy
Efficient Smartphone-Based Activity Recognition using Fixed-Point
and time aware application would activate and deactivate the Arithmetic”, Journal of Universal Computer Science, vol. 19, no. 9, pp.
fall detection monitoring as needed. Finally, improving the 1295–1314, 2013.
personalization component is of primary importance since it is [17] J. Han, M. Kamber, and J. Pei, Data Mining Concepts and Techniques,
responsible for adjusting the classifier to the user activity 3rd ed. MK, 2012.
patterns and its performance. [18] G. Vavoulas, C. Chatzaki, T. Malliotakis, M. Pediaditis, and M.
Tsiknakis, “The MobiAct Dataset: Recognition of Activities of Daily
Living using Smartphones”, Proceedings of the International Conference
ACKNOWLEDGMENT on Information and Communication Technologies for Ageing Well and
We would like to thank Professor Manolis Tsiknakis e-Health (ICT4AWE), vol. 1, pp. 143-151, 2016.
(Department of Informatics Engineering, TEI Crete) for

Signal Processing
58 Signal Analysis

You might also like