September, 2013

Latest Monbaby demo – full stack: device to iphone to cloud

Monbaby is a baby health monitor with a form factor that it could be attached anywhere on baby clothing.
It measures movements, detects motions, transmits signal over Bluetooth 4.0 (Low Energy) to an IPhone app, which analyzes and displays the data and re-transmits signals further into the cloud, where more sophisticated analysis could be done on a backend. Here is the video of the full technology pipeline:

Read More

Fourth Iteration of Monbaby Prototype

Prototypes are meant to be molded and refined until it embodies viable set of features, given the present constraints. Prototyping a device is one thing, but refining it to fit the numerous criteria of technical feasibility, manufacturing, and final product design can be challenging.

PCB image with CR2032 battery holder to show relative size of the device

PCB image with CR2032 battery holder to show relative size of the device

That said, we are making very good progress. And these latest images show the device at its 4th iteration in its prototype stage. We are getting close, and all we need to do is to pull all the pieces together to make Monbaby into truly integrated device!

3D image of Monbaby prototype PCB

3D image of Monbaby prototype PCB

Read More

Real-time activity graph

A demo of real time plot of accelerometer measurements

Read More

Monbaby movement detection via IPhone app

Demo showing Monbaby movement and orientation detection on an IPhone app

Read More

Movement analysis

Algorithmic Detection of Movement Cycle

Our body moves in tandem with lungs. Especially in the upper torso area, the rise and fall of the chest is prominently associated with lung function. When placed near key spots, lung function cycle can be inferred from movement data alone. The xyz values from the accelerometer can be used to derive cyclical human movement pattern.

The key elements of the algorithm is to filter out as much noise from the data as possible, and apply the appropriate algorithm on the transformed data. In practical implementation, the algorithm also has to run in realtime, and refine its estimation from streaming data. A person normally takes about 2-5 seconds (0.5 – 0.2Hz) to complete a full inhale and exhale cycle. Assuming a single movement cycle completes within 2-5 seconds, you only need about 1-2 data points per second to detect a frequency in theory. With 5Hz sampling frequency, it becomes feasible to tackle movement detection using captured xyz acceleration values.

The following plots illustrate this. From left to right, going down each row, you will see:

  • x acceleration values and its corresponding high and low pass filtered timeseries
  • y acceleration values and its corresponding high and low pass filtered timeseries
  • z acceleration values and its corresponding high and low pass filtered timeseries
  • plot showing the “activity level”, expressed by the euclidean norm of change in xyz values
  • all 3 axis aggregated by their proportional weight in the variances, where their collinearity is taken into account by eigenvalue-based weights
  • we zoom into a particular sample patch in the aggregated time series, where clean sinusoidal signal can be extracted
  • running discrete fourier transformation on the zoom-ed in sample, and the red bar highlights the prominent frequency

breathing-algo

The highlighted frequency coincides with the rate at which the subject was moving. Our device was placed at various places on the body, while the sample was being collected in realtime. The strongest signal was obtained when our device was placed near the upper torso. The data transmission was done wirelessly at 5 times a second to an iPhone. The iPhone recorded all data received and persisted it into a csv file, which was used for this analysis.

The implementation of the algorithm can be done without much need for complex computation. Also, less than 2 minutes worth of 5 Hz samples (2*60*5 = 600 data points), need to be kept in memory to get sufficiently reliable readings. The data should be maintained in a queue, and the most recent data points should replace the older data points. We will be working on sample application to illustrate this algorithm in action.

Read More