|
Algorithm 2 Classifier
|
|
Input: real-time data A |
Output: human activity category
Preprocess the input data through the Butterworth low-pass filter and dividing by sensitivity coefficient .
Segment the data into overlapping windows.
Extract the features and construct the feature vector x with normalization.
Input x into three MGD models and calculate , and .
if : Output (LIA)
else if : Output (MIA)
else if & & : Output (VIA)
else:Output (Fall)
|