1. Introduction
There are more than 200,000 power wheelchair users in the United States [
1]. Meanwhile, the demand for power wheelchairs increases substantially every year [
2]. As the aging population continues to grow, power wheelchairs will play an increasingly important role in helping individuals maintain independent mobility.
Mobility is an important indicator of quality of life and is determined by the World Health Organization (WHO) as the key component of activity and social participation [
3,
4]. However, research has shown that people with disabilities are more likely to live a sedentary lifestyle, which has been proven to be harmful and associated with various chronic diseases, such as cardiovascular disease, diabetes, obesity, etc. [
5,
6,
7]. It is therefore important to quantitatively measure whether a power wheelchair user remains active and therefore lives a healthy lifestyle. Among the mobility metrics, the mobility bout, which represents a period of continuous wheelchair movement, is particularly useful in measuring activity and participation because a bout denotes a transition between locations [
4]. Hence, the number of bouts can reveal activities performed at different locations by a power wheelchair user [
4]. In this study, we consider bouts as the primary measurement of mobility, based on which we can determine several critical mobility metrics, such as the accumulated movement time and maximum and average periods of continuous movement [
3,
4,
8].
Unfortunately, despite the advancement of technology and great efforts spent on assistive technology, approaches that support quantitative mobility assessment are still not readily available in the daily lives of power wheelchair users [
9]. Existing approaches typically attach sensors to the wheels of a wheelchair to collect wheelchair maneuvering data [
10,
11,
12]. In [
4,
13], a reed switch was mounted to the wheelchair frame with two to four magnets evenly attached to the wheel. The wheel rotations were counted as when the magnets crossed the reed switch. In a recent study [
14], researchers used a Bluetooth-based wheel rotation monitor, which consisted of a sensor and a magnet attached to a manual wheelchair’s axle and spokes of a wheel, respectively, to collect wheelchair maneuvering data. Research participants also wore a smartwatch to collect accelerometer data caused by hand activities (e.g., propulsion). The wheel rotation monitor and the smartwatch were connected with a smartphone for near real-time data transmission. Researchers in [
10,
15] further simplified the instrumentation by directly mounting an accelerometer to the spokes of a wheelchair. When the wheel rotated, the accelerometer data demonstrated a strong pattern resembling sinusoid-like curves, making data analysis much easier. Unfortunately, such approaches can hardly be used in daily life. First, it is impractical to request a power wheelchair user with mobility impairment to install the sensors on the wheels. Second, the maintenance of these sensors, e.g., periodically recharging and reinstalling the sensors, offloading data into inventory, etc., requires specialized expertise. These factors create substantial challenges and extra burden for power wheelchair users to adopt these approaches.
In our study, we aim to develop a mobile-device-based approach that does not rely on additional sensors for data collection. Instead, wheelchair users can simply use their own mobile devices, e.g., a smartphone or smartwatch, to collect mobility data. A recent related study [
16] proposed to use a smartphone attached to the armrest of a manual wheelchair to collect accelerometer data for wheelchair activity analysis. Our approach differs in the following three aspects: (1) our focus is on power wheelchairs, which have different dynamics compared to those of manual wheelchairs; (2) the study in [
16] used a deep convolutional neural network (CNN) for data analysis, while our approach uses a deep recurrent neural network (RNN) [
17], which is effective in processing temporal data; and (3) the CNN in [
16] was designed to classify whether the wheelchair was operating on an indoor flat surface or outdoor grasslands, while ours was to measure mobility.
Prevalent health tracking apps are also related to our work. These apps are designed for individuals without physical impairments, where measurements are achieved through detecting a person’s steps and body oscillation [
18]. However, the dynamics of a power wheelchair do not possess the same characteristics of steps or body oscillation. Instead, the acceleration and deceleration periods of a power wheelchair are instantaneous. Such rapid changes in wheelchair maneuvers can be easily overwhelmed by noise, thus making it difficult to determine a wheelchair’s moving status. Furthermore, data collected by inertial sensors in a smartphone demonstrate a wide variety of differences. The patterns of sensor data may vary from building to building, let alone the significant differences between indoor and outdoor settings. In addition, there are many mobile device manufacturers that produce a large number of different models. The challenge is that the built-in sensors in different mobile devices could create significant heterogeneity in terms of sensitivity, noise patterns, sampling settings, etc. It is therefore desirable to develop an approach that can accurately determine a wheelchair’s maneuvering status regardless of the specific mobile device used for data collection.
To address the aforementioned challenges, we developed a novel approach composed of algorithms for noise reduction, wheelchair maneuver determination, and data post-processing. Specifically, we proposed a new dynamic differential reference algorithm (DDR) to mitigate the impact of noise. The DDR algorithm transforms raw sensor data through value differentiation. The transformed data preserves patterns intrinsic to wheelchair maneuvers, i.e., the data of stationary periods shows a uniform characteristic, while data of moving periods demonstrates distinct patterns. Then, we employed cutting-edge machine-learning techniques to recognize such patterns to determine mobility bouts to analyze a power wheelchair user’s mobility. The use of machine-learning techniques also makes our approach more robust to the noise that is left over by DDR. Specifically, we developed an RNN [
17], which is particularly suitable for this study because RNNs excel in processing temporal data series, such as the sensor data collected over a time period. Since RNNs are sensitive to maneuver changes, e.g., sudden accelerations or decelerations, their outputs may contain spikes or dips that may divide a bout into multiple smaller ones. We developed a post-processing algorithm to smooth the outputs of the RNN so that the final output can accurately reflect the true maneuvering status of a power wheelchair.
We conducted a series of experiments to evaluate the proposed approach. We used eight smart mobile devices of different manufacturers and models, including seven smartphones and one smartwatch, to collect wheelchair maneuvering data. The experiments were conducted inside an academic building that had different terrains, e.g., upward/downward slopes, curving and flat floors, etc. Experimental results showed that our proposed approach could accurately determine mobility bouts no matter which mobile devices were used. The outputs from our approach matched very well with the ground truth (e.g., by manually recording bout durations or by dedicated sensors attached to the driving wheels of a power wheelchair to record the wheelchair’s maneuvering status). The outputs from the eight mobile devices were also highly correlated, indicating consistent analysis results over these heterogeneous devices. Hence, the experimental results suggest that our proposed approach provides a general solution independent of specific mobile devices for mobility analysis.
The rest of the paper is organized as follows. In
Section 2, we present our algorithms for data preprocessing, the construction of RNN pattern recognition model, and data post-processing as well as experimental design. In
Section 3 and
Section 4, we show and discuss the experimental results. In
Section 5, we conclude the paper and identify future research directions.
2. Materials and Methods
We developed an Android app that can capture sensor readings from the built-in accelerometer of a mobile device. An accelerometer can measure accelerations along three axes of the mobile device. To configure the frequency of data sampling, Android APIs provided four data sampling settings for accelerometers, i.e., SENSOR_DELAY_FASTEST, SENSOR_DELAY_GAME, SENSOR_DELAY_UI, and SENSOR_DELAY_NORMAL in the order from high sampling frequency to low [
19]. Each setting corresponded to a range of data sampling rates instead of a fixed one. The reason for this is that the built-in accelerometer was event-driven, i.e., it output a sensor reading whenever it detected a speed change. Correspondingly, we also recorded the time stamp with microsecond precision for each sensor reading to facilitate data analysis. Therefore, the sequence of raw data collected by an accelerometer can be modeled as a matrix:
where
n is the number of raw sensor readings collected over a certain time period, and each row is a 4-tuple, i.e.,
Ri = {
axi,
ayi,
azi,
ti} ∈
, which consists of 4 items, namely the accelerations along three axes,
x,
y, and
z, and the time
ti when the sensor reading is recorded.
2.1. Data Preprocessing
An accelerometer is subject to both sensor and environmental noise, which may vary greatly when a wheelchair is moving in different environmental settings. To mitigate the impact of noise, we developed a new dynamic differential reference algorithm (DDR). The DDR algorithm takes four steps to process raw accelerometer data M.
2.1.1. Noise Reduction
First, DDR calculates the differences between consecutive sensor readings along a specific axis, e.g.,
x,
y, or
z. Specifically, in an axis, a sensor reading can be denoted as:
where
α is the sensor reading,
αT is the true acceleration, and
αN is noise. Based on our empirical observations, noise
αN tends to have similar values within a very short period of time. Hence, the differentiation of two consecutive sensor readings,
α1 =
α1T +
α1N and
α2 =
α2T +
α2N, will roughly remove noise, i.e.,
α2 −
α1 = (
α2T −
α1T) + (
α2N −
α1N) ≈
α2T −
α1T.
Table 1 illustrates an example of value differentiation along the
y-axis. The columns “Stationary (Raw)” and “Moving (Raw)” contain two data segments corresponding to the stationary and moving status, respectively. Similarly, the columns of “Stationary (Differentiated)” and “Moving (Differentiated)” show the data differentiated from the corresponding raw data segments. The raw data show that even though the wheelchair is stationary, the sensor readings still have much larger values than the expected 0. The distinction between the stationary and moving raw data is also not very clear. As a result, it will be difficult to analyze wheelchair maneuvering status based on the raw data. In comparison, the differentiated values show distinct patterns between stationary and moving periods as the values in the stationary data segment are close to 0, while the absolute values in the moving data segment are larger than 0.
After applying the DDR algorithm to all three dimensions, we obtain a new differentiated matrix:
where
Rx′,
Ry′, and
Rz′ are column vectors along the
x,
y, and
z axes, and
T is the column vector of time indicating when each sensor reading is recorded.
2.1.2. Combining Sensor Data along the Three Axes into a Single Sequence
As the second step, DDR combines
Rx′,
Ry′, and
Rz′ as defined in Equation (3) into a single sequence
D to minimize the influence of differences in device placement, i.e., making it more placement-invariant.
2.1.3. Outlier Processing
In the third step, DDR removes outliers from data sequence
D (as shown in Equation (4)) to ensure that the true patterns associated with wheelchair movements will not be obscured. To identify outliers, we use the quartiles and interquartile range (IQR) method [
10], in which three quartiles (i.e.,
Q1,
Q2, and
Q3) divide the ordered data set into four equal sections. In statistics, the outliers fall outside the range of [
Q1 − 1.5 × IQR,
Q3 + 1.5 × IQR], where IQR =
Q3 −
Q1. In our case, the valid data range is [0,
Q3 + 1.5 × IQR] because all data items in
D (Equation (4)) have values greater than or equal to 0. Hence, we simply replace outliers with
Q3 + 1.5 × IQR, which is the upper bound of the range. As shown in
Figure 1, the red curve is the data sequence
D containing outliers, which are significantly larger than the regular sensor values. The blue curve represents the data sequence with outliers rescaled. The horizontal axis represents the order of the data items in the sequence
D, and the vertical axis represents the differentiated accelerations.
2.1.4. Data Normalization
In the last step, DDR employs the MinMax scaler [
20] to normalize sensor values into the range [0, 1]. This feature-scaling step is critical because it makes sensor data from any mobile devices fall into the same range. We denote the normalized data sequence as
Ds:
As shown in
Figure 2, after removing outliers, the data sequence (i.e., the red curve) has an upper bound smaller than 1. The feature-scaling step normalizes the data sequence to the range between 0 and 1. As in
Figure 1, the horizontal axis represents the order of the data items in the sequence
Ds, and the vertical axis represents the differentiated accelerations.
2.2. Machine Learning Models
In this study, we used the recurrent neural network (RNN) [
17] to train models that can determine a wheelchair’s maneuvering status. The training was based on the dataset
Ds defined in Equation (5). We chose an RNN because it excels at handling temporal data sequences. As shown in
Figure 3A, our RNN consists of an input layer, two bidirectional LSTM (long short-term memory) layers [
21], a dense layer (i.e., a fully connected layer) [
22], and an output layer.
The input layer is composed of a series of data segments, xi (0 ≤ i ≤ n), i.e., the data sequence Ds defined in Equation (5) is evenly divided into smaller data segments xi. The size of a data segment xi should be neither too small nor too large. If the size is too small, xi contains too little information for the LSTM unit to analyze. On the other hand, if the size is too big, the data segment may span across multiple stationary and moving maneuvers. In this study, we chose the size to be 10, which is the amount of data collected within 1 s for most of the mobile devices. For example, the sampling rates are between 13 to 30 Hz at the predefined Android sampling setting SENSOR_DELAY_UI for the mobile devices used in our experiments. This empirical setting is useful to preserve precision when a data segment xi represents a transition from one maneuver to another, i.e., it contains data of both maneuvers. No matter how RNN classifies this data segment, i.e., stationary or moving, only a portion of the 10 data items is misclassified, i.e., the lost precision is less than 1 s.
A bidirectional LSTM layer contains two hidden layers, i.e., a forward and a backward LSTM layer, as shown in
Figure 3B. The choice of the bidirectional LSTM layer was inspired by our manual procedure of analyzing the maneuvering status at a specific data point. We typically needed to inspect the data series before and after this particular point to determine the true moving status. Similarly, the bidirectional LSTM layers provide comprehensive information, including both forward and backward maneuvering information, to the next layer in the network. In an LSTM layer, the LSTM cells are the basic units, which are connected into a sequence. The LSTM cells are responsible for keeping track of the maneuvering status. At any point in time, an LSTM cell needs to decide whether to keep or update the maneuvering status passed from its preceding LSTM cell. This decision is made by the collaboration of three gates, i.e., the forget, update, and output gates, as shown in
Figure 3C. Here,
c〈t−1〉 and
a〈t−1〉 are the cell status and cell value from the preceding LSTM, respectively. If the maneuvering status of a wheelchair changes from moving to stationary or vice versa at time
t, the forget gate will produce an output to nullify
c〈t−1〉. Here, the symbol of a circle with a dot means element-wise matrix multiplication. Hence, if an item in the matrix produced by the forget gate is 0, it means that the LSTM cell will forget the corresponding value in
c〈t−1〉. In the case that the cell has to forget
c〈t−1〉, the update gate will make sure that a new cell status is updated to reflect the new status. The symbol of a circle with a plus means matrix addition that retains values from all input matrices. Similarly, the output gate determines the output to the next LSTM cell and layer.
The dense layer is a fully connected layer consisting of 20 neurons. The dense layer is responsible for high-level reasoning that facilitates the decision-making in the output layer. The output layer is a sigmoid layer [
23] that generates a series of 0 s and 1 s, where 0 represents stationary and 1 represents moving. It is worth mentioning that the network structure, including the number of layers and the number of neurons in each dense layer, are hyperparameters [
24], which define the RNN model, but cannot be determined through training. The common practice is to manually tune these parameters through experiments. In this study, we determined the network structure through experiments. In fact, we did not spend too much time on the selection of the optimal network structure because our DDR algorithm can preserve the inherent patterns of wheelchair maneuvers, which makes the subsequent pattern recognition much easier. As discussed in
Section 4, all the tested networks demonstrated reasonable accuracy with the proposed RNN achieving the best result.
2.3. Data Post-Processing
Although the proposed RNN can correctly classify the sequential data, the output curve may not be smooth due to abrupt maneuver changes, e.g., sudden acceleration/deceleration, start/stop, etc. Therefore, data post-processing is necessary to smooth the data curve for more accurate bout recognition. Our post-processing algorithm mainly handles three situations, as shown in
Figure 4. The first situation represents a spike caused by an unexpected external force when the wheelchair is stationary, as shown in
Figure 4A. The red curve with a spike is the output from the RNN, while the dashed blue curve is the output from the proposed post-processing algorithm, which eliminates the spike by merging it into the adjacent data segments.
Figure 4B shows a dip (the red curve) that occurs when the wheelchair is moving while experiencing a big change in speed. The post-processing algorithm simply merges the dip into the adjacent data segments. The third situation happens when the maneuver of a power wheelchair is not smooth, e.g., turning, sudden starts/stops, etc. As shown in
Figure 4C, the red curve represents the output from the RNN. The oscillation happens when the wheelchair begins to move. Our post-processing algorithm splits the oscillation period into two parts, i.e., 2/3 is assigned to the moving period and 1/3 to the stationary period. Such a split is based on the rationale that the wheelchair is mostly moving over the oscillation period.
2.4. Experiments
We conducted a series of experiments inside an academic building. As shown in
Figure 5A, the building’s east and west wings are connected by sloped bridges at the second and third floors.
Figure 5B illustrates the bird’s eye view of the building. This experimental setting is ideal in testing our proposed approach because it contains various terrains, such as flat floor, slopes, interconnections, and bumps, to simulate different scenarios in real life.
2.4.1. Experimental Series 1
We conducted the first series of experiments (6 trials) on the second floor by using an LG G2 (D800) smartphone and a smartwatch (Microsoft Band 2) to collect wheelchair maneuvering data. For both devices, we set the sampling frequency to be SENSOR_DELAY_UI, which could achieve satisfactory precision while consuming less battery power of the smart mobile device, as determined in our previous study [
15]. As shown in
Figure 6, the smartphone was placed into a holder (Arkon Tab-802) attached to a power wheelchair (Invacare FDX). The driver wore the watch on his left hand while using his right hand to manipulate the joystick of the wheelchair. His left hand remained still during the experiments. The smartwatch communicated with the phone app through Bluetooth.
The itinerary of each trial always started from the west wing of the building, driving through the bridge, either turning to left or right at the end of the bridge into the east wing, making a U-turn at the end of the corridor, and then driving back to the original start point. We preset the waypoints to remind the wheelchair user where to stop or turn. During the experiments, researchers also recorded the durations of the bouts using a timer, which served as the ground truth to validate our proposed approach.
We used the phone data from the first trial (Trial 1) to train our RNN model. The phone data from the second trial (Trial 2) was used for validation and testing, in order to avoid overfitting, a situation where the trained RNN overly fits the training data set, thus making it unable to generalize to classify unseen data. Specifically, data from the second trial was split into 25% (validation set) and 75% (testing set). The early-stopping technique [
25] was used during training when the classification accuracy over the validation set did not improve within 100 epochs. Once the RNN model was trained, we used it to analyze data from the remaining four trials (Trials 3–6), including both phone and smartwatch data.
2.4.2. Experimental Series 2
Since our manual recording of bout durations could be subjective and error-prone, we conducted a second series of experiments, in which we obtained the ground truth by using the approach of existing research [
10,
15], i.e., placing a dedicated high-precision accelerometer (ActiGraph GT3X [
26]) to both driving wheels of the power wheelchair, as shown in
Figure 7. Besides obtaining the ground truth, we can also compare our proposed approach with the existing approach in mobility measurement. In addition, as shown in
Section 3, the outcomes from the phone and smartwatch were highly correlated. Accordingly, we hypothesized that our proposed approach should work well with other types of Android phones as well. To verify this hypothesis, in the second experiment, we used six different Android phones, i.e., Google Pixel, Pixel 2, Pixel 3, Motorola Nexus 6, Samsung A71, and ZTE Axon. All the phones were placed on a tray instead of the smartphone holder. The purpose was to examine whether the RNN model, trained by using data collected by placing the phone into a smartphone holder, could correctly classify data collected from a totally different setting. This experimental series was conducted on the third floor of the academic building, which was another difference from the first experimental series, which was performed on the second floor. Two divers participated in the experiments. Each driver conducted four trials, two with the first gear and two with the second gear of the power wheelchair. Each trial contained two bouts. The first bout started from the west wing, passed through the bridge, turned left into the east wing, and stopped at the end of the corridor. The second bout followed the same route driving back from the east wing to the west wing.
All the trials in both experimental series include typical maneuvers, such as accelerations, decelerations, linear maneuvers, left turns, right turns, and spot turns. Spot turns refer to the rotation of a wheelchair without changing its location. In experimental series 2, we also tested our application at different maneuvering speeds. Invacare FDX provides four Drive options, with the top speed being 5 miles/hour. Drive 1 (INDR_AVG) is for indoor operations; Drive 2 (MOD_OUTDR) is for outdoor operations with low to moderate speeds; Drive 3 (SPEED_LVL) is for full-speed operation; Drive 4 (RAMP_CURB) is for outdoor driving on the ramp or curb. In experimental series 2, we used Drive 1 and Drive 2 to achieve varying wheelchair speeds that were safe and comfortable for normal daily use in indoor settings.
4. Discussion
In this study, we demonstrated the feasibility of building an effective model that can accurately determine a power wheelchair’s maneuvering status on top of heterogenous mobile devices. Specifically, we developed an RNN based on the data collected using an LG G2 (D800) smartphone. Then, we used this RNN to classify wheelchair maneuvering data collected by a smartwatch (MS Band 2) and six other smartphones, i.e., Google Pixel, Pixel 2, Pixel 3, Motorola Nexus 6, Samsung A71, and ZTE Axon. The classification results were then further smoothed by our post-processing algorithm to remove spikes and dips. Experimental results showed high correlations (as shown in
Table 3 and
Table 5) among all mobile devices in bout determination.
It is also worth noting that the training data were obtained on the second floor of the academic building when the LG G2 smartphone was attached in a smartphone holder. The testing data sets were collected on the second floor when a research participant wore the smartwatch on the wrist, and on the third floor when the six other smartphones were placed on a wheelchair tray. In other words, the mobile devices used in this study were positioned very differently during data collection, while the indoor settings and wheelchair users were also different. This demonstrates the effectiveness of the proposed DDR algorithm in removing noise and eliminating the impacts caused by differences in wheelchair users and the placement of the mobile devices. Hence, the DDR algorithm can preserve the essential patterns of various wheelchair maneuvers. As a result, the proposed RNN can recognize these patterns no matter how a smart mobile device is positioned. Our study proves that it is possible to eliminate the influence from the large variations of mobile devices, e.g., the placement of a smart mobile device, its sampling rate, the scales of its sensor data, its sensor sensitivity, etc., by capturing the essential patterns intrinsic to wheelchair maneuvers.
Further, the results obtained by using our approach were also close to the ground truth. As discussed in
Section 2, we used two approaches to obtain the ground truth, i.e., manually recorded bout durations using a timer in experimental series 1 and by attaching GT3X accelerometers to both driving wheels of the power wheelchair in experimental series 2. Compared to the ground truth in experimental series 1, the average difference was only 1.16 s (6.62%) for phone-based results and 1.52 s (8.60%) for watch-based results, as shown in
Table 2. Similarly, in experimental series 2, the average differences between the phone-based results and the ground truth varied from 1.15 s (2.22%) to 2.75 s (5.27%) among the six phones, as shown in
Table 4. As existing research typically attaches dedicated sensors to the wheels of a wheelchair to measure mobility [
10,
11,
12], the ground truth obtained from GT3X in experimental series 2 also allows us to compare our proposed approach with existing methods. As shown in
Table 5, the pairwise correlation analysis demonstrates high correlations between GT3X and six phones, which suggests that our approach has achieved comparable accuracy with existing methods.
If we compare the results of two experiments series in
Table 2 and
Table 4, it can be seen that the percentage of differences in experimental series 2 is relatively lower. The reason for this is that when using our approach to determine bout durations, the major differences against ground truth lie in the start and end points of a bout. This is understandable because even researchers find it very challenging to manually determine the exact start and end points of a bout by looking through the sensor data series. However, once a wheelchair moves steadily, the data patterns become clear so that our RNN can accurately determine its maneuvering status. Because the bout durations in experimental series 2 were much longer than those in experimental series 1, the variations at the start and end points only accounted for a small portion of the entire bout duration, thus resulting in a lower difference percentage. In general, the longer a wheelchair moves continuously, the more accurately our proposed approach can determine the bout duration. This will be very important for the estimation of cumulative activities in real-life cases.
In addition to the RNN, we also investigated the applicability of the traditional artificial neural network (ANN) [
27] to classify wheelchair maneuvering data. We trained an ANN using the same training and testing data sets as we did with our RNN. We found that if a wheelchair moves regularly, the differences between ANN and RNN were not significant. However, if a wheelchair experiences unexpected bumps, the ANN may have difficulty in determining the wheelchair’s moving status because its classification decision is solely based on the current input. In contrast, a bidirectional RNN makes a decision based on not only the current input but also the status denoted by its prior and subsequent data segments. For example, the data in
Figure 9 was obtained during an experiment when the wheelchair accidentally scratched the wall during a turn and the research participant tried to drive the wheelchair back to the normal route. As shown in
Figure 9, the classification results from the ANN are full of dips and spikes. In comparison, the outcomes from the RNN are much smoother and more accurate. As a result, the subsequent post-processing algorithm can easily remove dips and spikes to further smooth the curve.
Some GPS-based approaches were proposed to assess an individual’s mobility [
28,
29]. While such approaches can accurately measure mobility, their usability is limited to outdoor activities as GPS signals are mostly unavailable indoors. Our proposed approach is more general since it can be used in both indoor and outdoor settings. In addition, it can work with GPS-based approaches to provide a more comprehensive and effective solution to assess power wheelchair users’ mobility in their daily lives.
It is quite feasible to extend our mobile device-based approach to a cloud computing setting. The integration of mobile and cloud computing can potentially yield substantial clinical benefits. Healthcare professionals will be able to take care of more patients remotely and stay focused on those who demonstrate sedentary lifestyles in their daily life.
Study Limitations
The smartphones used in this study were all Android phones, which have the highest market share (72.19%) [
30]. In the next step of our research, we will investigate iPhones and Apple watches that run on iOS operating systems. In addition, the mobile devices were only used for data collection during experiments. In other words, we did not take phones off the smartphone holder or pick up phones from the tray for other activities, although such activities are rare while the wheelchair is moving. The hand that wore the smartwatch was not used for driving and remained in the same place throughout the experiments. However, in everyday life, the wheelchair user may use the phone for texting, calling, surfing the Internet, etc. Such non-wheelchair-related activities may be mis-classified as wheelchair maneuvers. As a next step, we will provide more fine-grained classifications to distinguish wheelchair- and non-wheelchair-related activities to segment the meaningful periods for mobility analysis.
Our study lays a solid foundation towards a generic approach to quantitative mobility measurement that is independent of mobile devices and power wheelchairs used in daily life. The results of the current study were obtained based on one type of power wheelchair (Invacare FDX). In the next step, we will further validate the proposed approach using wheelchairs from different manufacturers and with different mechanical configurations, e.g., front-wheel, rear-wheel, or mid-wheel drive.
5. Conclusions
In this study, we presented an approach for analyzing power wheelchair users’ mobility by using accelerometer data from a smartphone/smartwatch. As there are a great number of such mobile devices available, our goal was to make our proposed approach independent of any specific mobile device used for data collection. Our approach consisted of a data preprocessing algorithm, DDR, an RNN, and a postprocessing algorithm. The DDR algorithm helped remove noise, outliers, and normalize sensor data. The processed data demonstrated strong patterns associated with wheelchair maneuvers. Then, the RNN was responsible for recognizing these patterns to determine a wheelchair’s maneuvering status. Finally, the postprocessing algorithm smoothed the outputs from the RNN to remove unnecessary spikes and dips. We conducted two series of experiments to evaluate the proposed approach. In experimental series 1, we used a smartphone (attached to a holder) and a smartwatch to collect wheelchair maneuvering data. The ground truth was obtained by manually recording bout durations using a timer. In experimental series 2, we used six different Android phones that were placed on a wheelchair tray to collect the data. The ground truth was collected by attaching GT3X accelerometers to both driving wheels of a power wheelchair. Experimental results have confirmed that our approach can handle variations in data collected from different mobile devices by capturing the patterns intrinsic to wheelchair maneuvers. Specifically, our approach achieved high accuracy across all the mobile devices compared to the ground truth. Second, the analysis results obtained from the mobile devices were highly correlated. This shows good potential for our proposed approach to be extended to real-life activities. Additionally, by the nature of this quantitative mobility study, no special expertise is needed from wheelchair users. Hence, its non-intrusive features with minimum extra cost could also be contributing factors to its further adoption. Therefore, our approach laid the groundwork for a service-ready solution that can be easily integrated into a power wheelchair user’s daily life to promote healthy behavior changes.
In the next step, we will extend our study to iOS devices so that all mainstream mobile devices will be supported. We will also make our approach capable of providing more fine-grained analysis by distinguishing wheelchair- and non-wheelchair-related activities. Advanced hyperparameter tuning approaches will be employed to refine the neural network structure to further improve its accuracy.