Step Up
February 2016
Links:An Android Pedometer that accurately tracks your steps using Accelerometer readings.
How it was made
Since a person's step follows a certain pattern, I took several steps and recorded the accelerometer data in a text file. Plotting the data in MATLAB, I realized that a step was not a simple up and down, but was composed of multiple oscillations. Using a finite state machine, a step was counted if and only if, the readings proceeded sequentially in the right order and direction. Two of the most important features implemented to increase the pedometers accuracy was the low and high pass filters and a reduced polling rate. Initially, the amount of noise from the readings made the step counting very unreliable and any little jerk or random movement could be interpreted as a step. In combination these techniques smoothed out the curves, making discrimination of a step much easier.
Future Expansions
While walking around testing the pedometer, I suddenly remembered an interesting idea from one of my favourite books "Little Brother" by Cory Doctorow. The protagonist went to a school that was strict enough to have a gait detection system in place to track its students. I had the idea to expand the pedometer to be a full-fledged gait recognizer. After calibrating it with several steps, the gait detector could be another mechanism for unlocking your phone!
Additionally since I've been studying machine learning, I want to use a neural network to classify different readings from the accelerometer as steps or not.