Skip to content

wuming2007/emd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Empirical Mode decomposition(EMD) uses in number of applications, such as: Financial applications, image processing, biomedical applications etc. More info:

Hilbert–Huang_transform

Empirical_Mode_Decomposition_-_an_introduction

For our own purpose we realized this application in C language. First version of algorighm took too much memory(around 50 bytes per data tick + overhead). Then we decided to implement another version, applicable for embedded devices with very small amount of memory. Second version uses only 8 bytes per count + overhead(around 2-3kBytes). And of course it is slower. We used this alghorithm with very tiny microcontroller with 48KB RAM, and we were able to process 1024 data ticks.

All memory used by algorithm placed into context(excluding local variables).

For first version of algorithm see how context looks like here, for second here.

Second version has a little bit differ results, you can check it here (There is emscripten application with our libraries for estimating results and how it works). But it is not critical for the most application.

How to use both libraries you can see here

These examples contain datasets, collected from real people. Collection was done using Si1102 sensors from wrists of real people(pulse wave) with length 1-2 seconds.

We can provide first and/or second version of algorithm as binary library by your request. Just contact us by e-mail: emdforsale@gmail.com

About

EMD(Empirical Mode decomposition) light weight library, C/C++ language

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 67.4%
  • C 32.6%